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

@font-face {
  font-family: "Branding";
  src: url("Fonts/BrandingMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Branding";
  src: url("Fonts/BrandingSemibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --background: #fbf4ea;
  --foreground: #193f61;
  --cream: #fbf4ea;
  --navy: #173f63;
  --orange: #ef8c34;
  --burnt: #b94d27;
  --white: #ffffff;
  --container: 1200px;
  --gutter: 24px;
  --hero-form-width: 350px;
  --hero-gap: 144px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Branding", Arial, Helvetica, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--cream);
}

.social-strip {
  height: 28px;
  background: var(--burnt);
}

.social-strip__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.social-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 20px;
  height: 20px;
}

.main-nav {
  position: relative;
  min-height: 164px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.brand {
  flex: 0 0 auto;
  width: 292px;
}

.brand img {
  width: 292px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-link {
  padding: 20px 0;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    padding 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  padding: 20px 24px;
  background: var(--navy);
  color: var(--white);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 7px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 192px);
  background-image: url("img/header/fundo.jpg");
  background-position: center top;
  background-size: cover;
  isolation: isolate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.06) 46%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 100%);
}

.hero__content {
  min-height: calc(100vh - 192px);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) var(--hero-form-width);
  align-items: start;
  gap: var(--hero-gap);
  padding-top: clamp(120px, 12vh, 178px);
}

.hero-copy {
  color: var(--white);
  padding-top: 26px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.hero-location img {
  width: 22px;
  height: 31px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-form {
  width: var(--hero-form-width);
  min-height: 0;
  padding: 26px 30px 23px;
  background: rgba(23, 63, 99, 0.92);
  color: var(--white);
}

.lead-form h2 {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead-form h2 span {
  display: block;
  text-transform: none;
}

.form-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 14px;
  background: rgba(255, 255, 255, 0.18);
}

.form-title {
  margin: 0 0 15px;
  text-align: center;
  color: var(--white);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}

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

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

.lead-form input {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--navy);
  padding: 0 14px;
  font-size: 18px;
  font-weight: 300;
  outline: none;
}

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

.lead-form button {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 0;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.lead-form button:hover {
  background: #f49a46;
  transform: translateY(-1px);
}

.lead-form small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 300;
}

.lots-strip {
  background: var(--orange);
  color: var(--white);
}

.lots-strip__inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) var(--hero-form-width);
  align-items: center;
  gap: var(--hero-gap);
}

.lots-strip__copy {
  text-align: center;
  color: var(--white);
  line-height: 1;
}

.lots-strip__copy strong {
  display: block;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0;
}

.lots-strip__copy span {
  display: block;
  margin-top: 10px;
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 300;
  letter-spacing: 18px;
}

.lots-strip__installments {
  width: 395px;
  height: auto;
  justify-self: end;
}

.about-section {
  background: var(--white);
  padding: 126px 0 112px;
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 530px;
  align-items: start;
  gap: 110px;
}

.about-section__copy {
  max-width: 520px;
}

.section-kicker {
  margin: 0 0 36px;
  color: var(--burnt);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
}

.about-section h2 {
  margin: 0 0 42px;
  color: var(--navy);
  font-size: clamp(34px, 2.6vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-section h2 strong {
  font-weight: 700;
}

.about-section p:not(.section-kicker) {
  margin: 0 0 36px;
  color: #9b9b9b;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.about-section__call {
  display: block;
  margin-top: 40px;
  color: var(--burnt);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.about-section__media {
  position: relative;
  padding: 0 0 74px 0;
}

.about-section__video {
  position: relative;
  z-index: 2;
  width: 530px;
  height: auto;
}

.about-section__detail {
  position: absolute;
  right: -76px;
  bottom: 0;
  z-index: 1;
  width: 238px;
  height: 238px;
}

.progress-section {
  background: var(--white);
  padding: 24px 0 116px;
}

.progress-section__inner {
  text-align: center;
}

.progress-section__kicker {
  margin-bottom: 32px;
}

.progress-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 2.9vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.progress-section__intro {
  max-width: 850px;
  margin: 28px auto 64px;
  color: #a0a0a0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

.progress-list {
  width: min(100%, 900px);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.progress-item {
  height: 38px;
  background: var(--orange);
  overflow: hidden;
}

.progress-item__fill {
  width: var(--progress);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 0 15px;
  line-height: 1;
}

.progress-item__label,
.progress-item__value {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.progress-item__label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.progress-item__value {
  margin-left: 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.progress-item__dots {
  flex: 1 1 auto;
  min-width: 24px;
  height: 4px;
  margin-left: 12px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.88) 1.5px, transparent 1.8px);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 12px 4px;
}

.implantation-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 86px 0 68px;
}

.implantation-section__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(620px, 57vw) 390px;
  align-items: start;
  justify-content: start;
  gap: 58px;
  margin-right: 0;
  margin-left: 0;
}

.implantation-section__visual {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.implantation-section__image {
  width: 100%;
  height: auto;
}

.zoom-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 48px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.zoom-link img {
  width: 28px;
  height: 28px;
}

.implantation-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 34px;
}

.implantation-feature {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

.implantation-feature img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.implantation-section__copy {
  width: 390px;
  max-width: 100%;
  padding-top: 0;
}

.implantation-kicker {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
}

.implantation-section h2 {
  margin: 0 0 34px;
  color: #f4d57d;
  font-size: clamp(30px, 2.35vw, 42px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
}

.implantation-section h2 strong {
  font-weight: 700;
}

.implantation-section__copy p {
  margin: 0 0 32px;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.68;
}

.implantation-section h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.implantation-section ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
}

.implantation-section li::before {
  content: "·";
  margin-right: 8px;
}

.implantation-section__detail {
  position: absolute;
  right: 0;
  bottom: -2px;
  z-index: 1;
  width: min(29vw, 360px);
  height: auto;
  pointer-events: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.image-modal:target {
  display: flex;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 28, 47, 0.88);
}

.image-modal__content {
  position: relative;
  z-index: 2;
  width: min(96vw, 1420px);
  max-height: 90vh;
  overflow: auto;
  background: var(--navy);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.image-modal__content img {
  width: 100%;
  max-width: none;
  height: auto;
}

.image-modal__close {
  position: sticky;
  top: 12px;
  left: calc(100% - 54px);
  z-index: 3;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.leisure-section {
  background: var(--white);
  padding: 88px 0 78px;
}

.leisure-section__inner {
  overflow: hidden;
}

.leisure-section__header {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.85fr);
  align-items: start;
  gap: 64px;
  margin-bottom: 64px;
}

.leisure-section__title .section-kicker {
  margin-bottom: 34px;
}

.leisure-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.leisure-section h2 strong {
  font-weight: 700;
}

.leisure-section__header > p {
  margin: 58px 0 0;
  color: #9b9b9b;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
}

.leisure-gallery {
  width: calc(100% - 96px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.leisure-card {
  display: block;
  aspect-ratio: 421 / 579;
  overflow: hidden;
  background: #ececec;
}

.leisure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.leisure-card:hover img {
  transform: scale(1.035);
}

.leisure-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  color: #efd9cf;
}

.leisure-dots {
  display: flex;
  align-items: center;
  gap: 14px;
}

.leisure-dots button {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #efd9cf;
  cursor: pointer;
}

.leisure-dots button.is-active {
  background: var(--burnt);
}

.leisure-arrow {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #efd9cf;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.6;
  cursor: pointer;
}

.image-modal[id^="lazer-ampliado"] .image-modal__content {
  width: min(94vw, 1180px);
  background: transparent;
}

.image-modal[id^="lazer-ampliado"] .image-modal__content img {
  width: auto;
  max-width: 100%;
  max-height: 86vh;
  margin: 0 auto;
  object-fit: contain;
}

.leisure-amenities {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 96px;
  margin-top: 62px;
}

.leisure-amenity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #6f6f6f;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.4px;
}

.leisure-amenity img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.location-section {
  background: var(--white);
  padding: 94px 0 100px;
  text-align: center;
}

.location-section .section-kicker {
  margin-bottom: 34px;
}

.location-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.location-section h2 strong {
  font-weight: 700;
}

.location-section__intro {
  max-width: 900px;
  margin: 28px auto 66px;
  color: #9b9b9b;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
}

.location-list {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 74px;
  text-align: left;
}

.location-item {
  display: flex;
  align-items: baseline;
  min-width: 0;
  color: #6f6f6f;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
}

.location-item span,
.location-item strong {
  flex: 0 0 auto;
}

.location-item strong {
  font-weight: 500;
}

.location-item i {
  flex: 1 1 auto;
  min-width: 28px;
  height: 4px;
  margin: 0 8px;
  background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.8px);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 13px 4px;
  opacity: 0.78;
}

.sales-map-section {
  background: var(--white);
  text-align: center;
}

.sales-map-section__header {
  padding: 0 0 28px;
}

.sales-map-section__header strong {
  display: inline-block;
  margin-bottom: 28px;
  padding: 12px 26px 10px;
  background: var(--orange);
  color: var(--navy);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.sales-map-section__header p {
  margin: 0;
  color: #5f5f5f;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.25;
}

.sales-map {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  padding: 72px 0 0;
}

.site-footer__detail {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.site-footer__detail--left {
  left: 0;
  bottom: 36px;
  width: min(18vw, 300px);
}

.site-footer__detail--right {
  right: 0;
  bottom: 36px;
  width: min(30vw, 480px);
}

.site-footer__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: start;
  gap: 62px;
  padding-bottom: 58px;
}

.site-footer__logo {
  width: 300px;
  margin-bottom: 42px;
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.48;
}

.site-footer p strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.site-footer__address {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--white);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.12;
}

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

.site-footer__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.site-footer__phone img {
  width: 52px;
  height: 52px;
}

.site-footer__builder {
  text-align: center;
}

.site-footer__cecilio {
  width: 176px;
  margin: 0 auto 38px;
}

.site-footer__builder p + p {
  margin-top: 12px;
}

.site-footer__builder span {
  display: block;
  margin: 44px 0 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.site-footer__gurgel {
  width: 240px;
  margin: 0 auto;
}

.site-footer__form h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.site-footer__form label {
  display: block;
}

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

.site-footer__form input,
.site-footer__form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #f7e5a8;
  color: var(--burnt);
  padding: 0 14px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.site-footer__form input {
  height: 58px;
  margin-bottom: 6px;
}

.site-footer__form textarea {
  height: 138px;
  padding-top: 13px;
  resize: vertical;
}

.site-footer__form input::placeholder,
.site-footer__form textarea::placeholder {
  color: #c15b38;
}

.site-footer__form button {
  width: 128px;
  height: 40px;
  margin-top: 18px;
  margin-left: auto;
  display: block;
  border: 0;
  border-radius: 3px;
  background: var(--burnt);
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.site-footer__bar {
  position: relative;
  z-index: 3;
  background: var(--burnt);
}

.site-footer__bar-inner {
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-footer__social a,
.site-footer__social img {
  width: 20px;
  height: 20px;
}

.site-footer__affinity {
  grid-column: 2;
  color: #db8d3b;
  font-size: 13px;
  font-weight: 300;
}

@media (max-width: 1100px) {
  :root {
    --hero-form-width: 330px;
    --hero-gap: 48px;
  }

  .main-nav {
    min-height: 134px;
    gap: 28px;
  }

  .brand,
  .brand img {
    width: 235px;
  }

  .nav-links {
    gap: 18px;
    font-size: 17px;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    padding: 17px 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: 680px;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .lead-form {
    width: var(--hero-form-width);
  }

  .lots-strip__installments {
    width: 340px;
  }

  .lots-strip__copy span {
    letter-spacing: 12px;
  }

  .about-section {
    padding: 94px 0 88px;
  }

  .about-section__inner {
    grid-template-columns: minmax(360px, 1fr) 430px;
    gap: 58px;
  }

  .about-section__video {
    width: 430px;
  }

  .about-section__detail {
    right: -42px;
    width: 190px;
    height: 190px;
  }

  .progress-list {
    width: min(100%, 860px);
  }

  .implantation-section__inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    justify-content: start;
    gap: 42px;
  }

  .implantation-section__visual {
    width: 100%;
  }

  .implantation-section__copy {
    width: 340px;
  }

  .implantation-section__copy p,
  .implantation-section ul {
    font-size: 16px;
  }

  .implantation-feature {
    font-size: 15px;
  }

  .leisure-gallery {
    width: calc(100% - 48px);
    gap: 24px;
  }

  .leisure-section__header {
    gap: 42px;
  }

  .leisure-section__header > p {
    font-size: 18px;
  }

  .leisure-amenities {
    gap: 28px 54px;
  }

  .location-list {
    gap: 30px 42px;
  }

  .location-item {
    font-size: 19px;
  }

  .sales-map-section__header strong {
    font-size: 27px;
  }

  .sales-map-section__header p {
    font-size: 23px;
  }

  .sales-map {
    height: 520px;
  }

  .site-footer__content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .site-footer__logo {
    width: 250px;
  }

  .site-footer p {
    font-size: 14px;
  }

  .site-footer__phone {
    font-size: 26px;
  }

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

@media (max-width: 820px) {
  :root {
    --container: 640px;
    --gutter: 16px;
  }

  .social-strip {
    display: none;
  }

  .main-nav {
    min-height: auto;
    padding: 22px 0;
    flex-direction: row;
    align-items: center;
  }

  .brand,
  .brand img {
    width: 220px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid rgba(23, 63, 99, 0.12);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    font-size: 17px;
    white-space: normal;
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 18px var(--gutter);
    border-bottom: 1px solid rgba(23, 63, 99, 0.08);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    padding: 18px var(--gutter);
  }

  .menu-toggle {
    display: grid;
    align-content: center;
  }

  .hero {
    background-position: 57% top;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-location {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .lead-form {
    width: min(100%, 350px);
    min-height: auto;
  }

  .lots-strip__inner {
    min-height: auto;
    padding: 26px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .lots-strip__copy span {
    letter-spacing: 8px;
  }

  .lots-strip__installments {
    width: min(100%, 395px);
  }

  .about-section {
    padding: 70px 0 72px;
  }

  .about-section__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .about-section__copy {
    max-width: 100%;
  }

  .section-kicker {
    margin-bottom: 24px;
    font-size: 13px;
    letter-spacing: 3px;
  }

  .about-section h2 {
    margin-bottom: 28px;
  }

  .about-section p:not(.section-kicker) {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .about-section__call {
    margin-top: 30px;
    font-size: 16px;
  }

  .about-section__media {
    width: min(100%, 530px);
    padding-bottom: 54px;
  }

  .about-section__video {
    width: 100%;
  }

  .about-section__detail {
    right: -18px;
    width: 166px;
    height: 166px;
  }

  .progress-section {
    padding: 8px 0 76px;
  }

  .progress-section__kicker {
    margin-bottom: 22px;
  }

  .progress-section__intro {
    margin: 20px auto 42px;
    font-size: 16px;
  }

  .progress-list {
    gap: 16px;
  }

  .progress-item {
    height: 34px;
  }

  .progress-item__label,
  .progress-item__value {
    font-size: 16px;
  }

  .progress-item__label {
    letter-spacing: 1px;
  }

  .implantation-section {
    padding: 62px 0 56px;
  }

  .implantation-section__inner {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    display: flex;
    flex-direction: column;
    gap: 46px;
    margin-right: auto;
    margin-left: auto;
  }

  .implantation-section__visual {
    width: 100%;
  }

  .zoom-link {
    margin: 24px 0 36px;
  }

  .implantation-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .implantation-section__copy {
    width: 100%;
    max-width: 100%;
  }

  .implantation-section__detail {
    width: 280px;
    opacity: 0.45;
  }

  .leisure-section {
    padding: 64px 0 58px;
  }

  .leisure-section__inner {
    overflow: visible;
  }

  .leisure-section__header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 38px;
  }

  .leisure-section__title .section-kicker {
    margin-bottom: 22px;
  }

  .leisure-section__header > p {
    margin-top: 0;
    font-size: 16px;
  }

  .leisure-gallery {
    width: 100%;
    margin: 0;
    padding: 0 var(--gutter);
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    -webkit-overflow-scrolling: touch;
  }

  .leisure-gallery::-webkit-scrollbar {
    display: none;
  }

  .leisure-card {
    flex: 0 0 min(78vw, 360px);
    scroll-snap-align: start;
  }

  .leisure-controls {
    margin-top: 28px;
  }

  .leisure-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    margin-top: 42px;
  }

  .leisure-amenity {
    font-size: 17px;
    letter-spacing: 0.8px;
  }

  .leisure-amenity img {
    width: 34px;
    height: 34px;
  }

  .location-section {
    padding: 70px 0 72px;
  }

  .location-section .section-kicker {
    margin-bottom: 24px;
  }

  .location-section__intro {
    margin: 22px auto 44px;
    font-size: 16px;
  }

  .location-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .location-item {
    font-size: 17px;
  }

  .sales-map-section__header {
    padding-bottom: 22px;
  }

  .sales-map-section__header strong {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .sales-map-section__header p {
    font-size: 18px;
  }

  .sales-map {
    height: 420px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .site-footer__detail {
    opacity: 0.35;
  }

  .site-footer__detail--left {
    width: 190px;
  }

  .site-footer__detail--right {
    width: 270px;
  }

  .site-footer__content {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .site-footer__form {
    width: 100%;
  }

  .site-footer__logo {
    width: 230px;
    margin-bottom: 28px;
  }

  .site-footer__builder {
    text-align: left;
  }

  .site-footer__cecilio,
  .site-footer__gurgel {
    margin-left: 0;
  }

  .site-footer__bar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 8px 0;
  }

  .site-footer__affinity {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  :root {
    --gutter: 14px;
  }

  .social-strip {
    display: none;
  }

  .main-nav {
    padding-top: 22px;
  }

  .brand,
  .brand img {
    width: 190px;
  }

  .nav-links {
    gap: 8px 13px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .lead-form {
    padding: 26px 22px 23px;
  }

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

  .form-title {
    font-size: 21px;
    letter-spacing: 3px;
  }

  .lead-form input {
    height: 50px;
  }

  .lead-form button {
    height: 58px;
  }

  .lots-strip__copy strong {
    font-size: 27px;
  }

  .lots-strip__copy span {
    font-size: 15px;
    letter-spacing: 5px;
  }

  .about-section {
    padding: 54px 0 56px;
  }

  .about-section h2 {
    font-size: 31px;
  }

  .about-section p:not(.section-kicker) {
    font-size: 15px;
  }

  .about-section__media {
    padding-bottom: 36px;
  }

  .about-section__detail {
    right: -10px;
    width: 120px;
    height: 120px;
  }

  .progress-section h2 {
    font-size: 31px;
  }

  .progress-section__intro {
    font-size: 15px;
  }

  .progress-item {
    height: auto;
    min-height: 34px;
  }

  .progress-item__fill {
    padding: 9px 10px;
  }

  .progress-item__label,
  .progress-item__value {
    font-size: 13px;
  }

  .progress-item__value {
    margin-left: 8px;
  }

  .progress-item__dots {
    margin-left: 8px;
    background-size: 9px 4px;
  }

  .implantation-section {
    padding: 48px 0 44px;
  }

  .implantation-section h2 {
    font-size: 29px;
  }

  .implantation-kicker {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .implantation-section__copy p,
  .implantation-section ul {
    font-size: 15px;
  }

  .implantation-features {
    grid-template-columns: 1fr 1fr;
  }

  .implantation-feature {
    font-size: 14px;
  }

  .implantation-feature img {
    width: 46px;
    height: 46px;
  }

  .image-modal {
    padding: 14px;
  }

  .leisure-section h2 {
    font-size: 31px;
  }

  .leisure-card {
    flex-basis: 82vw;
  }

  .leisure-controls,
  .leisure-dots {
    gap: 10px;
  }

  .leisure-dots button {
    width: 10px;
    height: 10px;
  }

  .leisure-amenities {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-section h2 {
    font-size: 31px;
  }

  .location-section__intro {
    font-size: 15px;
  }

  .location-item {
    font-size: 14px;
    letter-spacing: 0.8px;
  }

  .location-item i {
    background-size: 9px 4px;
  }

  .sales-map-section__header strong {
    font-size: 18px;
    padding: 10px 14px 8px;
  }

  .sales-map-section__header p {
    font-size: 15px;
  }

  .sales-map {
    height: 340px;
  }

  .site-footer__phone {
    font-size: 24px;
  }

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

  .site-footer__form {
    width: 100%;
  }

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

  .site-footer__form button {
    width: min(100%, 128px);
    margin-right: auto;
    margin-left: auto;
  }
}
