:root {
  --ink: #030a18;
  --ink-2: #07152d;
  --ink-3: #0d2242;
  --paper: #f4f7f8;
  --white: #ffffff;
  --text: #17243a;
  --muted: #6c7789;
  --line: rgba(15, 41, 76, .16);
  --line-light: rgba(255, 255, 255, .16);
  --pink: #e5007e;
  --orange: #ff6a2c;
  --gradient: linear-gradient(110deg, var(--pink), var(--orange));
  --font: Montserrat, "Helvetica Neue", Arial, sans-serif;
  --container: min(1240px, calc(100% - 48px));
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 12, 34, .2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

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

button, input { font: inherit; }

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

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

button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

::selection { background: var(--pink); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 30px;
  background: var(--white);
  color: var(--ink);
  transition: transform .2s;
}

.skip-link:focus { transform: none; }

.container { width: var(--container); margin-inline: auto; }

.section { position: relative; padding: clamp(88px, 10vw, 160px) 0; }

.display-title {
  margin: 0;
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.body-large {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.section-index,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--pink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-index::before {
  width: 35px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(250px, .65fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.section-heading.align-end { align-items: end; }

.section-note {
  align-self: end;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: .96rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s, background .25s;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, .28), transparent 75%);
  content: "";
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(120%); }

.button-primary {
  background: var(--gradient);
  box-shadow: 0 12px 34px rgba(229, 0, 126, .22);
  color: var(--white);
}

.button-whatsapp {
  border-color: #25d366;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .25);
  color: var(--white);
}

.button-whatsapp:hover { border-color: #20bd5a; background: #20bd5a; }

.button-whatsapp img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }

.button-ghost {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(4, 12, 29, .3);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }
.button svg { width: 20px; fill: currentColor; }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(28px, calc((100vw - 1460px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  transition: min-height .35s, background .35s, border-color .35s;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: rgba(255, 255, 255, .08);
  background: rgba(2, 11, 29, .9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(18px);
}

.brand { display: flex; flex-shrink: 0; align-items: center; gap: 11px; }
.brand img { width: 78px; height: auto; filter: brightness(0) invert(1); }
.brand span { font-size: .62rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.55vw, 26px); }

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 11px 0;
  color: rgba(255, 255, 255, .78);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  content: "";
  transition: width .25s;
}

.main-nav > a:hover { color: var(--white); }
.main-nav > a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
}

.nav-cta:hover { border-color: transparent; background: var(--gradient); }

.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 130px max(28px, calc((100vw - 1240px) / 2)) 110px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(1, 8, 24, .95) 0%, rgba(1, 8, 24, .7) 38%, rgba(1, 8, 24, .08) 75%), linear-gradient(0deg, rgba(1, 8, 24, .78), transparent 15%), url("img/og-duo-bg.webp");
  background-position: center right;
  background-size: cover;
  transform: scale(1.03);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 44%, transparent 0 20%, rgba(1, 8, 24, .22) 56%, rgba(1, 8, 24, .58) 100%);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  bottom: -25%;
  left: 12%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 0, 126, .18), transparent 68%);
  filter: blur(30px);
}

.hero-content { width: min(715px, 66vw); }
.hero .eyebrow { color: rgba(255, 255, 255, .72); }
.hero .eyebrow span { display: block; width: 38px; height: 1px; background: var(--gradient); }

.hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-top: 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 600;
}

.hero h1 .stay-stack { display: inline-flex; align-items: center; flex-direction: column; vertical-align: top; }
.hero h1 .hero-airbnb { margin-top: 0; color: #b4b7be; font-size: .34em; font-weight: 400; letter-spacing: .04em; line-height: 1; text-transform: none; -webkit-text-fill-color: #b4b7be; }

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.hero-metrics {
  display: flex;
  width: min(650px, 100%);
  margin: clamp(28px, 4vw, 46px) 0;
  border-block: 1px solid rgba(255, 255, 255, .18);
}

.hero-metrics > div {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero-metrics > div:first-child { padding-left: 0; }
.hero-metrics > div:last-child { border: 0; }
.hero-metrics strong { font-size: clamp(1.55rem, 2.3vw, 2.4rem); font-weight: 500; line-height: 1; white-space: nowrap; }
.hero-metrics span { color: rgba(255, 255, 255, .62); font-size: .67rem; letter-spacing: .09em; line-height: 1.25; text-transform: uppercase; }
.hero-metrics > .hero-area,
.hero-metrics > .hero-price { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
.hero-metrics .metric-kicker { color: rgba(255,255,255,.78); font-size: .56rem; font-weight: 700; letter-spacing: .16em; }
.hero-metrics .metric-line { display: flex; align-items: center; gap: 10px; }
.price-payment { white-space: nowrap; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-location {
  position: absolute;
  right: max(28px, calc((100vw - 1240px) / 2));
  bottom: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: rgba(2, 10, 25, .52);
  color: rgba(255, 255, 255, .68);
  font-size: .69rem;
  line-height: 1.5;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-location svg { width: 26px; fill: none; stroke: var(--orange); stroke-width: 1.5; }
.hero-location strong { color: var(--white); font-weight: 600; }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .58);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue i { position: relative; display: block; width: 48px; height: 1px; overflow: hidden; background: rgba(255,255,255,.24); }
.scroll-cue i::after { position: absolute; inset: 0; background: var(--gradient); content: ""; animation: cue 2.3s infinite ease-in-out; transform: translateX(-100%); }

@keyframes cue { 55%, 100% { transform: translateX(100%); } }

/* Concept */
.concept { overflow: hidden; background: var(--paper); }

.section-orbit {
  position: absolute;
  top: -240px;
  right: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(229, 0, 126, .1);
  border-radius: 50%;
}

.section-orbit::before,
.section-orbit::after { position: absolute; border: 1px solid rgba(255, 106, 44, .1); border-radius: inherit; content: ""; }
.section-orbit::before { inset: 75px; }
.section-orbit::after { inset: 150px; }

.concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.concept-copy > p:not(.section-index) { max-width: 700px; color: var(--muted); }
.concept-copy .body-large { color: var(--text); }

.concept-points { display: grid; margin-top: 52px; border-top: 1px solid var(--line); }

.concept-points article {
  display: grid;
  grid-template-columns: 38px 120px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.concept-points span { color: var(--pink); font-size: .67rem; font-weight: 700; }
.concept-points h3 { margin: 0; font-size: 1rem; font-weight: 600; }
.concept-points p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.45; }

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-card > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.12) saturate(1.08); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .3s; }
.video-card:hover > img { transform: scale(1.04); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,8,24,.58), transparent 58%); }

.play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: var(--white);
  transform: translate(-50%, -50%);
  transition: background .25s, transform .25s;
}

.play-ring::before { position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.22); border-radius: inherit; content: ""; }
.play-ring svg { width: 29px; fill: currentColor; }
.video-card:hover .play-ring { background: rgba(229,0,126,.78); transform: translate(-50%, -50%) scale(1.06); }

.video-label { position: absolute; bottom: 28px; left: 28px; color: var(--white); font-size: .68rem; letter-spacing: .15em; line-height: 1.8; text-align: left; text-transform: uppercase; }
.video-label strong { color: rgba(255,255,255,.54); font-weight: 500; }

/* Innovation */
.innovation { overflow: hidden; background: var(--ink); color: var(--white); }

.innovation::before {
  position: absolute;
  top: -380px;
  left: -300px;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 0, 126, .15), transparent 64%);
  content: "";
}

.innovation .display-title, .section-heading.light .display-title { color: var(--white); }
.innovation .section-note, .section-heading.light .section-note { border-color: var(--line-light); color: rgba(255,255,255,.6); }

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: var(--ink-2);
}

.feature-card-tall { grid-row: 1 / span 2; min-height: 850px; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.feature-card:hover img { transform: scale(1.035); }
.feature-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,8,24,.95), rgba(1,8,24,.05) 65%); }

.feature-expand {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(1,8,24,.58);
  cursor: zoom-in;
  backdrop-filter: blur(10px);
  transition: background .25s, transform .25s;
}

.feature-expand:hover { background: var(--gradient); transform: scale(1.06); }
.feature-expand img { width: 19px; height: 19px; object-fit: contain; filter: brightness(0) invert(1); transform: none !important; }

.feature-copy { position: absolute; bottom: 0; left: 0; width: 100%; padding: clamp(26px, 4vw, 48px); }
.feature-copy > span { display: inline-grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: rgba(255,255,255,.72); font-size: .6rem; }
.feature-copy > p:not(.feature-description) { margin: 18px 0 4px; color: var(--orange); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.feature-copy h3 { margin: 0; font-size: clamp(2.4rem, 4.2vw, 4.8rem); font-weight: 300; letter-spacing: -.05em; line-height: 1; }
.feature-description { max-width: 390px; margin: 16px 0 0; color: rgba(255,255,255,.64); font-size: .85rem; }

.feature-statement {
  display: grid;
  min-height: 418px;
  align-content: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(229,0,126,.12), rgba(255,106,44,.05)), var(--ink-2);
}

.line-icon { width: 58px; margin-bottom: 28px; color: var(--orange); }
.line-icon svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }
.feature-statement > p { max-width: 480px; margin: 0 0 34px; font-size: clamp(1.4rem, 2.2vw, 2.1rem); font-weight: 300; line-height: 1.3; }
.feature-statement .button { width: max-content; min-height: 48px; padding: 12px 20px; font-size: .66rem; }

/* Plans */
.plans { overflow: hidden; background: #edf2f4; }

.plans::after {
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(229,0,126,.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(229,0,126,.025), 0 0 0 140px rgba(255,106,44,.02);
}

.plan-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(2,11,29,.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0,12,34,.08);
}

.plan-meta {
  display: flex;
  flex-direction: column;
  padding: 44px 36px;
  background: var(--ink);
  color: var(--white);
}

.plan-number { font-size: 5rem; font-weight: 300; letter-spacing: -.08em; line-height: 1; }
.plan-number sup { margin-left: 4px; color: var(--orange); font-size: 1.25rem; letter-spacing: 0; }
.plan-meta > p { margin: 8px 0 0; color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.plan-tabs { display: grid; gap: 6px; margin-top: auto; }

.plan-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: none;
  color: rgba(255,255,255,.48);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-align: left;
  text-transform: uppercase;
  transition: color .2s;
}

.plan-tabs button::after { content: "→"; }
.plan-tabs button[aria-selected="true"] { color: var(--orange); }

.plan-visual { position: relative; overflow: hidden; padding: 0; border: 0; background: #eef1f2; cursor: zoom-in; }
.plan-visual > img { width: 100%; height: 100%; object-fit: contain; transition: opacity .25s, transform .6s; }
.plan-visual[data-plan-view="perspectiva"] > img { object-fit: cover; }
.plan-visual[data-plan-view="planta"] > img { object-fit: contain; padding: 24px; }
.plan-visual:hover > img { transform: scale(1.015); }

.expand-label { position: absolute; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 100px; background: rgba(1,8,24,.76); color: var(--white); font-size: .6rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(10px); }
.expand-label img { width: 18px; filter: brightness(0) invert(1); }

.legal-note { position: relative; z-index: 1; margin: 24px 0 0; padding: 24px 28px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.58); color: var(--muted); }
.legal-note h3 { margin: 0 0 12px; color: var(--text); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.legal-note p { margin: 0; font-size: .68rem; line-height: 1.7; }
.legal-note .section-whatsapp { margin-top: 20px; }

/* Amenities */
.amenities { overflow: hidden; background: var(--ink-2); color: var(--white); }

.amenities-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(229,0,126,.16), transparent 34%), linear-gradient(rgba(3,14,34,.92), rgba(3,14,34,.95)), url("img/bg-form-2.webp") center/cover;
}

.amenities .container { position: relative; }

.amenities-tabs { display: flex; gap: 8px; margin-bottom: 34px; }
.amenities-tabs button { min-width: 170px; padding: 13px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(255,255,255,.03); color: rgba(255,255,255,.55); cursor: pointer; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-align: left; text-transform: uppercase; transition: .25s; }
.amenities-tabs button span { display: block; margin-top: 2px; font-size: .55rem; font-weight: 500; opacity: .55; }
.amenities-tabs button[aria-selected="true"] { border-color: transparent; background: var(--gradient); color: var(--white); }

.amenities-layout { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.amenities-map { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.amenities-map img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: opacity .25s; }
.amenities-map p { margin: 0; padding: 12px 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }

.amenities-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 28px; margin: 0; padding: 0; counter-reset: amenity; }
.amenities-list li { display: grid; min-height: 47px; grid-template-columns: 33px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.74); font-size: .7rem; line-height: 1.3; list-style: none; }
.amenities-list li::before { color: var(--orange); content: counter(amenity, decimal-leading-zero); counter-increment: amenity; font-size: .58rem; font-weight: 700; }
.section-cta-row { display: flex; justify-content: center; margin-top: 38px; }

/* Gallery */
.gallery { overflow: hidden; padding-bottom: 110px; background: var(--paper); }
.gallery-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: end; margin-bottom: 60px; }
.gallery-controls { display: flex; align-items: center; gap: 9px; }
.gallery-controls > span { margin-right: 14px; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .1em; }
.gallery-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 1.1rem; transition: background .2s, color .2s, border-color .2s; }
.gallery-controls button:hover { border-color: transparent; background: var(--ink); color: var(--white); }

.gallery-viewport { overflow-x: auto; overflow-y: hidden; padding-bottom: 8px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-viewport::-webkit-scrollbar { display: none; }
.gallery-track { display: flex; gap: 22px; width: max-content; }

.gallery-slide { width: min(72vw, 920px); margin: 0; scroll-snap-align: start; opacity: .52; transition: opacity .4s; }
.gallery-slide.is-active { opacity: 1; }
.gallery-slide > button { position: relative; display: block; width: 100%; overflow: hidden; aspect-ratio: 16 / 9; padding: 0; border: 0; border-radius: var(--radius); background: var(--ink); cursor: zoom-in; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.8,.2,1); }
.gallery-slide button:hover img { transform: scale(1.035); }
.gallery-slide figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 2px 0; color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gallery-slide figcaption small { color: var(--muted); font-size: .55rem; font-weight: 500; letter-spacing: .07em; }

.gallery-progress { width: 100%; height: 2px; margin-top: 42px; overflow: hidden; background: rgba(3,10,24,.1); }
.gallery-progress span { display: block; width: calc(100% / 23); height: 100%; background: var(--gradient); transition: transform .45s; transform-origin: left; }

/* Location */
.location { overflow: hidden; background: var(--ink); color: var(--white); }
.location-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,11,29,.97) 0%, rgba(2,11,29,.92) 45%, rgba(2,11,29,.5) 100%), url("img/bg-localizacoes.webp") center/cover; opacity: .94; }
.location-content { position: relative; display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.location .display-title { color: var(--white); }

.address { margin: 32px 0 36px; color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .08em; line-height: 1.6; text-transform: uppercase; }
.address strong { color: var(--white); }
.distance-list { display: grid; gap: 0; margin: 0; padding: 0; }
.distance-list li { display: grid; grid-template-columns: 95px 1fr; gap: 16px; align-items: center; min-height: 52px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.74); font-size: .75rem; list-style: none; }
.distance-list span { color: var(--orange); font-size: .72rem; font-weight: 700; }
.distance-list small { color: rgba(255,255,255,.42); font-size: .53rem; font-weight: 500; }

.map-card { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.06); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.map-card iframe { display: block; width: 100%; height: 520px; border: 0; filter: saturate(.55) contrast(1.06); }
.map-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 24px; }
.map-footer p { margin: 0; color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.5; }
.map-footer p span { display: block; color: var(--orange); font-size: .56rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.map-footer > div { display: flex; gap: 10px; }
.map-footer a { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; font-size: .57rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.map-footer a img { width: 18px; height: 18px; object-fit: contain; }
.map-footer a[href*="google.com/maps"] img { filter: brightness(0) invert(1); }

/* Contact */
.contact { overflow: hidden; background: #eef2f4; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(238,242,244,.98), rgba(238,242,244,.7)), url("img/decorados-fundo-01.webp") center/cover; opacity: .92; }
.contact-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr); gap: clamp(50px, 9vw, 140px); align-items: center; }
.contact-copy .body-large { max-width: 620px; color: var(--muted); }
.contact-badge { display: flex; align-items: center; gap: 28px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-badge img { width: 175px; }
.contact-badge span { color: var(--muted); font-size: .7rem; font-weight: 600; letter-spacing: .1em; line-height: 1.6; text-transform: uppercase; }

.lead-form { padding: clamp(30px, 4vw, 50px); scroll-margin-top: 90px; border: 1px solid rgba(2,11,29,.08); border-radius: var(--radius); background: rgba(255,255,255,.92); box-shadow: 0 30px 80px rgba(0,12,34,.12); backdrop-filter: blur(15px); }
.form-kicker { margin: 0; color: var(--ink); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; }
.form-intro { margin: 9px 0 30px; color: var(--muted); font-size: .68rem; }
.lead-form > label:not(.check-field) { display: block; margin-bottom: 20px; }
.lead-form > label > span { display: block; margin-bottom: 7px; color: #526075; font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.lead-form input:not([type="checkbox"]) { width: 100%; height: 50px; padding: 0 14px; border: 1px solid rgba(2,11,29,.17); border-radius: 10px; outline: none; background: #f7f9fa; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.lead-form input:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(229,0,126,.08); }
.check-field { display: grid; grid-template-columns: 17px 1fr; gap: 10px; align-items: start; margin: 6px 0 24px; cursor: pointer; }
.check-field input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--pink); }
.check-field span { margin: 0 !important; color: var(--muted) !important; font-size: .63rem !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.45; text-transform: none !important; }
.form-submit { width: 100%; border: 0; }
.form-submit span { font-size: 1rem; }
.form-submit:disabled { cursor: wait; opacity: .72; }
.form-status { min-height: 1.4em; margin: 12px 0 0; color: var(--muted); font-size: .64rem; line-height: 1.4; text-align: center; }
.form-status.is-success { color: #148342; }
.form-status.is-error { color: #b42318; }
.form-privacy { margin: 15px 0 0; color: #8390a0; font-size: .56rem; line-height: 1.45; text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

/* Footer */
.site-footer { padding: 68px 0 34px; background: radial-gradient(circle at 70% 0%, #082a56, var(--ink) 58%); color: var(--white); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer img { width: 105px; }
.footer-logos { display: flex; gap: clamp(35px, 6vw, 80px); align-items: center; }
.footer-logos > div { display: grid; gap: 9px; }
.footer-logos span { color: rgba(255,255,255,.43); font-size: .52rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-logos img { max-width: 160px; max-height: 42px; object-fit: contain; filter: brightness(0) invert(1); opacity: .86; }
.footer-logos img[src$=".png"] { filter: grayscale(1) brightness(3); }

.footer-legal { padding-top: 28px; color: rgba(255,255,255,.4); font-size: .57rem; line-height: 1.65; }
.footer-legal details { max-width: 1040px; }
.footer-legal summary { width: max-content; margin-bottom: 14px; color: rgba(255,255,255,.68); cursor: pointer; font-size: .58rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.footer-legal details p { max-width: 1100px; }
.footer-legal > p { margin: 24px 0 0; }

.floating-cta { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 11px 17px 11px 13px; border: 1px solid #25d366; border-radius: 100px; background: #25d366; box-shadow: 0 12px 40px rgba(18,140,72,.32); color: var(--white); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s, background .25s, border-color .25s; }
.floating-cta img { width: 25px; filter: brightness(0) invert(1); }
.floating-cta:hover { border-color: #20bd5a; background: #20bd5a; transform: translateY(-3px); }

/* Modals */
.media-modal { width: min(1100px, calc(100% - 32px)); max-width: none; max-height: calc(100svh - 32px); overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: var(--ink); box-shadow: 0 40px 120px rgba(0,0,0,.6); color: var(--white); }
.media-modal::backdrop { background: rgba(0,5,16,.86); backdrop-filter: blur(8px); }
.modal-head { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 14px 10px 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.modal-head p { margin: 0; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.modal-close { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; font-size: 1.4rem; font-weight: 200; line-height: 1; }
.video-frame { aspect-ratio: 16 / 9; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.lightbox-modal { width: min(1280px, calc(100% - 32px)); }
.lightbox-modal > img { width: 100%; max-height: calc(100svh - 90px); object-fit: contain; }

/* Reveal */
.reveal { transition: opacity .7s ease, transform .8s cubic-bezier(.22,.8,.22,1); }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); }

@media (max-width: 1080px) {
  .site-header { padding-inline: 24px; }
  .menu-toggle { position: relative; z-index: 3; display: grid; width: 46px; height: 46px; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(2,11,29,.24); cursor: pointer; }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: var(--white); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 2; top: 0; left: 0; display: flex; visibility: hidden; width: 100vw; height: 100vh; height: 100dvh; min-height: 100svh; overflow-y: auto; overscroll-behavior: contain; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; padding: 100px 10vw; background: rgba(2,11,29,.98); opacity: 0; -webkit-overflow-scrolling: touch; transition: opacity .3s, visibility .3s; }
  .main-nav.is-open { visibility: visible; opacity: 1; }
  .main-nav > a:not(.nav-cta) { width: 100%; padding: 9px 0; color: var(--white); font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .main-nav .nav-cta { margin-top: 24px; }
  .hero-location { right: 24px; }
  .concept-layout { grid-template-columns: 1fr .65fr; gap: 45px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-tall { min-height: 720px; }
  .location-content { grid-template-columns: 1fr 1.15fr; gap: 45px; }
  .map-card iframe { height: 460px; }
  .map-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 36px, 680px); --radius: 18px; }
  .section { padding-block: 88px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-note { max-width: 580px; padding-left: 20px; }
  .hero { min-height: 900px; padding-inline: 24px; align-items: start; padding-top: 150px; }
  .hero-bg { background-image: linear-gradient(90deg, rgba(1,8,24,.94), rgba(1,8,24,.48)), linear-gradient(0deg, rgba(1,8,24,.9), transparent 35%), url("img/og-duo-bg.webp"); background-position: 78% center; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(3.3rem, 7vw, 4.5rem); line-height: .95; }
  .hero-location { right: auto; bottom: 58px; left: 24px; }
  .scroll-cue { display: none; }
  .concept-layout { grid-template-columns: 1fr; }
  .video-card { width: min(100%, 560px); aspect-ratio: 16 / 10; justify-self: center; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card, .feature-card-tall { grid-row: auto; min-height: 580px; }
  .feature-card:not(.feature-card-tall) { min-height: 440px; }
  .plan-shell { grid-template-columns: 1fr; }
  .plan-meta { display: grid; grid-template-columns: 1fr auto; min-height: 210px; gap: 6px 25px; }
  .plan-number { grid-row: 1 / span 2; }
  .plan-tabs { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; margin-top: 25px; }
  .plan-visual { min-height: 460px; }
  .amenities-layout { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-top { grid-template-columns: 1fr; }
  .gallery-controls { justify-self: end; }
  .gallery-slide { width: min(82vw, 680px); }
  .location-content { grid-template-columns: 1fr; }
  .map-card iframe { height: 430px; }
  .contact-layout { grid-template-columns: 1fr; }
  .lead-form { width: min(100%, 600px); justify-self: center; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  html { scroll-padding-top: 70px; }
  .section { padding-block: 76px; }
  .site-header { min-height: 70px; padding: 12px 14px; }
  .brand img { width: 66px; }
  .brand span { display: block; font-size: .48rem; letter-spacing: .16em; }
  .brand-footer { justify-content: center; }
  .footer-logos > div { width: 100%; justify-items: center; }
  .footer-logos > div:last-child img { width: 96px; max-width: none; max-height: none; height: auto; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero { min-height: 730px; align-items: center; padding: 90px 14px 48px; }
  .hero-bg { background-color: var(--ink); background-image: linear-gradient(90deg, rgba(1,8,24,.72) 0%, rgba(1,8,24,.32) 48%, transparent 82%), linear-gradient(0deg, rgba(1,8,24,.72) 5%, transparent 55%), url("img/og-duo-bg-mb.webp"); background-position: 65% center; background-size: auto 100%; background-repeat: no-repeat; transform: scale(1.01); }
  .hero-bg::after { background: linear-gradient(90deg, rgba(1,8,24,.1), transparent 58%); }
  .hero-content { width: min(76%, 310px); margin-right: auto; }
  .hero .eyebrow { gap: 8px; font-size: .6rem; letter-spacing: .14em; white-space: nowrap; }
  .hero .eyebrow span { width: 24px; flex: 0 0 24px; }
  .hero h1 { font-size: 2rem; line-height: 1.1; }
  .hero-lead { display: none; }
  .hero-metrics { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-metrics > div { padding: 14px 10px; }
  .hero-metrics > div:first-child { padding-left: 0; }
  .hero-metrics > div:nth-child(2) { padding-inline: 4px; border-right: 0; }
  .hero-metrics > div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.18); }
  .hero-metrics strong { font-size: 1.65rem; }
  .hero-metrics .metric-line { gap: 6px; }
  .hero-metrics .price-payment { display: inline-block; margin-top: 3px; padding: 2px 4px; border-radius: 4px; background: rgba(1,8,24,.72); box-shadow: 0 3px 12px rgba(0,0,0,.28); color: var(--white); line-height: 1.15; white-space: nowrap; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-location { display: none; }
  .display-title { font-size: clamp(2.25rem, 5vw, 3rem); line-height: 1.1; }
  .section-heading { margin-bottom: 45px; }
  .concept-points article { grid-template-columns: 30px 95px 1fr; gap: 10px; }
  .concept-points p { font-size: .72rem; }
  .video-card { aspect-ratio: 4 / 5; }
  .feature-card, .feature-card-tall, .feature-card:not(.feature-card-tall) { min-height: 520px; }
  .feature-statement { min-height: 340px; }
  .plan-shell { min-height: 0; }
  .plan-meta { grid-template-columns: 1fr; min-height: 265px; padding: 30px 24px; }
  .plan-number { grid-row: auto; font-size: 4.4rem; }
  .plan-tabs { grid-column: auto; }
  .plan-visual { min-height: 340px; }
  .amenities-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .amenities-tabs button { min-width: 0; padding: 12px 14px; }
  .amenities-list { grid-template-columns: 1fr; }
  .gallery-top { margin-bottom: 38px; }
  .gallery-controls { width: 100%; justify-content: space-between; }
  .gallery-controls > span { margin-right: auto; }
  .gallery-slide { width: calc(100vw - 44px); }
  .gallery-slide figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .distance-list li { grid-template-columns: 82px 1fr; }
  .map-card iframe { height: 330px; }
  .map-footer { padding: 18px; }
  .map-footer > div { width: 100%; flex-direction: column; }
  .map-footer a { justify-content: center; }
  .contact-badge { align-items: flex-start; flex-direction: column; }
  .lead-form { padding: 28px 20px; }
  .footer-top { align-items: center; flex-direction: column; text-align: center; }
  .footer-logos { width: 100%; align-items: center; flex-direction: column; }
  .floating-cta { right: 14px; bottom: 14px; width: 52px; height: 52px; justify-content: center; padding: 0; }
  .floating-cta span { display: none; }
  .floating-cta img { width: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal:not(.is-visible) { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button-primary, .amenities-tabs button[aria-selected="true"] { border: 1px solid ButtonText; }
}
