@font-face {
  font-family: "Manrope";
  src: url("public/assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #132b3e;
  --ink-soft: #294253;
  --muted: #66727a;
  --orange: #f58220;
  --orange-deep: #bf4d0f;
  --orange-soft: #ffb56f;
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --sand: #eadfd2;
  --sand-soft: #f2ebe2;
  --line: rgba(19, 43, 62, 0.16);
  --light-line: rgba(255, 253, 249, 0.32);
  --shadow: 0 24px 70px rgba(42, 40, 35, 0.12);
  --radius-large: 32px;
  --radius-medium: 20px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

#conteudo {
  display: flex;
  flex-direction: column;
}

.hero { order: 10; }
.project-overview { order: 20; }
.implantation-section { order: 30; }
.location-section { order: 40; }
.apartments-section { order: 50; }
.club-section { order: 60; }
.childhood-section { order: 70; }
.work-section { order: 80; }
.builder-section { order: 90; }
.faq-section { order: 100; }
.final-cta { order: 110; }

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 6rem);
}

h3 {
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
}

p {
  color: var(--muted);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}

.shell,
.shell-wide {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.shell-wide {
  width: min(calc(100% - 48px), 1480px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(191, 77, 15, 0.22);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 62px;
  padding-inline: 34px;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.button-glass {
  border-color: rgba(255, 253, 249, 0.62);
  background: rgba(19, 43, 62, 0.22);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  border-color: var(--paper);
  background: rgba(19, 43, 62, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 2px solid var(--orange);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "↗";
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.text-link-light {
  border-color: var(--paper);
  color: var(--paper);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 241, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 132px;
  height: 62px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--paper);
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 680;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-tour {
  padding: 8px 13px;
  border: 1px solid rgba(191, 77, 15, 0.24);
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange-deep);
  font-weight: 800;
}

.main-nav .nav-tour::after {
  display: none;
}

.main-nav .nav-tour:hover,
.main-nav .nav-tour:focus-visible {
  background: var(--orange);
  color: var(--ink);
}

.menu-button {
  display: none;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 720;
}

.hero {
  padding: 18px 18px 0;
}

.hero-stage {
  position: relative;
  min-height: clamp(650px, calc(100svh - 102px), 880px);
  overflow: hidden;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 54%;
  transform: scale(1.005);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 40, 0.86) 0%, rgba(8, 27, 40, 0.55) 38%, rgba(8, 27, 40, 0.04) 72%),
    linear-gradient(0deg, rgba(8, 27, 40, 0.62) 0%, rgba(8, 27, 40, 0.02) 50%);
}

.hero-signature {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: clamp(36px, 5vw, 84px);
  width: clamp(170px, 17vw, 250px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(8, 27, 40, 0.25));
}

.hero-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(70px, 10vh, 110px);
  left: clamp(28px, 7vw, 110px);
  width: min(860px, calc(100% - 56px));
}

.hero-kicker,
.kicker,
.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(4rem, 6.4vw, 7.3rem);
  font-weight: 420;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(1.1rem, 1.65vw, 1.38rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-inline-link {
  margin-left: 8px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.62);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.hero-inline-link:hover,
.hero-inline-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange-soft);
}

.hero-caption,
.club-hero-caption,
.final-cta-caption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 18px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.72rem;
}

.hero-vertical {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 130px;
  color: rgba(255, 253, 249, 0.16);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-facts {
  display: grid;
  margin-top: -1px;
  grid-template-columns: repeat(5, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.hero-facts div {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--ink);
  font-size: clamp(1.22rem, 1.8vw, 1.8rem);
  letter-spacing: -0.04em;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding-block: clamp(96px, 11vw, 170px);
}

.section-heading {
  margin-bottom: clamp(44px, 6vw, 82px);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 72px;
}

.section-heading-split h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.section-heading-split > p {
  max-width: 470px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.section-heading-centered {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.keys-section {
  padding-top: clamp(86px, 9vw, 130px);
}

.keys-grid,
.childhood-grid {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.75fr);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.keys-photo,
.childhood-render {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.keys-photo img,
.childhood-render img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.keys-photo img {
  object-position: 57% center;
}

.project-overview .keys-photo img {
  object-position: 50% 54%;
}

.project-overview .keys-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(440px, 0.9fr);
}

.project-overview .circle-copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.keys-photo figcaption,
.childhood-render figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(19, 43, 62, 0.58);
  color: var(--paper);
  font-size: 0.7rem;
  backdrop-filter: blur(8px);
}

.orange-panel {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--paper);
}

.orange-panel::before {
  position: absolute;
  top: -210px;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 3px solid rgba(255, 253, 249, 0.48);
  border-radius: 50%;
  background: rgba(111, 43, 15, 0.66);
  content: "";
  transform: translateX(-50%);
}

.keys-copy,
.childhood-copy {
  display: flex;
  min-height: 640px;
  align-items: flex-end;
  padding: 80px 58px;
}

.circle-copy {
  position: relative;
  z-index: 2;
}

.circle-copy .kicker {
  color: rgba(255, 253, 249, 0.76);
}

.circle-copy h2,
.circle-copy p {
  color: var(--paper);
}

.circle-copy h2 {
  font-size: clamp(3.1rem, 5vw, 5.7rem);
}

.circle-copy p:not(.kicker) {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.84);
  font-size: 1.04rem;
}

.project-stats {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 30px 0 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 253, 249, 0.38);
  border-bottom: 1px solid rgba(255, 253, 249, 0.38);
}

.project-stats span {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 253, 249, 0.28);
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.72rem;
  line-height: 1.35;
}

.project-stats span:last-child {
  border-right: 0;
}

.project-stats strong {
  color: var(--paper);
  font-size: 1.9rem;
  font-weight: 620;
  letter-spacing: -0.05em;
}

.vertical-word {
  position: absolute;
  z-index: 1;
  top: 54%;
  right: -104px;
  color: rgba(255, 253, 249, 0.2);
  font-size: 6.8rem;
  font-weight: 250;
  letter-spacing: 0.15em;
  line-height: 1;
  transform: rotate(-90deg);
}

.apartments-section {
  background: var(--paper);
}

.apartment-title-lockup .eyebrow {
  margin-bottom: 24px;
}

.apartment-measure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.apartment-measure strong {
  color: var(--orange-deep);
  font-size: clamp(4rem, 7.4vw, 7.6rem);
  font-weight: 350;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.apartment-measure span {
  color: var(--muted);
  font-size: 0.92rem;
}

.apartment-title-lockup h2 {
  max-width: 860px;
}

.apartment-feature {
  display: grid;
  min-height: 650px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.65fr);
  border-radius: var(--radius-large);
  background: var(--sand-soft);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.image-button img {
  transition: transform 650ms cubic-bezier(0.2, 0.72, 0.22, 1), opacity 180ms ease;
}

.image-button:hover img {
  transform: scale(1.025);
}

.apartment-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 740;
  backdrop-filter: blur(8px);
}

.apartment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
}

.measure-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.measure-block strong {
  color: var(--orange-deep);
  font-size: clamp(4.2rem, 7vw, 7rem);
  font-weight: 360;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.measure-block span {
  color: var(--muted);
  font-size: 0.92rem;
}

.apartment-copy h3 {
  margin-bottom: 26px;
}

.feature-checks {
  display: grid;
  margin: 0 0 34px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.feature-checks li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.feature-checks li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.apartment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apartment-gallery {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 430px 430px;
  gap: 18px;
}

.render-card {
  border-radius: var(--radius-medium);
}

.render-card-wide {
  grid-row: span 2;
}

.render-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-card img {
  object-fit: contain;
  background: #f7f1e9;
}

.render-card > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 253, 249, 0.3);
  border-radius: 14px;
  background: rgba(19, 43, 62, 0.76);
  color: var(--paper);
  text-align: left;
  backdrop-filter: blur(12px);
}

.render-card strong,
.render-card small {
  display: block;
}

.render-card strong {
  font-size: 1rem;
}

.render-card small {
  color: rgba(255, 253, 249, 0.7);
}

.legal-note {
  margin: 18px 0 0;
  font-size: 0.74rem;
}

.club-hero {
  position: relative;
  min-height: min(860px, 82svh);
  overflow: hidden;
  background: var(--ink);
}

.club-hero > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.club-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 27, 40, 0.82) 0%, rgba(8, 27, 40, 0.46) 44%, rgba(8, 27, 40, 0.03) 78%);
}

.club-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(860px, 82svh);
  flex-direction: column;
  justify-content: center;
}

.club-hero-copy img {
  width: 210px;
  height: auto;
  margin-bottom: 42px;
}

.club-hero-copy h2 {
  max-width: 770px;
  color: var(--paper);
}

.club-hero-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.8);
  font-size: 1.18rem;
}

.club-section {
  background: var(--cream);
}

.club-explorer {
  display: grid;
  height: 720px;
  min-height: 720px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  grid-template-rows: minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.club-preview {
  height: 100%;
  min-height: 0;
  background: var(--sand);
}

.club-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-preview img.is-switching {
  opacity: 0.34;
  transform: scale(1.015);
}

.preview-index,
.preview-caption {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.preview-index {
  top: 24px;
  left: 24px;
  padding: 10px 16px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-caption {
  right: 20px;
  bottom: 18px;
  padding: 7px 12px;
  background: rgba(19, 43, 62, 0.62);
  color: var(--paper);
  font-size: 0.7rem;
}

.club-controls {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px 32px;
}

.club-copy-live {
  min-height: 205px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.club-copy-live h3 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 2.7vw, 3.25rem);
  line-height: 0.96;
}

.club-copy-live p {
  margin-bottom: 0;
}

.amenity-list {
  display: grid;
  margin-top: 10px;
}

.amenity-option {
  display: grid;
  min-height: 55px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 650;
  text-align: left;
  transition: color 180ms ease, transform 180ms ease, padding-left 180ms ease;
}

.amenity-option span {
  color: var(--orange-deep);
  font-size: 0.75rem;
  font-weight: 820;
}

.amenity-option:hover,
.amenity-option:focus-visible,
.amenity-option.is-active {
  padding-left: 10px;
  color: var(--orange-deep);
  transform: translate(6px, -2px);
}

.amenity-option.is-active {
  font-weight: 800;
}

.childhood-section {
  padding-top: 0;
  background: var(--cream);
}

.childhood-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(390px, 0.65fr);
}

.childhood-render img {
  object-position: 46% center;
}

.childhood-copy {
  align-items: flex-start;
  padding-top: 260px;
}

.childhood-copy::before {
  top: -260px;
}

.childhood-copy .circle-copy h2 {
  font-size: clamp(3rem, 4.2vw, 5rem);
}

.childhood-family {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: 42px;
  width: 210px;
  height: 210px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(73, 35, 12, 0.3);
}

.implantation-section {
  background: var(--paper);
}

.implantation-layout {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.45fr);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.implantation-map {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--sand);
}

.implantation-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-hotspot,
.place-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(19, 43, 62, 0.26);
  transform: scale(1);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot.is-active,
.place-pin:hover,
.place-pin:focus-visible,
.place-pin.is-active {
  z-index: 5;
  background: var(--paper);
  color: var(--orange-deep);
  box-shadow: 0 12px 30px rgba(191, 77, 15, 0.35);
  transform: scale(1.28) translateY(-3px);
}

.point-1 { top: 17%; left: 9%; }
.point-2 { top: 29%; left: 11%; }
.point-3 { top: 78%; left: 32%; }
.point-4 { top: 53%; left: 82%; }
.point-5 { top: 66%; left: 82%; }
.point-6 { top: 76%; left: 87%; }
.point-7 { top: 84%; left: 72%; }
.point-8 { top: 35%; left: 82%; }
.point-9 { top: 52%; left: 4%; }

.tower-label {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 94px;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(19, 43, 62, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  color: var(--ink);
  cursor: zoom-in;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(19, 43, 62, 0.12);
  transition: background-color 180ms ease, transform 180ms ease;
}

.tower-label small {
  color: var(--orange-deep);
  font-size: 0.56rem;
  font-weight: 760;
}

.tower-label:hover,
.tower-label:focus-visible {
  background: var(--paper);
  transform: translateY(-4px);
}

.tower-one { top: 54%; left: 25%; }
.tower-two { top: 54%; left: 47%; }
.tower-three { top: 54%; left: 68%; }

.implantation-caption,
.location-map-caption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(19, 43, 62, 0.62);
  color: var(--paper);
  font-size: 0.68rem;
  backdrop-filter: blur(8px);
}

.implantation-panel {
  position: relative;
  padding: 48px 38px;
  background: var(--orange);
}

.implantation-panel::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 3px solid rgba(255, 253, 249, 0.42);
  border-radius: 50%;
  content: "";
}

.implantation-panel h3,
.implantation-panel > p {
  position: relative;
  z-index: 2;
}

.implantation-panel h3 {
  margin-bottom: 10px;
  color: var(--paper);
}

.implantation-panel > p {
  color: rgba(255, 253, 249, 0.8);
}

.implantation-list,
.place-list {
  position: relative;
  z-index: 2;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.implantation-list button,
.place-list button {
  display: grid;
  width: 100%;
  min-height: 49px;
  grid-template-columns: 40px 1fr;
  align-items: center;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.28);
  background: transparent;
  color: rgba(255, 253, 249, 0.82);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, transform 180ms ease;
}

.implantation-list button span,
.place-list button span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.2);
  font-size: 0.74rem;
  font-weight: 820;
}

.implantation-list button:hover,
.implantation-list button:focus-visible,
.implantation-list button.is-active {
  color: var(--paper);
  font-weight: 780;
  transform: translateX(8px);
}

.implantation-list button.is-active span {
  background: var(--paper);
  color: var(--orange-deep);
}

.implantation-panel .text-link {
  position: relative;
  z-index: 2;
  border-color: var(--paper);
  color: var(--paper);
}

.work-section {
  background: var(--sand-soft);
}

.work-heading {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 90px;
}

.work-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.work-intro > p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.work-intro > span {
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.work-intro strong {
  color: var(--ink);
  font-size: 1rem;
}

.work-gallery {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}

.work-photo {
  min-height: 320px;
  border-radius: var(--radius-medium);
}

.work-photo-main {
  grid-row: 1 / 3;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-photo span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.work-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 22px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper);
}

.work-action p {
  max-width: 650px;
  margin-bottom: 0;
}

.location-section {
  background: var(--paper);
}

.location-section .section-heading {
  margin-bottom: 38px;
}

.location-summary {
  max-width: 780px;
  margin: 28px 0 0;
  font-size: 1.04rem;
}

.address-block {
  display: flex;
  flex-direction: column;
  padding: 22px 26px;
  border-left: 5px solid var(--orange);
  background: var(--sand-soft);
}

.address-block strong {
  font-size: 1.18rem;
}

.address-block span {
  color: var(--muted);
}

.location-layout {
  display: grid;
  height: min(720px, calc(100svh - 190px));
  min-height: 620px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  grid-template-rows: minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.location-map {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--sand);
}

.location-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-pin {
  position: absolute;
  z-index: 3;
  top: 40%;
  left: 14%;
  display: grid;
  min-width: 180px;
  padding: 12px 16px 12px 50px;
  border: 2px solid var(--paper);
  border-radius: 14px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(19, 43, 62, 0.32);
  transform: translate(-10%, -50%);
}

.project-pin::after {
  position: absolute;
  bottom: -11px;
  left: 24px;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  background: var(--orange);
  content: "";
  transform: rotate(45deg);
}

.project-pin > span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 16px;
  width: 22px;
  height: 22px;
  border: 6px solid var(--paper);
  border-radius: 50%;
  background: var(--orange-deep);
  transform: translateY(-50%);
}

.project-pin strong,
.project-pin small {
  position: relative;
  z-index: 2;
}

.project-pin strong {
  font-size: 0.86rem;
  letter-spacing: -0.02em;
}

.project-pin small {
  font-size: 0.62rem;
  font-weight: 680;
}

.place-pin {
  width: 34px;
  height: 34px;
}

.place-pin-1 { top: 48%; left: 88%; }
.place-pin-2 { top: 89%; left: 61%; }
.place-pin-3 { top: 63%; left: 89%; }
.place-pin-4 { top: 80%; left: 81%; }
.place-pin-5 { top: 85%; left: 73%; }
.place-pin-6 { top: 33%; left: 25%; }
.place-pin-7 { top: 27%; left: 8%; }
.place-pin-8 { top: 20%; left: 69%; }
.place-pin-9 { top: 22%; left: 19%; }
.place-pin-10 { top: 17%; left: 37%; }

.direction-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 38px 10px 14px;
  border: 2px solid var(--paper);
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(19, 43, 62, 0.3);
  transition: background-color 180ms ease, transform 180ms ease;
}

.direction-pin::after {
  position: absolute;
  top: 50%;
  right: 13px;
  content: "→";
  color: var(--orange);
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.direction-pin span {
  font-size: 0.76rem;
  font-weight: 820;
}

.direction-pin small {
  color: rgba(255, 253, 249, 0.74);
  font-size: 0.58rem;
}

.campolim-pin {
  right: 3%;
  bottom: 6%;
}

.wanel-pin {
  top: 4%;
  left: 36%;
  padding-right: 14px;
  padding-left: 38px;
}

.wanel-pin::after {
  right: auto;
  left: 13px;
  content: "↖";
}

.campolim-pin:hover,
.campolim-pin:focus-visible,
.campolim-pin.is-active,
.wanel-pin:hover,
.wanel-pin:focus-visible,
.wanel-pin.is-active {
  background: var(--orange-deep);
  transform: translateY(-4px);
}

.place-panel {
  padding: 24px 28px;
  background: var(--cream);
}

.place-panel h3 {
  margin-bottom: 10px;
}

.place-list button {
  border-bottom-color: var(--line);
  color: var(--ink-soft);
}

.place-list button span {
  background: var(--sand);
  color: var(--orange-deep);
}

.place-list button:hover,
.place-list button:focus-visible,
.place-list button.is-active {
  color: var(--orange-deep);
  font-weight: 780;
  transform: translateX(8px);
}

.place-list button.is-active span {
  background: var(--orange);
  color: var(--ink);
}

.place-panel .place-list {
  margin: 14px 0 10px;
}

.place-panel .place-list button {
  min-height: 42px;
}

.secondary-places {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.secondary-places button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 680;
}

.secondary-places button span {
  color: var(--orange-deep);
  font-weight: 820;
}

.secondary-places button:hover,
.secondary-places button:focus-visible,
.secondary-places button.is-active {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  color: var(--ink);
}

.route-note {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  font-size: 0.7rem;
  line-height: 1.5;
}

.nearby-gallery {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.nearby-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.nearby-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  image-rendering: auto;
}

.nearby-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 720;
}

.builder-section {
  background: var(--orange);
}

.builder-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.builder-brand,
.builder-proof,
.registration-card {
  border-radius: var(--radius-large);
}

.builder-brand {
  grid-row: span 2;
  padding: clamp(48px, 6vw, 86px);
  background: var(--paper);
}

.builder-brand img {
  width: min(100%, 520px);
  height: auto;
  margin-bottom: 70px;
}

.builder-brand h2 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.builder-brand p {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.builder-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 46px;
  gap: 0;
  background: var(--ink);
}

.builder-proof div {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.builder-proof div:nth-child(2n) {
  border-right: 0;
}

.builder-proof div:nth-child(n + 3) {
  border-bottom: 0;
}

.builder-proof strong {
  color: var(--paper);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  letter-spacing: -0.04em;
}

.builder-proof span {
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.78rem;
}

.builder-proof > p {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  color: rgba(255, 253, 249, 0.54);
  font-size: 0.7rem;
}

.registration-card {
  padding: 42px 46px;
  background: rgba(255, 253, 249, 0.88);
}

.registration-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-deep);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.registration-card > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  letter-spacing: -0.04em;
}

.registration-card > p {
  margin-bottom: 18px;
}

details {
  border-top: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 740;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--orange-deep);
  font-size: 1.4rem;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.details-content {
  padding: 0 0 20px;
}

.details-content p:last-child {
  margin-bottom: 0;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  font-size: clamp(3.5rem, 5.4vw, 6.2rem);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding-block: 26px;
  font-size: 1.08rem;
}

.final-cta {
  position: relative;
  min-height: min(780px, 82svh);
  overflow: hidden;
  background: var(--ink);
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.final-cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 27, 40, 0.84) 0%, rgba(8, 27, 40, 0.52) 42%, rgba(8, 27, 40, 0.05) 76%);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(780px, 82svh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta-copy h2 {
  max-width: 760px;
  color: var(--paper);
}

.final-cta-copy p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.8);
  font-size: 1.1rem;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.45fr 1fr;
  gap: 72px;
}

.footer-brand img {
  width: 170px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-legal p {
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: none;
  width: calc(100% - 32px);
  box-shadow: 0 14px 36px rgba(191, 77, 15, 0.32);
}

.whatsapp-float {
  position: fixed;
  z-index: 89;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #075e54;
  box-shadow: 0 16px 40px rgba(7, 94, 84, 0.3);
  color: #f7fbf9;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover {
  background: #064e46;
  box-shadow: 0 18px 46px rgba(7, 94, 84, 0.38);
  transform: translateY(-2px);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

dialog {
  margin: auto;
  border: 0;
}

dialog::backdrop {
  background: rgba(8, 27, 40, 0.72);
  backdrop-filter: blur(12px);
}

.lead-dialog,
.media-dialog {
  width: min(calc(100% - 34px), 940px);
  max-height: calc(100svh - 34px);
  padding: 0;
  overflow: auto;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 100px rgba(8, 27, 40, 0.36);
}

.lead-dialog {
  width: min(calc(100% - 34px), 780px);
}

.dialog-shell {
  position: relative;
  padding: clamp(32px, 5vw, 62px);
}

.dialog-close {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 740;
}

.dialog-shell > .dialog-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
}

.lead-dialog-heading {
  max-width: 720px;
  padding-right: 72px;
}

.lead-dialog-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.lead-dialog-heading > p:last-child {
  max-width: 620px;
}

.form-progress {
  margin: 34px 0;
}

.form-progress > span {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 780;
}

.progress-line {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sand);
}

.progress-line span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 240ms ease;
}

.form-step h3,
.form-success h3 {
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.field,
.field-grid {
  margin-bottom: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-grid .field {
  margin-bottom: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.time-field {
  min-width: 0;
  padding: 0;
  border: 0;
}

.time-field legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.time-option {
  position: relative;
  cursor: pointer;
}

.time-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.time-option span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(19, 43, 62, 0.28);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.time-option:hover span {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.time-option input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.time-option input:focus-visible + span {
  outline: 3px solid var(--orange-soft);
  outline-offset: 3px;
}

.time-option:active span {
  transform: scale(0.98);
}

.time-options:has(input[aria-invalid="true"]) .time-option span {
  border-color: #a92921;
}

.field label span {
  color: var(--muted);
  font-weight: 520;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(19, 43, 62, 0.28);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.14);
  outline: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #a92921;
}

.field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: #a92921;
  font-size: 0.75rem;
  font-weight: 650;
}

.field-error:empty {
  display: none;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  margin: 24px 0 8px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange-deep);
}

.privacy-details {
  margin-top: 20px;
}

.privacy-details summary {
  font-size: 0.82rem;
}

.privacy-details .details-content p {
  font-size: 0.76rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.form-actions-end {
  justify-content: flex-end;
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 680;
}

.form-success {
  padding: 40px 0 10px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 850;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.media-dialog {
  width: min(calc(100% - 24px), 1500px);
  max-height: calc(100svh - 24px);
  overflow: hidden;
  background: var(--cream);
}

.media-dialog-shell {
  padding: clamp(14px, 2vw, 26px);
}

.media-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.media-dialog-header h2 {
  margin: 2px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  letter-spacing: -0.03em;
}

.media-eyebrow {
  display: block;
  color: var(--orange-deep);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.media-dialog-content {
  --media-ratio: 16 / 9;
  display: flex;
  width: min(100%, calc((100svh - 188px) * var(--media-ratio)));
  height: auto;
  max-height: calc(100svh - 188px);
  aspect-ratio: var(--media-ratio);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink);
}

.media-dialog-content img,
.media-dialog-content video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.55);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 780;
  box-shadow: 0 12px 30px rgba(8, 27, 40, 0.3);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.media-nav:hover,
.media-nav:focus-visible {
  background: var(--orange);
  transform: translateY(-50%) scale(1.06);
}

.media-nav-previous {
  left: 18px;
}

.media-nav-next {
  right: 18px;
}

.media-dialog-footer {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 2px 0;
}

.media-dialog-caption {
  margin: 0;
  font-size: 0.72rem;
}

.media-counter {
  flex: none;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero-vertical,
  .vertical-word {
    display: none;
  }

  .club-explorer,
  .implantation-layout,
  .location-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.65fr);
  }

  .club-controls,
  .implantation-panel,
  .place-panel {
    padding-inline: 28px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .shell,
  .shell-wide {
    width: min(calc(100% - 32px), 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .brand {
    width: 112px;
    height: 56px;
  }

  .brand img {
    width: 100px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 11px 8px;
  }

  .header-cta {
    display: none;
  }

  .hero-stage {
    min-height: 720px;
  }

  .hero-signature {
    top: 34px;
    right: 30px;
    width: 175px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts div {
    min-height: 100px;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:nth-child(2n) {
    border-right: 0;
  }

  .section-heading-split,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .keys-grid,
  .childhood-grid,
  .apartment-feature,
  .club-explorer,
  .implantation-layout,
  .location-layout,
  .builder-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .project-overview .keys-grid {
    grid-template-columns: 1fr;
  }

  .keys-photo,
  .childhood-render,
  .keys-copy,
  .childhood-copy {
    min-height: 560px;
  }

  .apartment-main {
    min-height: 560px;
  }

  .apartment-gallery {
    grid-template-rows: 540px 360px;
  }

  .club-explorer,
  .club-preview {
    height: auto;
  }

  .club-explorer {
    min-height: 0;
    grid-template-rows: auto;
  }

  .club-preview {
    height: 620px;
    min-height: 620px;
  }

  .club-controls {
    padding: 36px;
  }

  .implantation-map,
  .location-map {
    min-height: auto;
    aspect-ratio: 1.5 / 1;
  }

  .location-layout {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
  }

  .implantation-panel,
  .place-panel {
    padding: 42px;
  }

  .implantation-list,
  .place-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
  }

  .work-gallery {
    min-height: 640px;
  }

  .nearby-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .builder-brand {
    grid-row: auto;
  }

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .shell,
  .shell-wide {
    width: min(calc(100% - 24px), 620px);
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 0;
  }

  .hero-stage {
    min-height: max(720px, calc(100svh - 70px));
    border-radius: 0 0 24px 24px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 27, 40, 0.9) 0%, rgba(8, 27, 40, 0.46) 58%, rgba(8, 27, 40, 0.16) 100%),
      linear-gradient(90deg, rgba(8, 27, 40, 0.38), rgba(8, 27, 40, 0.04));
  }

  .hero-signature {
    top: 28px;
    right: auto;
    left: 24px;
    width: 150px;
  }

  .hero-copy {
    right: 24px;
    bottom: 62px;
    left: 24px;
    width: auto;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 11vw, 3.4rem);
    line-height: 0.92;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-inline-link {
    margin: 6px auto 0;
  }

  .hero-caption {
    display: none;
  }

  .hero-facts {
    width: calc(100% - 24px);
  }

  .hero-facts div {
    min-height: 92px;
    padding: 18px;
  }

  .hero-facts strong {
    font-size: 1.12rem;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .keys-grid,
  .childhood-grid {
    border-radius: 24px;
  }

  .keys-photo,
  .childhood-render {
    min-height: 440px;
  }

  .keys-copy,
  .childhood-copy {
    min-height: 520px;
    padding: 230px 30px 48px;
  }

  .keys-copy::before,
  .childhood-copy::before {
    top: -290px;
  }

  .circle-copy h2,
  .childhood-copy .circle-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .apartment-feature {
    border-radius: 24px;
  }

  .apartment-main {
    min-height: 440px;
  }

  .apartment-copy {
    padding: 38px 26px 44px;
  }

  .measure-block strong {
    font-size: 4.8rem;
  }

  .apartment-actions,
  .apartment-actions .button {
    width: 100%;
  }

  .apartment-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 420px);
  }

  .render-card-wide {
    grid-row: auto;
  }

  .render-card > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .club-hero,
  .club-hero-copy {
    min-height: 680px;
  }

  .club-hero > img:first-child {
    object-position: 68% center;
  }

  .club-hero-shade {
    background: linear-gradient(0deg, rgba(8, 27, 40, 0.86) 0%, rgba(8, 27, 40, 0.38) 65%, rgba(8, 27, 40, 0.04) 100%);
  }

  .club-hero-copy {
    justify-content: flex-end;
    padding-bottom: 64px;
  }

  .club-hero-copy img {
    width: 160px;
    margin-bottom: 24px;
  }

  .club-preview {
    height: 430px;
    min-height: 430px;
  }

  .club-controls {
    padding: 30px 24px;
  }

  .club-copy-live {
    min-height: 130px;
  }

  .amenity-option:hover,
  .amenity-option:focus-visible,
  .amenity-option.is-active {
    transform: translateX(4px);
  }

  .childhood-family {
    top: 34px;
    right: 28px;
    width: 180px;
    height: 180px;
  }

  .implantation-map,
  .location-map {
    aspect-ratio: 1 / 1;
  }

  .implantation-map > img {
    object-fit: cover;
  }

  .map-hotspot {
    width: 30px;
    height: 30px;
    border-width: 2px;
    font-size: 0.66rem;
  }

  .tower-label {
    padding: 4px 7px;
    font-size: 0.6rem;
  }

  .implantation-panel,
  .place-panel {
    padding: 34px 24px;
  }

  .implantation-list,
  .place-list {
    grid-template-columns: 1fr;
  }

  .work-gallery {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 440px);
  }

  .work-photo-main {
    grid-row: auto;
  }

  .work-action {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .location-map {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }

  .project-pin {
    min-width: 154px;
    top: 46%;
    padding: 10px 12px 10px 44px;
  }

  .campolim-pin {
    top: 63%;
    right: auto;
    bottom: auto;
    left: 2%;
    transform: scale(0.72);
    transform-origin: left center;
  }

  .wanel-pin {
    top: 3%;
    left: 28%;
    transform: scale(0.76);
    transform-origin: left center;
  }

  .campolim-pin:hover,
  .campolim-pin:focus-visible,
  .campolim-pin.is-active {
    transform: scale(0.76) translateY(-3px);
  }

  .wanel-pin:hover,
  .wanel-pin:focus-visible,
  .wanel-pin.is-active {
    transform: scale(0.8) translateY(-3px);
  }

  .location-map-caption {
    right: auto;
    bottom: 8px;
    left: 10px;
    max-width: 180px;
    font-size: 0.56rem;
  }

  .location-map-caption,
  .implantation-caption {
    right: 8px;
    bottom: 8px;
    max-width: 72%;
    white-space: normal;
  }

  .nearby-gallery {
    grid-template-columns: 1fr;
  }

  .nearby-gallery img {
    height: 210px;
  }

  .builder-brand,
  .builder-proof,
  .registration-card {
    border-radius: 24px;
  }

  .builder-brand {
    padding: 42px 28px;
  }

  .builder-brand img {
    margin-bottom: 54px;
  }

  .builder-proof {
    padding: 26px 20px;
  }

  .builder-proof div {
    min-height: 112px;
    padding: 14px;
  }

  .registration-card {
    padding: 34px 28px;
  }

  .faq-grid {
    gap: 36px;
  }

  .final-cta,
  .final-cta-copy {
    min-height: 700px;
  }

  .final-cta > img {
    object-position: 62% center;
  }

  .final-cta-shade {
    background: linear-gradient(0deg, rgba(8, 27, 40, 0.9) 0%, rgba(8, 27, 40, 0.36) 70%, rgba(8, 27, 40, 0.08) 100%);
  }

  .final-cta-copy {
    justify-content: flex-end;
    padding-bottom: 76px;
  }

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

  .footer-legal {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 82px;
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .dialog-shell {
    padding: 30px 20px;
  }

  .dialog-shell > .dialog-close {
    top: 14px;
    right: 14px;
  }

  .lead-dialog-heading {
    padding-top: 38px;
    padding-right: 0;
  }

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

  .field-grid .field {
    margin-bottom: 0;
  }

  .time-options {
    grid-template-columns: repeat(3, minmax(82px, 1fr));
  }

  .form-actions .button {
    flex: 1;
  }

  .media-dialog-shell {
    padding: 12px;
  }

  .media-dialog-content {
    width: min(100%, calc((100svh - 172px) * var(--media-ratio)));
    max-height: calc(100svh - 172px);
    border-radius: 16px;
  }

  .media-nav {
    width: 42px;
    height: 42px;
  }

  .media-nav-previous {
    left: 8px;
  }

  .media-nav-next {
    right: 8px;
  }
}

@media (max-width: 430px) {
  .hero-facts div {
    padding: 14px;
  }

  .hero-facts span {
    font-size: 0.7rem;
  }

  .keys-photo,
  .childhood-render,
  .apartment-main {
    min-height: 380px;
  }

  .apartment-gallery {
    grid-template-rows: repeat(3, 360px);
  }

  .club-preview {
    height: 360px;
    min-height: 360px;
  }

  .implantation-map {
    aspect-ratio: 0.95 / 1;
  }

  .tower-label {
    min-width: 68px;
    padding: 4px 6px;
    font-size: 0.54rem;
  }

  .tower-label small {
    display: none;
  }

  .location-map {
    min-height: 0;
  }

  .place-pin {
    width: 29px;
    height: 29px;
    font-size: 0.62rem;
  }

  .builder-proof {
    grid-template-columns: 1fr;
  }

  .builder-proof div,
  .builder-proof div:nth-child(2n),
  .builder-proof div:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .builder-proof div:last-of-type {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
