/* Fonts */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Base */
:root {
  --graphite: #46443f;
  --graphite-dark: #35332f;
  --graphite-glass: rgba(70, 68, 63, 0.78);
  --salmon: #e9908b;
  --salmon-dark: #d87d78;
  --cream: #efebe6;
  --muted: #c7c2bb;
  --white: #ffffff;
  --header-height: 135px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: "Gotham", Arial, sans-serif;
  background: var(--graphite);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

body.has-modal {
  overflow: hidden;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  column-gap: 68px;
  align-items: center;
  min-height: var(--header-height);
  padding: 17px max(40px, calc((100vw - 1260px) / 2));
  background: var(--graphite);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.site-header__brand {
  width: 158px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  width: 100%;
}

.site-header__nav a {
  color: #d8d5cf;
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 300;
  letter-spacing: 0;
  border: 2px solid transparent;
  padding: 7px 10px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  border: 2px solid rgba(233, 144, 139, 0.72);
  color: var(--salmon);
  font-style: italic;
  font-weight: 700;
}

.site-header__toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 2px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

/* Menu lateral */
.social-menu {
  position: fixed;
  z-index: 35;
  top: 55%;
  right: 0;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.social-menu a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  overflow: hidden;
  background: var(--graphite);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.social-menu img {
  width: 32px;
  height: 32px;
}

.social-menu a:hover,
.social-menu a:focus-visible {
  filter: brightness(1.12);
  transform: translateX(-4px);
}

/* Banner */
.banner {
  position: relative;
  min-height: 900px;
  padding-top: var(--header-height);
  overflow: hidden;
  background-image:
    url("../img/banner/fundo.webp");
  background-position: center top;
  background-size: cover;
}

.banner__inner {
  display: grid;
  grid-template-columns: minmax(610px, 1fr) minmax(360px, 405px);
  gap: clamp(48px, 6.5vw, 112px);
  align-items: center;
  width: min(1260px, calc(100% - 80px));
  min-height: calc(900px - var(--header-height));
  margin: 0 auto;
  padding: 88px 0 68px;
}

.banner__content {
  align-self: center;
}

.banner__location {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 26px;
  border: 2px solid var(--salmon);
  border-radius: 999px;
  padding: 3px 13px;
  color: #f5f1ed;
  font-size: 15px;
  font-weight: 700;
}

.banner__title {
  margin: 0;
  color: var(--salmon);
  font-size: clamp(48px, 3.55vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  text-transform: uppercase;
}

.banner__title strong {
  display: block;
  font-weight: 700;
}

.banner__title span {
  display: block;
  font-weight: 300;
}

.banner__tagline {
  margin: 100px 0 0;
  color: var(--white);
  font-size: clamp(24px, 1.75vw, 31px);
  font-weight: 400;
}

.banner__tagline span {
  color: var(--salmon);
  font-size: 40px;
  font-weight: 300;
  vertical-align: -4px;
}

/* Formulario do banner */
.lead-form {
  width: 100%;
  max-width: 405px;
  padding: 31px 31px 18px;
  color: var(--muted);
  background: var(--graphite-glass);
}

.lead-form p {
  margin: 0 0 18px;
  color: #d9d5cf;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
}

.lead-form h2 {
  margin: 0 0 28px;
  color: var(--salmon);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.lead-form label {
  display: block;
  margin-bottom: 21px;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead-form input {
  width: 100%;
  height: 49px;
  border: 2px solid rgba(178, 172, 164, 0.25);
  padding: 0 14px;
  color: var(--white);
  font-size: 15px;
  font-style: italic;
  background: rgba(55, 54, 50, 0.78);
  outline: none;
}

.lead-form input:focus {
  border-color: rgba(233, 144, 139, 0.85);
}

.lead-form input::placeholder {
  color: #aaa49d;
}

.lead-form button {
  width: 100%;
  height: 61px;
  border: 0;
  color: var(--white);
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  background: var(--salmon);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  background: var(--salmon-dark);
  transform: translateY(-1px);
}

.lead-form small {
  display: block;
  margin-top: 18px;
  color: #b9b3ac;
  font-size: 13px;
  font-style: italic;
}

/* Conceito */
.concept {
  position: relative;
  overflow: hidden;
  color: #5f5d58;
  background: linear-gradient(180deg, #e9e9e9 0 68%, var(--graphite) 68% 100%);
}

.concept__inner {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 580px;
  gap: clamp(70px, 8vw, 116px);
  align-items: start;
  width: min(1260px, calc(100% - 80px));
  min-height: 760px;
  margin: 0 auto;
  padding: 74px 0 78px;
}

.concept__content {
  padding-top: 2px;
}

.section-kicker {
  display: block;
  margin-bottom: 2px;
  color: #75736f;
  font-size: 21px;
  font-weight: 300;
}

.concept h2 {
  margin: 0;
  color: var(--salmon);
  font-size: clamp(46px, 3.3vw, 62px);
  font-weight: 300;
  line-height: 1.14;
  text-transform: uppercase;
}

.concept__content > p {
  max-width: 620px;
  margin: 90px 0 0;
  color: #6a6863;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.concept-card {
  display: grid;
  grid-template-columns: 235px 1fr;
  align-items: center;
  width: min(670px, 100%);
  min-height: 210px;
  margin-top: 74px;
  padding: 44px 66px;
  background: #dfdfdd;
}

.concept-card__types {
  display: grid;
  gap: 28px;
  color: var(--salmon);
  font-size: 43px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.concept-card__amenity {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #4c4a46;
}

.concept-card__amenity img {
  width: 58px;
  height: auto;
}

.concept-card__amenity strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.18;
}

.concept__image {
  width: 100%;
  margin: 28px 0 0;
}

.concept__image img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  object-position: center;
}

/* Gestão Housi */
.management {
  overflow: hidden;
  color: #dedbd6;
  background: var(--graphite);
}

.management__inner {
  display: grid;
  grid-template-columns: minmax(460px, 560px) minmax(540px, 1fr);
  gap: clamp(54px, 7.2vw, 112px);
  align-items: start;
  width: min(1260px, calc(100% - 80px));
  min-height: 880px;
  margin: 0 auto;
  padding: 70px 0 66px;
}

.management__content {
  padding-top: 0;
}

.management__kicker {
  display: block;
  margin-bottom: 4px;
  color: #aaa6a0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.management h2 {
  margin: 0 0 104px;
  color: var(--salmon);
  font-size: clamp(44px, 3.35vw, 64px);
  font-weight: 300;
  line-height: 1.12;
  text-transform: uppercase;
}

.management__content > p {
  max-width: 555px;
  margin: 0;
  color: #d4d1cc;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.44;
}

.management-stats {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  width: min(530px, 100%);
  margin: 66px 0 0 20px;
  color: var(--salmon);
  margin-left: 200px;
}

.management-stats__brace {
  position: relative;
  width: 44px;
  height: 176px;
  min-height: 176px;
  align-self: start;
  border-top: 6px solid var(--salmon);
  border-bottom: 6px solid var(--salmon);
  border-left: 6px solid var(--salmon);
  border-radius: 28px 0 0 28px;
}

.management-stats__label {
  display: block;
  margin: 26px 0 34px;
  color: var(--salmon);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
}

.management-stats dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.management-stats dl > div {
  display: grid;
  justify-items: start;
}

.management-stats dl > div:nth-child(1) {
  margin-left: 34px;
}

.management-stats dl > div:nth-child(2) {
  margin-left: 124px;
}

.management-stats dl > div:nth-child(3) {
  margin-left: 220px;
}

.management-stats dt {
  margin: 0;
  color: var(--salmon);
  font-size: 45px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.92;
}

.management-stats dd {
  margin: 0;
  color: #efede9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.management-list {
  margin: 42px 0 0 90px;
}

.management-list h3 {
  margin: 0 0 4px;
  color: var(--salmon);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.management-list ul {
  margin: 0;
  padding-left: 20px;
  color: #dedbd6;
  font-size: 19px;
  line-height: 1.18;
}

.management__map {
  display: grid;
  justify-items: center;
  padding-top: 154px;
}

.management__logo {
  width: 290px;
  margin-bottom: 38px;
}

.management__brazil {
  width: min(620px, 100%);
  height: auto;
}

.management-appspace {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(650px, 850px) minmax(280px, 360px);
  gap: clamp(76px, 9vw, 136px);
  align-items: center;
  margin-top: 60px;
}

.management-appspace__apps {
  width: 100%;
  height: auto;
}

.management-appspace__brand {
  width: min(340px, 100%);
  height: auto;
  justify-self: center;
}

/* Lazer */
.leisure {
  overflow: hidden;
  color: #6b6964;
  background: #e9e9e9;
}

.leisure__inner {
  display: grid;
  grid-template-columns: minmax(480px, 610px) minmax(410px, 520px);
  column-gap: clamp(88px, 11vw, 150px);
  row-gap: 112px;
  width: min(1260px, calc(100% - 80px));
  min-height: 610px;
  margin: 0 auto;
  padding: 154px 0 100px;
}

.leisure__header {
  grid-column: 1 / -1;
}

.leisure h2 {
  margin: 0;
  color: var(--salmon);
  font-size: clamp(48px, 3.3vw, 62px);
  font-weight: 300;
  line-height: 1.14;
  text-transform: uppercase;
}

.leisure p {
  max-width: 540px;
  margin: 0;
  color: #6b6964;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.42;
}

.leisure__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 22px;
  align-self: start;
  margin: 0;
  padding: 0;
  color: #6f6d68;
  font-size: 20px;
  font-weight: 400;
  list-style: none;
}

.leisure__features li {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.leisure__features img {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.leisure-gallery {
  --gallery-gap: clamp(28px, 4.4vw, 72px);
  position: relative;
  left: 50%;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(620px, 1065px) minmax(
      280px,
      420px
    );
  gap: var(--gallery-gap);
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  margin: 28px 0 0;
  padding-bottom: 6px;
  overflow: hidden;
  transform: translateX(-50%);
}

.leisure-gallery figure {
  margin: 0;
}

.leisure-gallery__side {
  position: relative;
  z-index: 2;
  height: 600px;
  opacity: 0.42;
}

.leisure-gallery__side img,
.leisure-gallery__main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leisure-gallery__side--left img {
  object-position: 72% center;
}

.leisure-gallery__side--right img {
  object-position: 24% center;
}

.leisure-gallery__stage {
  position: relative;
  display: grid;
  align-items: center;
  height: 600px;
}

.leisure-gallery__stage::before,
.leisure-gallery__stage::after {
  display: none;
}

.leisure-gallery__main {
  position: relative;
  z-index: 3;
  height: 600px;
  overflow: hidden;
}

.leisure-gallery__main > span {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 18px;
  padding: 2px 9px 4px;
  color: #f0ece8;
  font-size: 22px;
  line-height: 1;
  background: rgba(70, 68, 63, 0.82);
}

.leisure-gallery__main button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 8px 18px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  background: rgba(70, 68, 63, 0.86);
  cursor: pointer;
}

.leisure-gallery__main button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.leisure-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: var(--gallery-gap);
  height: 360px;
  place-items: center;
  border: 0;
  padding: 0;
  background: #5a5149;
  cursor: pointer;
  transform: translateY(-50%);
}

.leisure-gallery__arrow img {
  width: 28px;
  height: auto;
}

.leisure-gallery__arrow--prev {
  right: 100%;
}

.leisure-gallery__arrow--next {
  left: 100%;
}

.leisure-gallery__dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.leisure-gallery__dots button {
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid #5c5955;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.leisure-gallery__dots button.is-active {
  background: #514f4b;
}

/* Modal de imagem */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 42px;
  background: rgba(28, 27, 25, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal img {
  max-width: min(1420px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.image-modal__close {
  position: absolute;
  top: 24px;
  right: 28px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  background: rgba(70, 68, 63, 0.72);
  cursor: pointer;
}

/* Plantas */
.floorplans {
  color: #6b6964;
  background: #e9e9e9;
}

.floorplans__inner {
  display: grid;
  grid-template-columns: minmax(460px, 570px) minmax(520px, 590px);
  gap: clamp(78px, 9vw, 120px);
  align-items: start;
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
  padding: 98px 0 92px;
}

.floorplans h2 {
  margin: 0;
  color: var(--salmon);
  font-size: clamp(38px, 2.65vw, 50px);
  font-weight: 300;
  line-height: 1.14;
  text-transform: uppercase;
}

.floorplans__content > p {
  max-width: 520px;
  margin: 118px 0 0;
  color: #6b6964;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.42;
}

.floorplans__summary {
  margin-top: 42px;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--salmon);
}

.floorplans__summary p {
  margin: 0;
  color: #5e5b56;
  font-size: 18px;
  line-height: 1.45;
}

.floorplans__viewer {
  display: grid;
  justify-items: center;
}

.floorplans__tabs {
  display: flex;
  gap: 12px;
  justify-self: start;
  margin-bottom: 30px;
}

.floorplans__tabs button {
  min-width: 112px;
  border: 2px solid #47443f;
  padding: 6px 20px;
  color: #ffffff;
  font-size: 18px;
  background: #3f3c38;
  cursor: pointer;
}

.floorplans__tabs button.is-active,
.floorplans__tabs button:hover,
.floorplans__tabs button:focus-visible {
  color: #46433f;
  font-weight: 700;
  background: #d9d8d6;
}

.floorplans__stage {
  position: relative;
  width: min(520px, 100%);
}

.floorplans__figure {
  position: relative;
  margin: 0;
  padding-bottom: 44px;
}

.floorplans__figure > img {
  width: 100%;
  height: auto;
}

.floorplans__figure figcaption {
  position: absolute;
  bottom: 7px;
  left: 0;
  color: #6b6964;
  font-size: 20px;
  line-height: 1;
}

.floorplans__figure button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  background: rgba(70, 68, 63, 0.9);
  cursor: pointer;
}

.floorplans__figure button img {
  width: 24px;
  height: 24px;
}

.floorplans__arrow {
  position: absolute;
  top: 46%;
  z-index: 3;
  display: grid;
  width: 55px;
  height: 92px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.floorplans__arrow img {
  width: 28px;
  height: auto;
}

.floorplans__arrow--prev {
  right: calc(100% + 26px);
}

.floorplans__arrow--next {
  left: calc(100% + 26px);
}

.floorplans__dots {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.floorplans__dots button {
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid #5c5955;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.floorplans__dots button.is-active {
  background: #514f4b;
}

/* Implantação */
.deployment {
  color: #dedbd6;
  background: var(--graphite);
}

.deployment__inner {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
  padding: 86px 0 78px;
}

.deployment__header {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(430px, 520px);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
  margin-bottom: 64px;
}

.deployment h2 {
  margin: 0;
  color: var(--salmon);
  font-size: clamp(54px, 4vw, 76px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.deployment__header p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #d8d4cf;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.42;
}

.deployment__viewer {
  position: relative;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.deployment__figure {
  position: relative;
  margin: 0;
}

.deployment__figure > img {
  display: block;
  width: 100%;
  height: auto;
}

.deployment__figure button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  background: rgba(70, 68, 63, 0.9);
  cursor: pointer;
}

.deployment__figure button img {
  width: 24px;
  height: 24px;
}

.deployment__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 55px;
  height: 92px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.deployment__arrow img {
  width: 28px;
  height: auto;
}

.deployment__arrow--prev {
  right: calc(100% + 34px);
}

.deployment__arrow--next {
  left: calc(100% + 34px);
}

.deployment__dots {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 36px;
}

.deployment__dots button {
  display: block;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d6d5d2;
  cursor: pointer;
  opacity: 0.8;
}

.deployment__dots button.is-active {
  background: #6a6762;
}

/* Futuro */
.future {
  color: #dedbd6;
  background: var(--graphite);
}

.future__inner {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 88px;
}

.future h2 {
  max-width: 860px;
  margin: 0 0 62px;
  color: var(--salmon);
  font-size: clamp(48px, 3.7vw, 70px);
  font-weight: 300;
  line-height: 1.06;
  text-transform: uppercase;
}

.future__video {
  width: min(1068px, 100%);
  margin: 0 auto;
}

.future__video video {
  display: block;
  width: 100%;
  height: auto;
}

.future__text {
  width: min(720px, 100%);
  margin: 0 auto;
  border-left: 2px solid var(--salmon);
  padding: 74px 0 0 34px;
}

.future__text p {
  margin: 0;
  color: #dedbd6;
  font-size: 20px;
  line-height: 1.45;
}

/* Únicos */
.unique {
  color: #dedbd6;
  background: var(--graphite);
}

.unique__inner {
  display: grid;
  grid-template-columns: 500px 795px;
  gap: 45px;
  align-items: center;
  width: min(1340px, calc(100% - 80px));
  margin: 0 auto;
  padding: 132px 0 110px;
}

.unique__copy {
  position: relative;
  z-index: 2;
}

.unique h2 {
  margin: 0 0 120px;
  color: var(--salmon);
  font-size: clamp(42px, 2.85vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
}

.unique__points {
  display: grid;
  max-width: 500px;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 84px;
  color: #dedbd6;
  font-size: 20px;
  line-height: 1.35;
}

.unique__points li {
  position: relative;
  padding-left: 18px;
}

.unique__points li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "•";
}

.unique__points li:nth-child(2) {
  margin-left: 92px;
}

.unique__points li:nth-child(3) {
  margin-left: 184px;
}

.unique__media {
  position: relative;
  display: grid;
  justify-items: end;
  width: 100%;
  min-height: 670px;
}

.unique__media img {
  display: block;
  width: 430px;
  height: 670px;
  object-fit: cover;
}

.unique__target {
  position: absolute;
  top: 180px;
  right: 430px;
  z-index: 2;
  width: 365px;
  min-height: 368px;
  padding: 42px 34px 32px;
  background: rgba(111, 95, 85, 0.62);
}

.unique__target h3 {
  margin: 0 0 36px;
  color: var(--salmon);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
}

.unique__target ul {
  margin: 0;
  padding-left: 18px;
  color: #dedbd6;
  font-size: 20px;
  line-height: 1.28;
}

/* Localização */
.location {
  color: #dedbd6;
  background: var(--graphite);
}

.location__inner {
  width: min(1340px, calc(100% - 80px));
  margin: 0 auto;
  padding: 78px 0 0;
}

.location__content {
  display: grid;
  grid-template-columns: 440px 840px;
  gap: 60px;
  align-items: end;
}

.location h2 {
  margin: 0;
  color: var(--salmon);
  font-size: clamp(54px, 3.45vw, 66px);
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.location__copy p {
  max-width: 390px;
  margin: 78px 0 82px;
  color: #dedbd6;
  font-size: 20px;
  line-height: 1.4;
}

.location address {
  display: grid;
  gap: 4px;
  margin: 0 0 46px;
  color: #dedbd6;
  font-size: 20px;
  font-style: normal;
  line-height: 1.35;
}

.location address strong {
  color: var(--salmon);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location address b {
  font-weight: 700;
}

.location__distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 0;
  padding: 20px 28px 24px;
  background: rgba(111, 95, 85, 0.62);
}

.location__distances ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location__distances li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #dedbd6;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.location__distances span {
  display: flex;
  flex: 1 1 auto;
  align-items: baseline;
  min-width: 0;
}

.location__distances span::after {
  flex: 1 1 auto;
  margin: 0 6px;
  border-bottom: 2px dotted rgba(222, 219, 214, 0.5);
  content: "";
}

.location__distances b {
  flex: 0 0 auto;
  font-weight: 700;
}

.location__map {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: saturate(0.65) brightness(1.06);
}

/* Oportunidades */
.opportunities {
  position: relative;
  overflow: hidden;
  color: #625f5b;
  background: #dedddb;
}

.opportunities::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  background: #ececec;
  content: "";
}

.opportunities__inner {
  position: relative;
  z-index: 1;
  width: min(1430px, calc(100% - 80px));
  margin: 0 auto;
  padding: 86px 0 122px;
}

.opportunities h2 {
  max-width: 760px;
  margin: 0 0 76px 95px;
  color: var(--salmon);
  font-size: clamp(48px, 3.25vw, 62px);
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
}

.opportunities__body {
  display: grid;
  grid-template-columns: minmax(600px, 790px) minmax(360px, 500px);
  gap: 30px;
  align-items: start;
}

.opportunities__body img {
  display: block;
  width: 100%;
  height: 545px;
  object-fit: cover;
}

.opportunities__text {
  display: grid;
  gap: 26px;
  padding-top: 0;
  color: #625f5b;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.34;
}

.opportunities__text p {
  margin: 0;
}

/* Parceria */
.partnership {
  color: #625f5b;
  background: #ededed;
}

.partnership__inner {
  display: grid;
  grid-template-columns: minmax(460px, 620px) minmax(520px, 610px);
  gap: 108px;
  align-items: center;
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: 118px 0 126px;
}

.partnership h2 {
  margin: 0 0 66px;
  color: var(--salmon);
  font-size: clamp(38px, 2.7vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
}

.partnership__copy p {
  max-width: 560px;
  margin: 0;
  color: #625f5b;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.partnership__copy p + p {
  margin-top: 26px;
}

.partnership__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.partnership__logos img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Footer */
.site-footer {
  color: #d8d4cf;
  background: var(--graphite);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(620px, 750px) minmax(390px, 430px);
  gap: 78px;
  align-items: start;
  width: min(1250px, calc(100% - 80px));
  margin: 0 auto;
  padding: 156px 0 182px;
}

.site-footer__brands {
  display: grid;
  grid-template-columns: 130px 330px 250px;
  align-items: end;
  gap: 34px;
}

.site-footer__brands > div {
  display: flex;
  align-items: flex-end;
}

.site-footer__brands .site-footer__brand-group,
.site-footer__brands .site-footer__brand-management {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.site-footer__brand-group {
  grid-template-columns: 130px 170px;
  column-gap: 28px;
}

.site-footer__brand-group span {
  grid-column: 1 / -1;
}

.site-footer__brands span {
  color: rgba(216, 212, 207, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__brands img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0.78;
}

.site-footer__brand-main img {
  width: 120px;
}

.site-footer__brand-group img:first-of-type {
  width: 128px;
}

.site-footer__brand-group img:last-of-type {
  width: 155px;
}

.site-footer__brand-management img {
  width: 220px;
}

.site-footer__contacts {
  display: flex;
  align-items: center;
  gap: 86px;
  margin-top: 58px;
}

.site-footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8d4cf;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.site-footer__contacts img {
  width: 22px;
  height: 22px;
}

.site-footer__social-icons {
  display: inline-flex;
  gap: 4px;
}

.site-footer__address {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 70px;
  color: #d8d4cf;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.site-footer__address img {
  width: 22px;
  height: 22px;
}

.site-footer__legal {
  max-width: 735px;
  margin: 48px 0 0;
  color: rgba(216, 212, 207, 0.58);
  font-size: 8px;
  line-height: 1.35;
}

.site-footer__form {
  display: grid;
  align-content: start;
  justify-items: start;
}

.site-footer__form p {
  margin: 0 0 26px;
  color: #d8d4cf;
  font-size: 20px;
  line-height: 1.12;
}

.site-footer__form h2 {
  margin: 0 0 22px;
  color: var(--salmon);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__form input,
.site-footer__form textarea {
  width: 100%;
  border: 1px solid rgba(216, 212, 207, 0.23);
  border-radius: 0;
  margin: 0 0 8px;
  padding: 0 12px;
  color: #d8d4cf;
  font: inherit;
  background: #332f2c;
  outline: 0;
}

.site-footer__form input {
  height: 45px;
}

.site-footer__form textarea {
  height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.site-footer__form input::placeholder,
.site-footer__form textarea::placeholder {
  color: rgba(216, 212, 207, 0.35);
}

.site-footer__form button {
  justify-self: end;
  min-width: 153px;
  height: 34px;
  border: 0;
  margin-top: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: var(--salmon);
  cursor: pointer;
}

.site-footer__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 78px;
  padding: 0 max(40px, calc((100vw - 1250px) / 2));
  background: #332f2c;
}

.site-footer__bottom img {
  display: block;
  width: 150px;
  opacity: 0.45;
}

/* Responsivo */
@media (max-width: 1280px) {
  :root {
    --header-height: 112px;
  }

  .site-header {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 32px;
    padding-inline: 40px;
  }

  .site-header__brand {
    width: 132px;
  }

  .site-header__nav {
    gap: 12px;
  }

  .site-header__nav a {
    padding-inline: 7px;
    font-size: 15px;
  }

  .banner {
    min-height: 820px;
  }

  .banner__inner {
    grid-template-columns: minmax(500px, 1fr) minmax(330px, 380px);
    gap: 44px;
    min-height: calc(820px - var(--header-height));
  }

  .concept__inner {
    grid-template-columns: minmax(440px, 1fr) 430px;
    gap: 44px;
  }

  .concept h2 {
    font-size: 48px;
  }

  .concept__content > p {
    margin-top: 70px;
    font-size: 17px;
  }

  .concept-card {
    grid-template-columns: 190px 1fr;
    padding: 38px 42px;
  }

  .concept-card__types {
    font-size: 35px;
  }

  .concept-card__amenity {
    gap: 24px;
  }

  .concept-card__amenity strong {
    font-size: 24px;
  }

  .concept__image img {
    height: 560px;
  }

  .management__inner {
    grid-template-columns: minmax(410px, 500px) minmax(430px, 1fr);
    gap: 48px;
    min-height: 780px;
    padding-top: 58px;
  }

  .management h2 {
    margin-bottom: 82px;
    font-size: 48px;
  }

  .management__kicker {
    font-size: 20px;
  }

  .management__content > p {
    font-size: 17px;
  }

  .management-stats {
    width: min(500px, 100%);
    margin-left: 0;
    margin-top: 58px;
  }

  .management-stats dl > div:nth-child(1) {
    margin-left: 28px;
  }

  .management-stats dl > div:nth-child(2) {
    margin-left: 102px;
  }

  .management-stats dl > div:nth-child(3) {
    margin-left: 176px;
  }

  .management-stats__label {
    font-size: 24px;
  }

  .management-stats dt {
    font-size: 38px;
  }

  .management-list {
    margin-left: 70px;
  }

  .management-list h3 {
    font-size: 21px;
  }

  .management-list ul {
    font-size: 17px;
  }

  .management__map {
    padding-top: 132px;
  }

  .management__logo {
    width: 250px;
    margin-bottom: 30px;
  }

  .management-appspace {
    grid-template-columns: minmax(560px, 760px) minmax(230px, 300px);
    gap: 58px;
    margin-top: 52px;
  }

  .leisure__inner {
    grid-template-columns: minmax(420px, 1fr) minmax(400px, 1fr);
    column-gap: 60px;
    row-gap: 92px;
    padding-top: 126px;
  }

  .leisure h2 {
    font-size: 50px;
  }

  .leisure p {
    font-size: 17px;
  }

  .leisure__features {
    column-gap: 38px;
    font-size: 18px;
  }

  .leisure-gallery {
    --gallery-gap: 42px;
    grid-template-columns: minmax(260px, 300px) minmax(620px, 1fr) minmax(
        260px,
        300px
      );
  }

  .leisure-gallery__side,
  .leisure-gallery__stage,
  .leisure-gallery__main {
    height: 430px;
  }

  .leisure-gallery__arrow {
    height: 258px;
  }

  .leisure-gallery__dots {
    gap: 14px;
  }

  .leisure-gallery__dots button {
    width: 24px;
    height: 24px;
  }

  .floorplans__inner {
    grid-template-columns: minmax(400px, 1fr) minmax(430px, 520px);
    gap: 54px;
  }

  .floorplans h2 {
    font-size: 40px;
  }

  .floorplans__content > p {
    margin-top: 88px;
    font-size: 17px;
  }

  .floorplans__summary p {
    font-size: 16px;
  }

  .floorplans__tabs button {
    min-width: 98px;
    font-size: 16px;
  }

  .floorplans__stage {
    width: min(450px, 100%);
  }

  .floorplans__arrow--prev {
    right: calc(100% + 16px);
  }

  .floorplans__arrow--next {
    left: calc(100% + 16px);
  }

  .deployment__viewer {
    width: min(920px, 100%);
  }

  .deployment__header {
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 460px);
    gap: 54px;
  }

  .deployment h2 {
    font-size: 58px;
  }

  .deployment__header p {
    font-size: 18px;
  }

  .deployment__arrow--prev {
    right: calc(100% + 18px);
  }

  .deployment__arrow--next {
    left: calc(100% + 18px);
  }

  .future h2 {
    font-size: 58px;
  }

  .future__video {
    width: min(980px, 100%);
  }

  .future__text p {
    font-size: 18px;
  }

  .unique__inner {
    grid-template-columns: minmax(380px, 1fr) minmax(470px, 570px);
    gap: 28px;
  }

  .unique h2 {
    margin-bottom: 88px;
    font-size: 48px;
  }

  .unique__points {
    gap: 64px;
    font-size: 18px;
  }

  .unique__points li:nth-child(2) {
    margin-left: 54px;
  }

  .unique__points li:nth-child(3) {
    margin-left: 108px;
  }

  .unique__media {
    min-height: 590px;
  }

  .unique__media img {
    width: 410px;
    height: 590px;
  }

  .unique__target {
    top: 160px;
    right: 320px;
    width: 330px;
    min-height: 315px;
    padding: 34px 28px 26px;
  }

  .unique__target h3 {
    margin-bottom: 28px;
    font-size: 27px;
  }

  .unique__target ul {
    font-size: 18px;
  }

  .location__content {
    grid-template-columns: minmax(340px, 390px) minmax(560px, 1fr);
    gap: 42px;
  }

  .location h2 {
    font-size: 58px;
  }

  .location__copy p,
  .location address {
    font-size: 18px;
  }

  .location__distances {
    gap: 22px;
    padding: 20px 22px 24px;
  }

  .location__distances li {
    font-size: 15px;
  }

  .opportunities__inner {
    width: min(1120px, calc(100% - 80px));
  }

  .opportunities h2 {
    margin-left: 0;
    font-size: 50px;
  }

  .opportunities__body {
    grid-template-columns: minmax(520px, 1fr) minmax(330px, 430px);
  }

  .opportunities__body img {
    height: 480px;
  }

  .opportunities__text {
    font-size: 18px;
  }

  .partnership__inner {
    grid-template-columns: minmax(420px, 540px) minmax(460px, 560px);
    gap: 70px;
  }

  .partnership h2 {
    font-size: 42px;
  }

  .partnership__copy p {
    font-size: 18px;
  }

  .partnership__logos {
    gap: 42px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(560px, 1fr) minmax(360px, 410px);
    gap: 54px;
    padding-top: 120px;
  }

  .site-footer__brands {
    grid-template-columns: 120px 300px 220px;
    gap: 22px;
  }

  .site-footer__brand-group {
    grid-template-columns: 120px 150px;
    column-gap: 20px;
  }

  .site-footer__contacts {
    gap: 44px;
  }

  .site-footer__contacts a {
    font-size: 18px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 28px 24px;
    background: rgba(70, 68, 63, 0.98);
  }

  .site-header__nav.is-open {
    display: grid;
  }

  .site-header__nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 17px;
  }

  .banner__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    gap: 42px;
    align-content: center;
  }

  .banner__tagline {
    margin-top: 52px;
  }

  .lead-form {
    max-width: 460px;
  }

  .concept {
    background: linear-gradient(
      180deg,
      #e9e9e9 0 76%,
      var(--graphite) 76% 100%
    );
  }

  .concept__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    min-height: auto;
    padding: 58px 0 64px;
  }

  .concept__content > p {
    margin-top: 44px;
  }

  .concept-card {
    margin-top: 46px;
  }

  .concept__image {
    margin-top: 0;
  }

  .concept__image img {
    height: auto;
    max-height: 620px;
  }

  .management__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    min-height: auto;
    padding-bottom: 58px;
  }

  .management h2 {
    margin: 0 0 46px;
  }

  .management-stats,
  .management-list {
    margin-left: 0;
  }

  .management__map {
    padding-top: 20px;
  }

  .management__logo {
    width: 260px;
  }

  .management__brazil {
    width: min(560px, 100%);
  }

  .management-appspace {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 34px;
  }

  .management-appspace__brand {
    width: min(300px, 70%);
  }

  .leisure__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    row-gap: 44px;
    min-height: auto;
    padding: 74px 0 76px;
  }

  .leisure__features {
    grid-template-columns: 1fr 1fr;
  }

  .leisure-gallery {
    left: auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    overflow: visible;
    transform: none;
  }

  .leisure-gallery__side {
    display: none;
  }

  .leisure-gallery__stage,
  .leisure-gallery__main {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .leisure-gallery__stage::before,
  .leisure-gallery__stage::after {
    display: none;
  }

  .leisure-gallery__arrow {
    width: 42px;
    height: 70px;
    background: rgba(70, 68, 63, 0.52);
  }

  .leisure-gallery__arrow--prev {
    right: auto;
    left: 12px;
  }

  .leisure-gallery__arrow--next {
    right: 12px;
    left: auto;
  }

  .leisure-gallery__dots {
    grid-column: 1;
    flex-wrap: wrap;
  }

  .floorplans__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    gap: 44px;
    padding: 74px 0 76px;
  }

  .floorplans__content > p {
    margin-top: 44px;
  }

  .floorplans__viewer {
    justify-items: stretch;
  }

  .floorplans__tabs {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .floorplans__stage {
    width: min(520px, 100%);
    justify-self: center;
  }

  .floorplans__arrow {
    width: 42px;
    height: 70px;
    background: rgba(70, 68, 63, 0.52);
  }

  .floorplans__arrow--prev {
    right: auto;
    left: 10px;
  }

  .floorplans__arrow--next {
    right: 10px;
    left: auto;
  }

  .deployment__inner {
    width: min(680px, calc(100% - 48px));
    padding: 70px 0 68px;
  }

  .deployment__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .deployment__header p {
    margin-top: 0;
  }

  .deployment__arrow {
    width: 42px;
    height: 70px;
    background: rgba(70, 68, 63, 0.52);
  }

  .deployment__arrow--prev {
    right: auto;
    left: 10px;
  }

  .deployment__arrow--next {
    right: 10px;
    left: auto;
  }

  .deployment__dots {
    flex-wrap: wrap;
    gap: 18px;
  }

  .future__inner {
    width: min(680px, calc(100% - 48px));
    padding: 68px 0 72px;
  }

  .future h2 {
    margin-bottom: 42px;
    font-size: 44px;
  }

  .future__text {
    padding: 44px 0 0 24px;
  }

  .unique__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    gap: 48px;
    padding: 66px 0 78px;
  }

  .unique h2 {
    margin-bottom: 52px;
    font-size: 36px;
  }

  .unique__points {
    max-width: none;
    gap: 28px;
  }

  .unique__points li:nth-child(2),
  .unique__points li:nth-child(3) {
    margin-left: 0;
  }

  .unique__media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    justify-items: stretch;
  }

  .unique__media img {
    width: 100%;
    height: auto;
    max-height: 620px;
  }

  .unique__target {
    position: static;
    width: auto;
    min-height: 0;
    order: 2;
  }

  .location__inner {
    width: min(680px, calc(100% - 48px));
    padding-top: 66px;
  }

  .location__content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .location h2 {
    font-size: 44px;
  }

  .location__copy p {
    margin: 38px 0 36px;
  }

  .location address {
    margin-bottom: 0;
  }

  .location__distances {
    grid-template-columns: 1fr;
  }

  .location__map {
    height: 360px;
    margin-top: 44px;
  }

  .opportunities__inner {
    width: min(680px, calc(100% - 48px));
    padding: 66px 0 76px;
  }

  .opportunities h2 {
    margin-bottom: 42px;
    font-size: 38px;
  }

  .opportunities__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opportunities__body img {
    height: auto;
  }

  .opportunities__text {
    font-size: 17px;
  }

  .partnership__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    gap: 44px;
    padding: 72px 0 78px;
  }

  .partnership h2 {
    margin-bottom: 38px;
    font-size: 31px;
  }

  .partnership__logos {
    width: min(520px, 100%);
    gap: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 48px));
    gap: 54px;
    padding: 76px 0 88px;
  }

  .site-footer__brands {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: start;
  }

  .site-footer__brands > div,
  .site-footer__brand-group,
  .site-footer__brand-management {
    justify-items: start;
  }

  .site-footer__brand-group {
    grid-template-columns: 120px 150px;
  }

  .site-footer__contacts {
    flex-wrap: wrap;
    gap: 22px 40px;
    margin-top: 42px;
  }

  .site-footer__address {
    margin-top: 42px;
  }

  .site-footer__form {
    width: min(430px, 100%);
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-header__brand {
    width: 112px;
  }

  .banner {
    min-height: auto;
    background-position: center top;
  }

  .banner__inner {
    min-height: 760px;
    width: calc(100% - 32px);
    padding: 42px 0;
  }

  .banner__location {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .banner__title {
    font-size: 37px;
  }

  .banner__tagline {
    margin-top: 38px;
    font-size: 21px;
    line-height: 1.35;
  }

  .banner__tagline span {
    font-size: 30px;
  }

  .lead-form {
    padding: 24px 18px 16px;
  }

  .lead-form p {
    font-size: 18px;
  }

  .lead-form h2 {
    font-size: 22px;
  }

  .social-menu a,
  .social-menu img {
    width: 30px;
    height: 30px;
  }

  .concept__inner {
    width: calc(100% - 32px);
    padding: 44px 0 52px;
  }

  .section-kicker {
    font-size: 17px;
  }

  .concept h2 {
    font-size: 36px;
  }

  .concept__content > p {
    margin-top: 34px;
    font-size: 16px;
  }

  .concept-card {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 34px 30px;
  }

  .concept-card__types {
    gap: 22px;
    font-size: 31px;
  }

  .concept-card__amenity {
    gap: 22px;
  }

  .concept-card__amenity strong {
    font-size: 22px;
  }

  .management__inner {
    width: calc(100% - 32px);
    padding-bottom: 48px;
  }

  .management h2 {
    font-size: 36px;
  }

  .management__content > p {
    font-size: 16px;
  }

  .management-stats {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    margin-top: 42px;
  }

  .management-stats__brace {
    width: 30px;
    height: 148px;
    min-height: 148px;
    border-width: 5px;
  }

  .management-stats__label {
    margin: 20px 0 32px;
    font-size: 22px;
  }

  .management-stats dt {
    font-size: 34px;
  }

  .management-list h3 {
    font-size: 19px;
  }

  .management-list ul {
    font-size: 16px;
  }

  .management__logo {
    width: 220px;
  }

  .management-appspace {
    gap: 28px;
  }

  .management-appspace__brand {
    width: min(240px, 78%);
  }

  .leisure__inner {
    width: calc(100% - 32px);
    padding: 54px 0 62px;
  }

  .leisure h2 {
    font-size: 36px;
  }

  .leisure p {
    font-size: 16px;
  }

  .leisure__features {
    grid-template-columns: 1fr;
    gap: 18px;
    font-size: 17px;
  }

  .leisure-gallery__main > span {
    font-size: 16px;
  }

  .leisure-gallery__main button {
    padding: 7px 12px;
    font-size: 17px;
  }

  .leisure-gallery__dots {
    gap: 10px;
  }

  .leisure-gallery__dots button {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .image-modal {
    padding: 18px;
  }

  .image-modal__close {
    top: 14px;
    right: 14px;
  }

  .floorplans__inner {
    width: calc(100% - 32px);
    padding: 54px 0 62px;
  }

  .floorplans h2 {
    font-size: 29px;
  }

  .floorplans__content > p,
  .floorplans__summary p {
    font-size: 16px;
  }

  .floorplans__tabs {
    gap: 8px;
  }

  .floorplans__tabs button {
    min-width: auto;
    padding: 6px 12px;
    font-size: 14px;
  }

  .floorplans__figure {
    padding-bottom: 38px;
  }

  .floorplans__figure figcaption {
    font-size: 15px;
  }

  .floorplans__figure button {
    padding: 7px 12px;
    font-size: 17px;
  }

  .floorplans__dots {
    gap: 12px;
  }

  .floorplans__dots button {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .deployment__inner {
    width: calc(100% - 32px);
    padding: 54px 0 58px;
  }

  .deployment h2 {
    font-size: 42px;
  }

  .deployment__header p {
    font-size: 16px;
  }

  .deployment__figure button {
    padding: 7px 12px;
    font-size: 17px;
  }

  .deployment__dots button {
    width: 18px;
    height: 18px;
  }

  .future__inner {
    width: calc(100% - 32px);
    padding: 54px 0 58px;
  }

  .future h2 {
    margin-bottom: 32px;
    font-size: 34px;
  }

  .future__text {
    padding: 32px 0 0 18px;
  }

  .future__text p {
    font-size: 16px;
  }

  .unique__inner {
    width: calc(100% - 32px);
    padding: 52px 0 58px;
  }

  .unique h2 {
    margin-bottom: 36px;
    font-size: 30px;
  }

  .unique__points,
  .unique__target ul {
    font-size: 16px;
  }

  .unique__target {
    padding: 26px 22px 22px;
  }

  .unique__target h3 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .location__inner {
    width: calc(100% - 32px);
    padding-top: 52px;
  }

  .location h2 {
    font-size: 34px;
  }

  .location__copy p,
  .location address {
    font-size: 16px;
  }

  .location address strong {
    font-size: 17px;
  }

  .location__distances {
    padding: 18px 16px 20px;
  }

  .location__distances li {
    grid-template-columns: 1fr max-content;
    gap: 10px;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .location__distances li::after {
    display: none;
  }

  .location__distances b {
    align-self: start;
  }

  .location__map {
    height: 310px;
    margin-top: 36px;
  }

  .opportunities::after {
    height: 0px;
  }

  .opportunities__inner {
    width: calc(100% - 32px);
    padding: 52px 0 58px;
  }

  .opportunities h2 {
    margin-bottom: 34px;
    font-size: 28px;
  }

  .opportunities__text {
    gap: 20px;
    padding-right: 44px;
    font-size: 15px;
    line-height: 1.35;
  }

  .partnership__inner {
    width: calc(100% - 32px);
    padding: 54px 0 60px;
  }

  .partnership h2 {
    margin-bottom: 28px;
    font-size: 25px;
  }

  .partnership__copy p {
    font-size: 16px;
  }

  .partnership__logos {
    gap: 14px;
  }

  .site-footer__inner {
    width: calc(100% - 32px);
    padding: 58px 0 68px;
  }

  .site-footer__brand-main img {
    width: 105px;
  }

  .site-footer__brand-group {
    grid-template-columns: 105px 130px;
    column-gap: 18px;
  }

  .site-footer__brand-group img:first-of-type {
    width: 105px;
  }

  .site-footer__brand-group img:last-of-type {
    width: 140px;
  }

  .site-footer__brand-management img {
    width: 190px;
  }

  .site-footer__contacts a {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .site-footer__address {
    align-items: flex-start;
    font-size: 14px;
  }

  .site-footer__form p {
    font-size: 18px;
  }

  .site-footer__form h2 {
    font-size: 18px;
  }

  .site-footer__bottom {
    min-height: 64px;
    padding: 0 24px;
  }

  .site-footer__bottom img {
    width: 120px;
  }
}
