/* =================================================================
   S2 SmartSave Real Estate FII — LP single-page
   Tema: navy profundo + dourado · alterna fundos claros/escuros
   ================================================================= */

:root {
  /* Navy / escuros */
  --navy: #0a1a2f;
  --navy-2: #0d2138;
  --navy-3: #13304f;
  --navy-card: #112942;
  --navy-line: rgba(201, 162, 75, 0.22);
  --navy-line-soft: rgba(255, 255, 255, 0.1);

  /* Dourado */
  --gold: #c9a24b;
  --gold-2: #d8b25e;
  --gold-soft: rgba(201, 162, 75, 0.14);

  /* Claros */
  --paper: #f6f4ef;
  --paper-2: #efece4;
  --white: #ffffff;
  --line-dark: rgba(10, 26, 47, 0.12);

  /* Texto */
  --text-on-dark: #eef2f7;
  --muted-on-dark: #a9b6c6;
  --text-on-light: #16263b;
  --muted-on-light: #5a6b7e;

  /* Sistema */
  --shadow: 0 28px 70px rgba(4, 12, 24, 0.4);
  --shadow-soft: 0 20px 50px rgba(10, 26, 47, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--navy);
  color: var(--text-on-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

h1 {
  margin-bottom: 22px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.95rem, 6.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}

.accent {
  color: var(--gold);
}

.ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

/* ---------------- Layout utilitários ---------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: clamp(64px, 8vw, 116px);
}

.tone-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.tone-dark .kicker {
  color: var(--gold);
}

.tone-light {
  background: var(--paper);
  color: var(--text-on-light);
}

.tone-light-2 {
  background: var(--paper-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--muted-on-light);
}

.tone-dark .section-heading p {
  color: var(--muted-on-dark);
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6d2c;
}

.tone-light .kicker {
  color: #8a6d2c;
}

/* ---------------- Botões ---------------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #2a1e05;
  box-shadow: 0 14px 30px rgba(201, 162, 75, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(201, 162, 75, 0.38);
}

.button-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.tone-light .button-ghost {
  color: var(--text-on-light);
  border-color: var(--line-dark);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(10, 26, 47, 0.3);
}

.button-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(10, 26, 47, 0.42);
}

/* ================================================================
   Header
   ================================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(20px, 5vw, 48px);
  background: rgba(8, 20, 36, 0.72);
  border-bottom: 1px solid var(--navy-line-soft);
  backdrop-filter: blur(16px);
  transition: padding 0.2s ease, background 0.2s ease;
}

.site-header.is-compact {
  padding-block: 10px;
  background: rgba(8, 20, 36, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.brand-s2 {
  flex-shrink: 0;
}

.brand-s2 img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 30px;
  font-size: 0.92rem;
  color: var(--text-on-dark);
}

.desktop-nav a {
  position: relative;
  padding-block: 4px;
  color: rgba(238, 242, 247, 0.82);
  transition: color 0.18s ease;
}

.desktop-nav a:hover {
  color: var(--gold-2);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #2a1e05;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(201, 162, 75, 0.34);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--navy-line-soft);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  height: 2px;
  background: var(--gold-2);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 auto;
  z-index: 45;
  flex-direction: column;
  gap: 4px;
  padding: 16px clamp(20px, 5vw, 48px) 24px;
  background: rgba(8, 20, 36, 0.98);
  border-bottom: 1px solid var(--navy-line);
  backdrop-filter: blur(16px);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--navy-line-soft);
  color: var(--text-on-dark);
}

.mobile-nav .mobile-portal {
  color: var(--muted-on-dark);
}

.mobile-nav .mobile-cta {
  margin-top: 12px;
  padding: 13px;
  border: none;
  border-radius: 6px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #2a1e05;
  font-weight: 600;
}

/* ================================================================
   Bloco 2 · Hero (fachada full-bleed)
   ================================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-block: 140px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 18, 33, 0.96) 0%, rgba(8, 18, 33, 0.82) 38%, rgba(8, 18, 33, 0.45) 72%, rgba(8, 18, 33, 0.6) 100%),
    linear-gradient(0deg, rgba(8, 18, 33, 0.85) 0%, transparent 40%);
}

.hero-bg.no-img {
  background: radial-gradient(120% 120% at 80% 10%, #16365a 0%, var(--navy) 60%);
}

.hero-bg.no-img img {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--navy-line);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero-copy p {
  max-width: 540px;
  font-size: 1.12rem;
  color: rgba(238, 242, 247, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-badge {
  position: absolute;
  right: clamp(16px, 4vw, 40px);
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--muted-on-dark);
  background: rgba(8, 18, 33, 0.55);
  border: 1px solid var(--navy-line-soft);
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-badge .ico {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--gold-2);
}

.hero-badge strong {
  font-weight: 600;
  color: var(--white);
}

/* ================================================================
   Bloco 3 · Parceria
   ================================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 16px 22px;
  background: var(--navy);
  border-radius: var(--radius);
}

.partner-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.partner-card p {
  flex: 1;
  font-size: 0.98rem;
  color: var(--muted-on-light);
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #8a6d2c;
}

.partner-link:hover {
  color: var(--gold);
}

/* ================================================================
   Bloco 4 · O que é (about)
   ================================================================ */
.about-section .section-heading {
  max-width: 820px;
}

.about-text {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  max-width: 980px;
}

.about-copy p {
  margin-bottom: 0;
  font-size: 1.02rem;
  color: var(--muted-on-light);
}

.about-lead {
  margin-bottom: 18px !important;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem) !important;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-on-light) !important;
}

.about-kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.kpi-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6d2c;
}

.about-kpi strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-on-light);
}

.kpi-foot {
  font-size: 0.82rem;
  color: var(--muted-on-light);
}

/* ================================================================
   Bloco 5 · Fluxograma
   ================================================================ */
.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.flow-node {
  flex: 1 1 150px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 16px;
  text-align: center;
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
}

.flow-ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-2);
}

.flow-ico svg {
  width: 28px;
  height: 28px;
}

.flow-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
}

.flow-arrow svg {
  width: 26px;
  height: 26px;
}

.flow-text {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--muted-on-dark);
}

/* ================================================================
   Estudo de caso
   ================================================================ */
.cycle-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  counter-reset: cycle;
}

.cycle-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cycle-steps li span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-on-light);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
}

.cycle-steps li span::before {
  counter-increment: cycle;
  content: counter(cycle);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 0.78rem;
  color: var(--gold-2);
  background: var(--gold-soft);
  border-radius: 50%;
}

.cycle-steps li:not(:last-child)::after {
  content: "→";
  color: var(--gold);
  font-weight: 400;
}

.case-lead {
  max-width: 760px;
  margin-top: -8px;
  margin-bottom: 28px;
  font-size: 1.05rem;
  color: var(--muted-on-light);
}

.case-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.case-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.case-card.is-highlight {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--text-on-dark);
}

.case-ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 13px;
  background: var(--gold-soft);
  color: #8a6d2c;
}

.case-card.is-highlight .case-ico {
  color: var(--gold-2);
}

.case-ico svg {
  width: 26px;
  height: 26px;
}

.case-desc {
  margin-bottom: 18px;
  color: var(--muted-on-light);
}

.case-card.is-highlight .case-desc {
  color: var(--muted-on-dark);
}

.case-figure {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.case-range {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
}

.case-card:not(.is-highlight) .case-range {
  color: #16263b;
}

.case-profit {
  font-size: 0.95rem;
  color: var(--muted-on-light);
}

.case-card.is-highlight .case-profit {
  color: var(--muted-on-dark);
}

.case-bar {
  height: 8px;
  border-radius: 100px;
  background: rgba(10, 26, 47, 0.08);
  overflow: hidden;
}

.case-card.is-highlight .case-bar {
  background: rgba(255, 255, 255, 0.12);
}

.case-bar span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.case-disclaimer {
  margin-bottom: 0;
  padding: 20px 24px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5a4a28;
  background: #fbf3df;
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.case-disclaimer strong {
  color: #4a3a16;
}

/* ================================================================
   Cards de feature reutilizáveis (blocos 7, 8, 14)
   ================================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.tone-dark .feature-card {
  background: var(--navy-card);
  border-color: var(--navy-line);
}

.feature-ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: #8a6d2c;
}

.tone-dark .feature-ico {
  color: var(--gold-2);
}

.feature-ico svg {
  width: 28px;
  height: 28px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted-on-light);
}

.tone-dark .feature-card p {
  color: var(--muted-on-dark);
}

/* ================================================================
   Bloco 8 · CTA banner
   ================================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-2), var(--navy-3));
  border-block: 1px solid var(--navy-line);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: clamp(48px, 6vw, 76px);
}

.cta-banner-copy {
  max-width: 640px;
}

.cta-banner-copy h2 {
  margin-bottom: 8px;
}

.cta-banner-copy p {
  margin-bottom: 0;
  color: var(--muted-on-dark);
}

.cta-banner-button {
  flex: none;
}

.cta-banner-actions {
  flex: none;
}

/* Banner dourado intermediário (Ocean Front) */
.cta-banner-gold {
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  border-block: none;
}

.cta-banner-gold .cta-banner-copy h2 {
  color: #2a1e05;
}

.cta-banner-gold .cta-banner-copy p {
  color: rgba(42, 30, 5, 0.78);
}

/* ================================================================
   Bloco 9 · Hero Ocean Front
   ================================================================ */
.ocean-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.ocean-hero-sub {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-on-light);
}

.ocean-hero-copy p {
  color: var(--muted-on-light);
}

.ocean-hero-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(620px, 82vh, 820px);
  padding-block: clamp(150px, 18vw, 220px) clamp(48px, 8vw, 76px);
  overflow: hidden;
}

.ocean-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ocean-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ocean-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 33, 0.86), rgba(8, 18, 33, 0.5) 48%, rgba(8, 18, 33, 0.18)),
    linear-gradient(180deg, rgba(8, 18, 33, 0.24), rgba(8, 18, 33, 0.7));
}

.ocean-hero-feature .container {
  position: relative;
  z-index: 1;
}

.ocean-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr);
  gap: 24px;
  max-width: 720px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.ocean-hero-feature h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
}

.ocean-hero-feature .ocean-hero-copy p {
  color: var(--muted-on-dark);
}

.ocean-hero-feature .ocean-hero-sub {
  max-width: 540px;
  margin-bottom: 0;
  font-size: 1.12rem;
  color: var(--text-on-dark);
}

.ocean-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* figura genérica (Ocean) */
.of-shot {
  position: relative;
  margin: 0;
  background: var(--navy-3);
}

.of-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.of-shot.no-img {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.of-shot.no-img img {
  display: none;
}

.of-shot.no-img::after {
  content: attr(data-label);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-on-dark);
}

/* ================================================================
   Bloco 10 · Números do projeto
   ================================================================ */
.vgv-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  padding: 30px;
  text-align: center;
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
}

.vgv-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.vgv-asterisk {
  color: var(--gold-2);
}

.vgv-value {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
}

.of-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.of-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 18px;
  text-align: center;
  background: var(--white);
}

.of-stat strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.75rem, 1.55rem + 0.9vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text-on-light);
}

.of-unit {
  font-size: 0.6em;
  margin-left: 3px;
  color: var(--muted-on-light);
}

.of-stat>span {
  font-size: 0.82rem;
  color: var(--muted-on-light);
}

.vgv-note {
  margin: 22px 0 0;
  font-size: 0.84rem;
  color: var(--muted-on-light);
}

/* Seção de números em fundo escuro (tone-dark) */
.numbers-section.tone-dark .vgv-highlight {
  background: var(--navy-card);
}

.numbers-section.tone-dark .of-stats {
  background: var(--navy-line);
  border-color: var(--navy-line);
}

.numbers-section.tone-dark .of-stat {
  background: #e3e8ef;
}

.numbers-section.tone-dark .vgv-note {
  color: var(--muted-on-dark);
}

/* ================================================================
   Bloco 11 · Áreas comuns
   ================================================================ */
.amenity-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.amenity-card {
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
}

.amenity-media {
  aspect-ratio: 4 / 3;
}

.amenity-card h3,
.amenity-card p,
.amenity-card .amenity-kicker {
  margin-inline: 22px;
}

.amenity-card .amenity-kicker {
  display: block;
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.amenity-card h3 {
  color: var(--text-on-dark);
}

.amenity-card p {
  margin-bottom: 24px;
  color: var(--muted-on-dark);
}

.amenity-split {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.amenity-list-wrap {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3.4vw, 36px);
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
}

.amenity-list-main {
  flex: 1 1 auto;
  min-width: 0;
}

.amenity-side {
  flex: 0 0 clamp(140px, 22%, 220px);
  align-self: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--navy-line);
}

.amenity-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy-3);
}

.amenity-list-wrap h3 {
  margin-bottom: 18px;
  color: var(--text-on-dark);
}

.amenity-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.amenity-list li {
  padding-left: 4px;
  color: var(--muted-on-dark);
}

.amenity-list li::marker {
  color: var(--gold);
}

.amenity-list strong {
  color: var(--text-on-dark);
}

/* ================================================================
   Bloco 12 · Tipologias
   ================================================================ */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.floorplan-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.floorplan-media {
  aspect-ratio: 1.18 / 1;
  background: var(--white);
}

.floorplan-media img {
  object-fit: contain;
  background: var(--white);
}

.floorplan-copy {
  padding: 24px;
}

.floorplan-copy h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--text-on-light);
}

.floorplan-copy p {
  color: var(--muted-on-light);
}

.floorplan-meta {
  margin-bottom: 16px;
  font-size: 1.03rem;
  color: var(--text-on-light);
}

.floorplan-card-cta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.floorplan-card-cta .floorplan-media {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}

.floorplan-button {
  margin-top: 10px;
}

.asset-note {
  margin: 22px 0 0;
  font-size: 0.95rem;
  color: var(--muted-on-light);
}

/* ================================================================
   Bloco 14 · Localização
   ================================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.location-media {
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.location-zoom {
  position: relative;
  display: block;
  height: 100%;
}

.location-zoom .zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(8, 18, 33, 0.62);
  border: 1px solid var(--navy-line-soft);
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.location-zoom .zoom-hint .ico {
  width: 16px;
  height: 16px;
}

.location-copy p {
  color: var(--muted-on-light);
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.location-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-on-light);
}

.location-highlights .ico {
  color: var(--gold);
  width: 20px;
  height: 20px;
}

/* ================================================================
   Bloco 16 · Mercado
   ================================================================ */
.market-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 56px);
}

.market-copy p {
  color: var(--muted-on-light);
}

.market-kpi {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 38px 32px;
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-line);
}

.market-kpi-value {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
}

.market-kpi-label {
  font-size: 0.98rem;
  color: var(--text-on-dark);
}

.market-kpi-source {
  font-size: 0.82rem;
  color: var(--muted-on-dark);
}

/* ================================================================
   Bloco 17 · CTA Ocean + disclaimer
   ================================================================ */
.broker-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 56px);
}

.broker-copy h2 {
  margin-bottom: 12px;
}

.broker-copy p {
  margin-bottom: 26px;
  color: var(--muted-on-dark);
}

.broker-note {
  padding: 26px 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.broker-note-title {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.broker-note p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--muted-on-dark);
}

/* ================================================================
   Bloco 18 · Downloads
   ================================================================ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(10, 26, 47, 0.16);
}

.download-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 13px;
  background: var(--gold-soft);
  color: #8a6d2c;
}

.download-icon svg {
  width: 26px;
  height: 26px;
}

.download-card strong {
  font-size: 1.05rem;
}

.download-desc {
  font-size: 0.92rem;
  color: var(--muted-on-light);
}

.download-action {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #8a6d2c;
}

/* ================================================================
   Bloco 19 · FAQ
   ================================================================ */
.faq-panel {
  max-width: 820px;
  margin-inline: auto;
}

.faq-panel details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  color: var(--text-on-light);
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-panel details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-panel p {
  margin: 0;
  padding: 0 4px 24px;
  color: var(--muted-on-light);
}

/* ================================================================
   Bloco 20 · Formulário
   ================================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.form-copy h2 {
  margin-bottom: 18px;
}

.form-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.form-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-on-light);
}

.form-copy .ico {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex: none;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-light);
}

.label-head {
  display: inline-flex;
  gap: 6px;
}

.label-optional {
  font-weight: 400;
  color: var(--muted-on-light);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--text-on-light);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.cf-turnstile {
  max-width: 100%;
  min-width: 0;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.lead-form .button {
  justify-content: center;
}

.privacy-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-on-light);
}

.privacy-note a {
  color: #8a6d2c;
  text-decoration: underline;
}

.success-message {
  display: grid;
  gap: 6px;
  padding: 20px;
  text-align: center;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.success-message strong {
  font-size: 1.1rem;
  color: var(--text-on-light);
}

.success-message p {
  margin: 0;
  color: var(--muted-on-light);
}

/* ================================================================
   Rodapé
   ================================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-line);
  padding-block: 56px 40px;
  color: var(--muted-on-dark);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--navy-line-soft);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 360px;
}

.footer-brand img {
  height: 46px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
}

.footer-brand span {
  font-size: 0.86rem;
}

.footer-meta {
  display: grid;
  gap: 4px;
  font-size: 0.86rem;
}

.footer-meta strong {
  color: var(--text-on-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-meta strong:not(:first-child) {
  margin-top: 8px;
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.footer-legal-text {
  max-width: 820px;
}

.footer-credential {
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

.footer-credential a,
.footer-copyright a {
  color: var(--gold-2);
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted-on-dark);
}

.footer-copyright {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.footer-seal {
  flex: none;
  max-width: 140px;
  height: auto;
}

/* ================================================================
   Responsivo
   ================================================================ */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

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

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

  .floorplan-card-cta {
    grid-column: 1 / -1;
  }

  .of-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 760px) {

  .partners-grid,
  .about-text,
  .case-compare,
  .feature-grid,
  .feature-grid-3,
  .amenity-gallery,
  .amenity-split,
  .floorplan-grid,
  .floorplan-card-cta,
  .download-grid,
  .flow-text,
  .ocean-hero-panel,
  .ocean-hero-grid,
  .location-grid,
  .market-grid,
  .broker-grid,
  .form-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .ocean-hero-panel {
    padding: 0;
  }

  .ocean-hero-actions {
    justify-content: flex-start;
  }

  .ocean-hero-feature {
    min-height: 640px;
    padding-block: 132px 42px;
  }

  .ocean-hero-bg img {
    object-position: center;
  }

  .floorplan-card-cta .floorplan-media {
    min-height: 0;
  }

  .amenity-list-wrap {
    flex-direction: column;
  }

  .amenity-side {
    flex-basis: auto;
    aspect-ratio: 16 / 9;
  }

  .location-media {
    order: -1;
  }

  .hero {
    min-height: auto;
    padding-block: 120px 60px;
  }

  .hero-badge {
    display: none;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-diagram {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 28px;
  }

  .flow-node {
    flex: 0 0 auto;
    flex-direction: row;
    max-width: none;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 16px 16px;
  }

  .flow-ico {
    width: 44px;
    height: 44px;
  }

  .flow-ico svg {
    width: 22px;
    height: 22px;
  }

  .flow-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }

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

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

  /* Localização: mostrar a imagem inteira (sem crop) no celular */
  .location-media {
    min-height: 0;
    height: auto;
  }

  .location-zoom,
  .location-media img {
    height: auto;
  }

  .location-media img {
    object-fit: contain;
  }

  /* Formulário: encaixar tudo dentro da tela */
  .lead-form {
    padding: 22px 16px;
  }

  .form-copy ul {
    gap: 12px;
  }

  .form-copy li {
    align-items: flex-start;
  }

  .form-copy .ico {
    margin-top: 3px;
  }
}
