:root {
  --navy:  #0E1C2B;
  --gold:  #BE9F62;
  --cream: #F7F3EC;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--navy);
  min-height: 100vh;
}

/* Grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .38;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Utilities */
.gold-line { display: block; width: 48px; height: 1px; background: var(--gold); margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.bezel { border: 1px solid rgba(190,159,98,.3); box-shadow: inset 0 0 0 4px rgba(190,159,98,.06); }

/* ── NAV ───────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,28,43,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(190,159,98,.15);
  padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
#nav .logo { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.15rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
#nav .logo span { display: block; font-family: 'Jost', sans-serif; font-size: .62rem; letter-spacing: .18em; color: rgba(247,243,236,.45); text-transform: uppercase; margin-top: 1px; }
#nav-links { display: flex; align-items: center; gap: 2rem; }
#nav-links a { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,243,236,.7); transition: color .2s; }
#nav-links a:hover, #nav-links a.active { color: var(--gold); }
#nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-select { background: transparent; border: 1px solid rgba(190,159,98,.35); color: var(--gold); font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: .1em; padding: .35rem .6rem; cursor: pointer; }
.lang-select option { background: var(--navy); color: var(--cream); }
.lang-switch { display: flex; align-items: center; gap: .45rem; font-size: .68rem; letter-spacing: .12em; }
.lang-switch a { color: rgba(247,243,236,.5); transition: color .2s; }
.lang-switch a:hover { color: var(--cream); }
.lang-switch a.active { color: var(--gold); }
.lang-switch span { color: rgba(247,243,236,.25); }
.btn-wa-nav {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy);
  padding: .5rem 1.1rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap; transition: opacity .2s;
}
.btn-wa-nav:hover { opacity: .85; }
#nav-hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--cream); }

/* Mobile / tablet nav (8 itens → hamburger até 1024px para evitar overflow) */
@media (max-width: 1024px) {
  #nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid rgba(190,159,98,.2); }
  #nav-links.open { display: flex; }
  #nav-hamburger { display: block; }
  .btn-wa-nav { display: none; }
}

/* ── HERO ──────────────────────────────────── */
.page-hero {
  position: relative; height: 100svh; min-height: 560px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(14,28,43,.75) 0%, rgba(14,28,43,.4) 50%, rgba(14,28,43,.85) 100%);
}
.page-hero .hero-content { position: relative; z-index: 2; padding: 6rem 2rem 4rem; max-width: 900px; margin: 0 auto; width: 100%; text-align: center; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero p.sub { color: rgba(247,243,236,.7); font-size: 1rem; margin-top: 1.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.page-hero .price { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; margin-top: 1rem; }
.page-hero .tag { display: inline-block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

/* ── SECTIONS ──────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title .tag { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.section-title .gold-line { margin-top: 1.2rem; }

.section--dark { background: var(--navy); color: var(--cream); }
.section--dark .gold-line { background: rgba(190,159,98,.5); }

/* ── CARDS ─────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card { overflow: hidden; }
.card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.card:hover img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-tag { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: .6rem; }
.card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); font-weight: 300; margin-bottom: 1rem; }
.card-specs { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .75rem; opacity: .65; margin-bottom: 1.2rem; }
.card-specs span::before { content: '· '; }
.card-specs span:first-child::before { content: ''; }
.btn { display: inline-block; padding: .75rem 2rem; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; transition: all .2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { opacity: .85; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-cream { border: 1px solid rgba(247,243,236,.4); color: var(--cream); background: transparent; }
.btn-outline-cream:hover { border-color: var(--gold); color: var(--gold); }

/* ── FEATURE GRID ──────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.feature { padding: 2rem; }
.feature-icon { color: var(--gold); margin-bottom: 1rem; }
.feature-icon svg { width: 2rem; height: 2rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.feature p { font-size: .85rem; line-height: 1.7; opacity: .7; }

/* ── FORM ──────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-input {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid rgba(14,28,43,.2); background: white;
  font-family: 'Jost', sans-serif; font-size: .9rem; color: var(--navy);
  outline: none; transition: border-color .2s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(14,28,43,.4); }
.form-input--dark { background: rgba(255,255,255,.06); border-color: rgba(190,159,98,.25); color: var(--cream); }
.form-input--dark::placeholder { color: rgba(247,243,236,.35); }
.form-input--dark:focus { border-color: var(--gold); }

/* ── FOOTER ────────────────────────────────── */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(190,159,98,.2);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--cream);
}
#footer .logo { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.3rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .3rem; }
#footer .sub { font-size: .72rem; opacity: .4; letter-spacing: .1em; }
#footer .links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 1.5rem 0; }
#footer .links a { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .5; transition: opacity .2s; }
#footer .links a:hover { opacity: 1; color: var(--gold); }
#footer .copy { font-size: .68rem; opacity: .25; margin-top: 1rem; }

/* ── FLOATING WA ───────────────────────────── */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  background: #25D366; color: #fff; border-radius: 50%;
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa { 0%,100%{ box-shadow:0 4px 18px rgba(37,211,102,.4); } 50%{ box-shadow:0 4px 28px rgba(37,211,102,.7); } }
#wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── SOBRE PAGE ────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 2rem; } }
.about-split img { width: 100%; height: 420px; object-fit: cover; }
.about-split .text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.2rem; }
.about-split .text p { font-size: .9rem; line-height: 1.8; opacity: .75; margin-bottom: 1rem; }
.zonas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.zona { padding: 2rem; }
.zona h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }
.zona p { font-size: .85rem; line-height: 1.7; opacity: .7; }

/* ── CONTACTO PAGE ─────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item svg { flex-shrink: 0; color: var(--gold); width: 1.3rem; height: 1.3rem; margin-top: .1rem; }
.contact-item .label { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .5; margin-bottom: .2rem; }
.contact-item .val { font-size: .9rem; }

/* ── IMOVEIS PAGE ──────────────────────────── */
.imovel-hero { position: relative; overflow: hidden; }
.imovel-hero img { width: 100%; height: 460px; object-fit: cover; transition: transform .5s; }
.imovel-hero:hover img { transform: scale(1.03); }
.imovel-hero .badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold); color: var(--navy);
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem .9rem; font-weight: 500;
}
.imovel-body { padding: 2rem; }
.imovel-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: .5rem; }
.imovel-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold); font-weight: 300; margin: .5rem 0 1rem; }
.imovel-specs { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; font-size: .78rem; opacity: .65; margin-bottom: 1.5rem; }
.imovel-desc { font-size: .88rem; line-height: 1.75; opacity: .75; margin-bottom: 1.5rem; }
.btn-group { display: flex; gap: .75rem; flex-wrap: wrap; }

@media (max-width: 640px) { .imovel-hero img { height: 280px; } }

/* ════════════════════════════════════════════
   PREMIUM EDITORIAL — v2 (reposicionamento)
   ════════════════════════════════════════════ */

/* Paleta estendida: areia/branco quente */
:root { --sand: #EFE9DD; --line: rgba(14,28,43,.1); }

/* Respiração geral */
.section { padding: 6.5rem 2rem; }
@media (max-width: 640px) { .section { padding: 4rem 1.25rem; } }
.section-inner { max-width: 1180px; }
.section-title { margin-bottom: 4rem; }
.section-title h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -.01em; }

/* Hero mais limpo / editorial */
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); letter-spacing: -.015em; line-height: 1.06; }
.page-hero .hero-content { max-width: 1000px; }
.page-hero p.sub { font-size: 1.05rem; max-width: 640px; line-height: 1.7; }
.page-hero .micro {
  margin-top: 1.6rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247,243,236,.6);
}
.page-hero .overlay { background: linear-gradient(to bottom, rgba(14,28,43,.55) 0%, rgba(14,28,43,.45) 40%, rgba(14,28,43,.72) 100%); }

/* Botões — contraste premium, menos agressivo */
.btn { padding: .9rem 2.2rem; font-size: .74rem; letter-spacing: .16em; border-radius: 1px; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 6px 24px rgba(190,159,98,.22); }
.btn-gold:hover { opacity: .92; transform: translateY(-1px); }
.btn-ghost { background: rgba(247,243,236,.06); border: 1px solid rgba(247,243,236,.5); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* Eyebrow / tag editorial */
.eyebrow { display: inline-block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

/* ── Cards de imóvel (grandes / editorial) ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (max-width: 820px) { .portfolio-grid { grid-template-columns: 1fr; gap: 2rem; } }

.pcard { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(14,28,43,.12); }
.pcard-media { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 2; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pcard:hover .pcard-media img { transform: scale(1.04); }
.pcard-body { padding: 1.8rem 1.9rem 2rem; display: flex; flex-direction: column; flex: 1; }
.pcard-region { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; }
.pcard-name { font-family: 'Cormorant Garamond', serif; font-size: 1.95rem; line-height: 1.1; margin-bottom: .7rem; }
.pcard-highlight { font-size: .9rem; line-height: 1.65; opacity: .72; margin-bottom: 1.6rem; flex: 1; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.pcard-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); }
.pcard-cta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.pcard-cta:hover { color: var(--navy); }

/* Etiquetas de estado */
.state { position: absolute; top: 1.1rem; left: 1.1rem; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; padding: .42rem .9rem; font-weight: 500; backdrop-filter: blur(4px); }
.state-pronto { background: var(--gold); color: var(--navy); }
.state-soon   { background: rgba(14,28,43,.82); color: var(--gold); border: 1px solid rgba(190,159,98,.55); }
.state-life   { background: rgba(247,243,236,.92); color: var(--navy); border: 1px solid rgba(14,28,43,.12); }

/* ── Blocos de 3 colunas (momentos) ── */
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 820px) { .cols-3 { grid-template-columns: 1fr; gap: 1.5rem; } }
.moment { padding: 2.2rem 2rem; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.section--dark .moment { background: rgba(255,255,255,.03); border-color: rgba(190,159,98,.16); }
.moment h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: .8rem; }
.moment p { font-size: .88rem; line-height: 1.7; opacity: .74; margin-bottom: 1.6rem; flex: 1; }
.moment .moment-cta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ── Bloco editorial split (imagem + texto) ── */
.editorial { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch; }
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; } }
.editorial.flip .editorial-img { order: 2; }
.editorial-img { min-height: 460px; background-size: cover; background-position: center; }
.editorial-text { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 640px) { .editorial-text { padding: 2.5rem 1.5rem; } .editorial-img { min-height: 300px; } }
.editorial-text h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 1.2rem; }
.editorial-text p { font-size: .95rem; line-height: 1.8; opacity: .78; margin-bottom: 1rem; }

/* ── Números / destaques (confiança) ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.stat-item .n { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--gold); font-weight: 300; line-height: 1; }
.stat-item .l { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-top: .5rem; }

/* ── Lista de confiança / processo ── */
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2.5rem; max-width: 880px; margin: 0 auto; }
@media (max-width: 640px) { .trust-list { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: .9rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; line-height: 1.5; }
.section--dark .trust-item { border-color: rgba(190,159,98,.14); opacity: .9; }
.trust-item svg { flex-shrink: 0; width: 1.1rem; height: 1.1rem; color: var(--gold); margin-top: .15rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 2rem 1.5rem; border: 1px solid var(--line); position: relative; }
.section--dark .step { border-color: rgba(190,159,98,.16); }
.step .step-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold); font-weight: 300; margin-bottom: .6rem; }
.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .82rem; line-height: 1.6; opacity: .7; }

/* ── CTA final ── */
.cta-final { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.cta-final p { font-size: 1rem; line-height: 1.8; opacity: .78; margin-bottom: 2.2rem; }

/* ── Mobile sticky CTA ── */
#mobile-cta { display: none; }
@media (max-width: 768px) {
  #mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
    background: var(--navy); border-top: 1px solid rgba(190,159,98,.25);
    padding: .6rem .7rem; gap: .6rem;
  }
  #mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .85rem; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
  #mobile-cta .mcta-dossier { background: var(--gold); color: var(--navy); }
  #mobile-cta .mcta-wa { background: #25D366; color: #fff; }
  body { padding-bottom: 64px; }
  #wa-float { bottom: 78px; }
}

/* Form qualificado */
.qform { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .qform { grid-template-columns: 1fr; } }
.qform .full { grid-column: 1 / -1; }

/* ── Footer legal (Fase A) ── */
.footer-legal, .footer-disclaimer { font-size:.68rem; opacity:.35; margin-top:.5rem; line-height:1.6; max-width:700px; margin-left:auto; margin-right:auto; text-align:center; }
.footer-legal a { color:inherit; text-decoration:underline; text-underline-offset:3px; }

/* ── Formulário: labels + RGPD ── */
.field-label { display:block; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; opacity:.6; margin-bottom:.35rem; }
.rgpd-row { display:flex; align-items:flex-start; gap:.6rem; font-size:.82rem; line-height:1.5; opacity:.85; }
.rgpd-row input { margin-top:.2rem; flex-shrink:0; }
.rgpd-row a { color:var(--gold); text-decoration:underline; }

/* ── Páginas legais ── */
.legal-wrap { max-width:820px; margin:0 auto; padding:9rem 1.5rem 5rem; }
.legal-wrap h1 { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(2rem,4vw,3rem); margin-bottom:.4rem; }
.legal-wrap .legal-sub { opacity:.55; font-size:.85rem; margin-bottom:2.5rem; }
.legal-wrap h2 { font-family:'Cormorant Garamond',serif; font-weight:400; font-size:1.4rem; margin:2.2rem 0 .6rem; color:var(--navy); }
.legal-wrap p, .legal-wrap li { font-size:.92rem; line-height:1.8; opacity:.8; }
.legal-wrap ul { padding-left:1.2rem; margin:.4rem 0; }
.legal-wrap a { color:var(--gold); text-decoration:underline; text-underline-offset:2px; }

/* ── Afinação mobile (qualidade em telemóvel) ─────────────── */
@media (max-width: 768px) {
  /* o rodapé fixo já tem WhatsApp — esconder o botão flutuante (inline style precisa de !important) */
  #wa-float { display: none !important; }
}
@media (max-width: 640px) {
  /* hero da homepage: deixar crescer com o conteúdo em vez de cortar */
  .page-hero { height: auto; min-height: 100svh; }
  .page-hero .hero-content { padding: 6.5rem 1.25rem 2.75rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.5rem); line-height: 1.12; }
  .page-hero p.sub { font-size: .95rem; margin-top: 1rem; }
  .page-hero .micro { font-size: .62rem; letter-spacing: .12em; }
  /* heros das páginas de imóvel */
  #ihero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  #ihero .sub { font-size: .95rem !important; }
  /* botões a toda a largura = alvo de toque confortável */
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; text-align: center; }
  /* métrica solitária (5.ª) ocupa a linha inteira */
  .metrics .metric:last-child:nth-child(odd) { grid-column: span 2; }
  /* títulos de secção */
  .section-title h2, .section h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }
  /* cta final */
  .cta-final { padding: 3rem 1.25rem; }
}
