/* ============================================================
   Plano Certo Corretora — Plano de Saúde · Design System
   Register: brand / lead-gen · Strategy: Committed
   Paleta: teal-verde (saúde/cuidado) + coral (CTA) + neutros claros
   Color model: OKLCH · Type: Gabarito + Mulish
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Neutros — off-white de matiz fria (NÃO creme), branco puro, navy profundo */
  --bg:            oklch(0.985 0.006 178);
  --bg-sunk:       oklch(0.963 0.011 178);
  --surface:       oklch(1 0 0);
  --surface-2:     oklch(0.977 0.008 178);
  --line:          oklch(0.90 0.014 178);
  --line-strong:   oklch(0.83 0.02 178);

  /* Teal-verde — âncora escura, seções drenched, texto */
  --deep:          oklch(0.31 0.062 182);   /* verde-petróleo profundo (seções escuras) */
  --deep-2:        oklch(0.24 0.055 182);   /* mais fundo ainda (rodapé) */
  --ink:           oklch(0.29 0.035 180);   /* corpo em fundo claro */
  --ink-soft:      oklch(0.455 0.03 180);   /* secundário — ≥4.5:1 no branco */
  --ink-faint:     oklch(0.60 0.025 178);   /* legendas discretas */

  /* Assinatura — teal-verde (saúde / cuidado) */
  --turquoise:     oklch(0.80 0.12 168);    /* verde-água brilhante, para fundos escuros */
  --sea:           oklch(0.52 0.10 182);    /* teal interativo/links em fundo claro (≥4.5:1) */
  --sea-deep:      oklch(0.43 0.09 184);
  --emerald:       oklch(0.56 0.11 168);    /* verde-saúde para acentos em fundo claro */

  /* Energia — coral (CTA primário) */
  --sun:           oklch(0.72 0.16 38);
  --sun-strong:    oklch(0.66 0.17 33);
  --coral:         oklch(0.64 0.17 30);     /* usar com muita parcimônia (destaques raros) */
  --whatsapp:      #25d366;

  /* Texto sobre fundos escuros */
  --on-deep:       oklch(0.965 0.012 175);
  --on-deep-soft:  oklch(0.83 0.02 178);

  /* Estados */
  --focus:         oklch(0.72 0.14 175);

  /* Tipografia */
  --font-display: "Gabarito", "Segoe UI", sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Escala fluida (>=1.25) — display max ~72px, teto ≤96px */
  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.88rem);
  --step-0:  1.0625rem;                                   /* 17px corpo */
  --step-1:  clamp(1.20rem, 1.12rem + 0.35vw, 1.40rem);
  --step-2:  clamp(1.42rem, 1.28rem + 0.6vw, 1.80rem);
  --step-3:  clamp(1.70rem, 1.45rem + 1.05vw, 2.35rem);
  --step-4:  clamp(2.05rem, 1.62rem + 1.9vw, 3.15rem);
  --step-5:  clamp(2.45rem, 1.70rem + 3.3vw, 4.35rem);    /* hero */

  /* Espaçamento */
  --sp-1: 0.5rem;  --sp-2: 0.75rem; --sp-3: 1rem;   --sp-4: 1.5rem;
  --sp-5: 2rem;    --sp-6: 3rem;    --sp-7: 4.5rem;  --sp-8: 6.5rem;

  --container: 1200px;
  --container-narrow: 780px;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px -4px oklch(0.28 0.045 180 / 0.30);
  --shadow:    0 14px 34px -22px oklch(0.28 0.045 180 / 0.55);
  --shadow-lg: 0 30px 60px -32px oklch(0.24 0.05 180 / 0.6);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);     /* ease-out-quint */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Altura do cabeçalho. O header é sticky e ocupa espaço no fluxo, então o hero de
     tela cheia precisa descontar isso para terminar exatamente na dobra. */
  --h-header: 75px;

  /* Escala z semântica */
  --z-header: 200;
  --z-fab: 250;
  --z-cookie: 300;
  --z-backdrop: 380;
  --z-drawer: 400;
  --z-toast: 500;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--sea); text-decoration: none; }
a:hover { color: var(--sea-deep); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--deep);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); font-weight: 800; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.15; letter-spacing: -0.015em; }
h4 { font-size: var(--step-1); line-height: 1.2; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.25rem, 7vw, 6rem); }
.section.tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.section--deep { background: var(--deep); color: var(--on-deep); }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--deep p { color: var(--on-deep-soft); }
.section--sunk { background: var(--bg-sunk); }
.stack > * + * { margin-top: var(--sp-3); }
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; max-width: 62ch; }
.section--deep .lead { color: var(--on-deep-soft); }
.measure { max-width: 68ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step--1);
  color: var(--sea); letter-spacing: 0.02em;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 2px; background: var(--sun-strong); border-radius: 2px; }
.section--deep .eyebrow { color: var(--turquoise); }

.section-head { max-width: 60ch; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.section-head .lead { margin-top: var(--sp-3); }

/* ---------- Botões ---------- */
.btn {
  --_bg: var(--deep); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  line-height: 1; padding: 0.95em 1.5em; border: 0; border-radius: var(--radius-pill);
  background: var(--_bg); color: var(--_fg); min-height: 48px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); color: var(--_fg); }
.btn:active { transform: translateY(0); }
.btn i { font-size: 1.15em; }

.btn--sun { --_bg: var(--sun); --_fg: oklch(0.27 0.05 60); box-shadow: 0 12px 26px -14px oklch(0.74 0.155 35 / 0.9); }
.btn--sun:hover { --_bg: var(--sun-strong); box-shadow: 0 18px 34px -14px oklch(0.74 0.155 35 / 0.95); }
.btn--wa { --_bg: var(--whatsapp); --_fg: #04351b; box-shadow: 0 12px 26px -14px rgba(37,211,102,.85); }
.btn--wa:hover { --_bg: #1fc35d; }
.btn--deep { --_bg: var(--deep); --_fg: #fff; }
.btn--deep:hover { --_bg: var(--deep-2); }
.btn--ghost {
  --_bg: transparent; --_fg: var(--deep);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost:hover { --_bg: var(--surface); box-shadow: inset 0 0 0 2px var(--sea); color: var(--sea-deep); }
.section--deep .btn--ghost { --_fg: #fff; box-shadow: inset 0 0 0 2px oklch(0.75 0.03 178 / 0.5); }
.section--deep .btn--ghost:hover { --_bg: oklch(1 0 0 / 0.08); color: #fff; box-shadow: inset 0 0 0 2px var(--turquoise); }
.btn--sm { padding: 0.7em 1.15em; min-height: 40px; font-size: var(--step--1); }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--sea); }
.link-arrow i { transition: transform .3s var(--ease-out); }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: oklch(1 0 0 / 0.82); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; gap: var(--sp-4);
  min-height: 74px; padding-block: 0.6rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; margin-right: auto; flex-shrink: 0; }
.brand img { height: 52px; width: auto; border-radius: 8px; }
.brand-word { display: none; line-height: 1; }
.brand-word b { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--deep); letter-spacing: -0.02em; display: block; }
.brand-word span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
@media (min-width: 400px) { .brand-word { display: block; } }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; padding: 0; }
.nav-links a {
  display: inline-block; padding: 0.55rem 0.8rem; border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 500; font-size: 0.97rem; position: relative;
}
.nav-links a:hover { color: var(--sea-deep); background: var(--surface-2); }
.nav-links a[aria-current="page"] { color: var(--sea-deep); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.28rem; height: 2px;
  background: var(--sun-strong); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.4rem; }
.nav-toggle {
  display: none; background: var(--surface); border: 1px solid var(--line-strong);
  width: 46px; height: 46px; border-radius: var(--radius-sm); color: var(--deep); font-size: 1.4rem;
  align-items: center; justify-content: center;
}

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta.desktop { display: none; }
  .nav-drawer .nav-links, .nav-drawer .nav-cta { display: flex; }
}

/* Drawer mobile */
.nav-backdrop {
  position: fixed; inset: 0; background: oklch(0.2 0.04 180 / 0.5); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; z-index: var(--z-backdrop);
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(88vw, 360px);
  background: var(--surface); z-index: var(--z-drawer); padding: 1.5rem 1.35rem;
  transform: translateX(100%); transition: transform .4s var(--ease-out-expo);
  display: flex; flex-direction: column; gap: 1.25rem; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .nav-links { flex-direction: column; align-items: stretch; gap: 0.15rem; }
.nav-drawer .nav-links a { padding: 0.85rem 0.9rem; font-size: 1.05rem; border-radius: var(--radius-sm); }
.nav-drawer .nav-links a[aria-current="page"]::after { display: none; }
.nav-drawer .nav-links a[aria-current="page"] { background: var(--surface-2); }
.nav-drawer .nav-cta { flex-direction: column; align-items: stretch; margin: 0; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-close { background: var(--surface-2); border: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); font-size: 1.5rem; color: var(--deep); }

/* ---------- Hero ---------- */
/* Hero de tela cheia — só na home (`.hero`); as demais páginas usam `.page-hero`.
   Antes a altura vinha do padding fixo do .hero-inner, o que dava 842px: sobrava em
   monitor alto e ESTOURAVA a dobra em laptop de 720px. Agora a altura é a tela menos
   o header, e o conteúdo fica centralizado nela. */
.hero {
  position: relative; isolation: isolate; color: #fff; overflow: hidden;
  min-height: calc(100vh - var(--h-header));    /* navegadores sem svh */
  min-height: calc(100svh - var(--h-header));   /* no celular, ignora a barra que some ao rolar */
  display: grid;
  align-items: center;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, oklch(0.19 0.045 180 / 0.86) 0%, oklch(0.20 0.045 180 / 0.60) 34%, oklch(0.22 0.05 180 / 0.16) 62%, transparent 100%),
    linear-gradient(to top, oklch(0.19 0.045 180 / 0.55) 0%, transparent 42%);
}
/* Padding só como respiro; quem define a altura agora é o min-height do .hero.
   Continua sendo padding e não altura fixa: em tela baixa (celular deitado) o
   conteúdo empurra o hero e nada fica cortado. */
.hero-inner { padding-block: clamp(2rem, 5vw, 3.5rem); max-width: 46rem; }

/* Tela baixa (laptop de 720p, celular deitado): o conteúdo do hero tem ~565px e o
   respiro padrão o empurrava para fora da dobra. Aqui o padding encolhe para o
   min-height voltar a mandar e o CTA continuar visível sem rolar. */
@media (max-height: 780px) {
  .hero-inner { padding-block: 1.25rem; }
  .hero .lead { margin-top: var(--sp-3); }
  .hero-actions { margin-top: var(--sp-4); }
}
.hero h1 { color: #fff; text-shadow: 0 2px 30px oklch(0.18 0.04 180 / 0.4); }
.hero .lead { color: oklch(0.96 0.01 175); font-size: var(--step-1); margin-top: var(--sp-4); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: var(--sp-5); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: var(--sp-4);
  background: oklch(1 0 0 / 0.14); border: 1px solid oklch(1 0 0 / 0.22); backdrop-filter: blur(6px);
  padding: 0.45rem 0.9rem 0.45rem 0.6rem; border-radius: var(--radius-pill); font-size: var(--step--1); font-weight: 600;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turquoise); box-shadow: 0 0 0 4px oklch(0.78 0.115 165 / 0.3); }

/* ---------- Trust strip ---------- */
.trust {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(1rem, 3vw, 2.25rem);
}
.trust-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.trust-item .ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: oklch(0.78 0.115 165 / 0.16); color: var(--sea-deep); font-size: 1.4rem;
}
.section--deep .trust-item .ic { background: oklch(0.78 0.115 165 / 0.2); color: var(--turquoise); }
.trust-item h4 { margin-bottom: 0.15rem; }
.trust-item p { font-size: 0.95rem; color: var(--ink-soft); }
.section--deep .trust-item p { color: var(--on-deep-soft); }

/* ---------- Tour cards ---------- */
.card-grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); }
.tour-card {
  display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative; height: 100%;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__tag {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
  background: oklch(0.20 0.045 180 / 0.72); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.76rem; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}
.tour-card__tag.is-sun { background: var(--sun); color: oklch(0.27 0.05 60); }
.tour-card__body { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.15rem 1.25rem 1.35rem; flex: 1; }
.tour-card__body h3 { font-size: var(--step-1); }
.tour-card__body p { font-size: 0.95rem; color: var(--ink-soft); }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; font-size: 0.85rem; color: var(--ink-faint); margin-top: auto; }
.tour-card__meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.tour-card__meta i { color: var(--sea); font-size: 0.95rem; }
.tour-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0 1.25rem 1.25rem; }
.tour-card__foot .btn { flex: 0 0 auto; }

/* Card estreito (avaliações, artigos) */
.plain-card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.5rem 1.5rem 1.65rem; height: 100%; display: flex; flex-direction: column; gap: 0.75rem; }

/* ---------- Feature split (imagem + texto) ---------- */
.split { display: grid; gap: clamp(1.75rem, 4vw, 3.75rem); align-items: center; grid-template-columns: 1fr 1fr; }
.split.reverse .split__media { order: 2; }
@media (max-width: 820px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split__media { order: 0; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split__media.tall img { aspect-ratio: 4 / 5; }

/* Em duas colunas, a foto acompanha a altura do texto e alinha topo e base com ele.
   Antes a altura da imagem vinha do aspect-ratio (ou seja, da largura da coluna) e o
   `align-items: center` só centralizava a diferença — as duas colunas nunca fechavam
   juntas. No empilhado (<=820px) o aspect-ratio continua mandando: sem altura de linha
   para herdar, `height: 100%` colapsaria a imagem. */
@media (min-width: 821px) {
  .split { align-items: stretch; }
  .split__media img { height: 100%; aspect-ratio: auto; min-height: 22rem; }
}

/* ---------- Ficha rápida (spec sheet) ---------- */
.ficha { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.5rem; }
.ficha h3 { font-size: var(--step-1); margin-bottom: 1rem; }
.ficha dl { display: grid; grid-template-columns: 1fr auto; gap: 0.1rem 1rem; margin: 0; }
.ficha dt { color: var(--ink-soft); font-size: 0.95rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 0.5rem; }
.ficha dt i { color: var(--sea); }
.ficha dd { text-align: right; font-weight: 600; color: var(--deep); padding: 0.6rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.ficha dl > :nth-last-child(-n+2) { border-bottom: 0; }
.ficha .ficha-cta { margin-top: 1.15rem; }

/* Incluído / não incluído */
.incl { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .incl { grid-template-columns: 1fr; } }
.incl ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.incl li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.97rem; }
.incl li i { flex-shrink: 0; margin-top: 0.15rem; font-size: 1.1rem; }
.incl .yes li i { color: oklch(0.62 0.13 155); }
.incl .no li i { color: var(--ink-faint); }
.incl h4 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }

/* ---------- Passos / timeline ---------- */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.step__num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  background: var(--deep); color: #fff; font-size: 1.1rem;
}
.step__num::before { content: counter(step); }
.section--deep .step__num { background: var(--turquoise); color: oklch(0.24 0.04 180); }
.step h4 { margin-bottom: 0.2rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }
.section--deep .step p { color: var(--on-deep-soft); }

/* ---------- Comparação (tabela) ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
table.compare thead th { background: var(--deep); color: #fff; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
table.compare thead th:first-child { border-top-left-radius: var(--radius-lg); }
table.compare thead th:last-child { border-top-right-radius: var(--radius-lg); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody th { font-weight: 700; color: var(--deep); font-family: var(--font-body); }
table.compare tbody tr:nth-child(even) { background: var(--surface-2); }

/* ---------- FAQ (accordion nativo) ---------- */
.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: box-shadow .3s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.35rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-weight: 600;
  font-size: var(--step-0); color: var(--deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex-shrink: 0; color: var(--sea); font-size: 1.3rem; transition: transform .35s var(--ease-out); }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.35rem 1.3rem; color: var(--ink-soft); }
.faq .faq-body p + p { margin-top: 0.7rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding-block: 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 0; font-size: 0.85rem; }
.crumbs li { display: flex; align-items: center; gap: 0.5rem; color: var(--ink-faint); }
.crumbs li:not(:last-child)::after { content: "\F285"; font-family: "bootstrap-icons"; font-size: 0.75rem; color: var(--line-strong); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--sea); }
.crumbs [aria-current="page"] { color: var(--deep); font-weight: 600; }
.page-hero-sub { background: var(--bg-sunk); border-bottom: 1px solid var(--line); }

/* ---------- Page hero (interno, image-led compacto) ---------- */
.page-hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, oklch(0.19 0.045 180 / 0.82) 0%, oklch(0.20 0.045 180 / 0.55) 42%, oklch(0.22 0.05 180 / 0.30) 75%),
    linear-gradient(to top, oklch(0.19 0.045 180 / 0.5), transparent 55%); }
.page-hero-inner { padding-block: clamp(2.75rem, 8vw, 5.5rem); max-width: 44rem; }
.page-hero h1 { color: #fff; }
.page-hero .crumbs { padding-top: 0; }
.page-hero .crumbs li { color: oklch(0.9 0.02 178); }
.page-hero .crumbs a { color: oklch(0.92 0.02 178); }
.page-hero .crumbs [aria-current="page"] { color: #fff; }
.page-hero .lead { color: oklch(0.95 0.012 175); margin-top: var(--sp-3); }

/* Page hero simples (sem foto) para páginas legais/utilitárias */
.page-hero--plain { background: var(--deep); color:#fff; }
.page-hero--plain::after { display: none; }

/* ---------- Pending marker ---------- */
.pending {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82em; font-weight: 600; color: var(--sun-strong);
  background: oklch(0.80 0.145 40 / 0.14); border: 1px dashed var(--sun-strong);
  padding: 0.05em 0.5em; border-radius: var(--radius-sm); white-space: nowrap;
}
.pending::before { content: "\F332"; font-family: "bootstrap-icons"; font-size: 0.85em; }
.notice {
  display: flex; gap: 0.8rem; align-items: flex-start; padding: 1rem 1.25rem;
  background: oklch(0.80 0.145 40 / 0.10); border-radius: var(--radius); color: var(--ink);
  font-size: 0.95rem; box-shadow: inset 0 0 0 1px oklch(0.80 0.145 40 / 0.35);
}
.notice i { color: var(--sun-strong); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.notice strong { color: var(--deep); }

/* ---------- Prose (artigos / textos longos) ---------- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--step-3); margin-top: 2.4rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.9rem; }
.prose p, .prose li { color: var(--ink); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; }
.prose li::marker { color: var(--sea); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: oklch(0.53 0.115 178 / 0.4); }
.prose blockquote {
  border-radius: var(--radius); background: var(--bg-sunk); padding: 1.1rem 1.35rem;
  font-size: var(--step-1); color: var(--deep); font-family: var(--font-display); font-weight: 500;
}
.prose figure figcaption { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.5rem; text-align: center; }

/* ---------- Galeria ---------- */
.gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery a { border-radius: var(--radius); overflow: hidden; display: block; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a.span-2 { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 560px){ .gallery a.span-2 { grid-column: span 1; aspect-ratio: 1; } }

/* ---------- Chips / tags ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.85rem; border-radius: var(--radius-pill);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-strong); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
}
.chip i { color: var(--sea); }
.filter-chip { cursor: pointer; transition: all .2s ease; }
.filter-chip[aria-pressed="true"] { background: var(--deep); color: #fff; box-shadow: none; }
.filter-chip[aria-pressed="true"] i { color: var(--turquoise); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem 1.25rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: 1; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--deep); }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 0.8rem 0.95rem; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field :focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px oklch(0.53 0.115 178 / 0.18); }
.field-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.field-check input { width: 20px; height: 20px; margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--sea); }
.form-card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2.25rem); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; color: #fff; border-radius: clamp(16px, 3vw, 28px); }
.cta-band .cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, oklch(0.22 0.045 180 / 0.94), oklch(0.26 0.06 178 / 0.78) 55%, oklch(0.30 0.08 178 / 0.6)); }
.cta-band-inner { padding: clamp(2.25rem, 5vw, 4rem); display: grid; gap: 1.4rem; max-width: 52rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: oklch(0.95 0.012 175); font-size: var(--step-1); }
.cta-band .hero-actions { margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-2); color: var(--on-deep-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .chip-logo { background: #fff; padding: 0.5rem; border-radius: 14px; display: inline-block; box-shadow: var(--shadow); }
.footer-brand .chip-logo img { height: 66px; width: auto; border-radius: 8px; }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; max-width: 34ch; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 1rem; letter-spacing: -0.01em; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a { color: var(--on-deep-soft); font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 0.8rem; font-size: 0.95rem; }
.footer-contact a, .footer-contact div { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--on-deep-soft); }
.footer-contact i { color: var(--turquoise); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: oklch(1 0 0 / 0.08); color: #fff; font-size: 1.15rem; transition: background .2s ease, transform .3s var(--ease-out); }
.footer-social a:hover { background: var(--turquoise); color: var(--deep); transform: translateY(-2px); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid oklch(1 0 0 / 0.1); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; justify-content: space-between; font-size: 0.85rem; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; list-style: none; padding: 0; }
.footer-bottom a { color: var(--on-deep-soft); }
.footer-bottom a:hover { color: #fff; }
.nap { line-height: 1.6; }

/* ---------- Floating WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-fab); display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--whatsapp); color: #063a1e; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.15rem; border-radius: var(--radius-pill);
  box-shadow: 0 16px 36px -12px rgba(37,211,102,.7), 0 4px 12px rgba(0,0,0,.15);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.wa-fab i { font-size: 1.5rem; }
.wa-fab .wa-fab__label { white-space: nowrap; }
.wa-fab:hover { transform: translateY(-3px); color: #063a1e; }
@media (max-width: 560px){ .wa-fab .wa-fab__label { display: none; } .wa-fab { padding: 0.9rem; } }
body.cookie-open .wa-fab { transform: translateY(-4.5rem); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: clamp(1rem, 3vw, 1.75rem); right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-cookie); max-width: 560px; background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.15rem 1.35rem; display: none; gap: 1rem; align-items: center; flex-wrap: wrap;
  border: 1px solid var(--line);
}
.cookie.show { display: flex; }
.cookie p { font-size: 0.9rem; color: var(--ink-soft); flex: 1 1 260px; }
.cookie a { font-weight: 600; }
.cookie .cookie-actions { display: flex; gap: 0.6rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.mt-5 { margin-top: var(--sp-5); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.grid-2 { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); grid-template-columns: 1fr 1fr; }
@media (max-width: 820px){ .grid-2 { grid-template-columns: 1fr; } }

/* Texto + card lado a lado (as 8 seções "Quanto custa" do site).
   Antes era um `style="align-items:center"` inline: o card, mais alto que o texto,
   sobrava 28px em cima e 28px embaixo e as colunas nunca fechavam juntas.
   Agora a coluna de texto estica junto com o card e os botões descem para a base,
   então topo e rodapé das duas colunas coincidem. */
@media (min-width: 821px) {
  .grid-2--par { align-items: stretch; }
  .grid-2--par > :first-child { display: flex; flex-direction: column; }
  .grid-2--par > :first-child > .hero-actions { margin-top: auto; margin-bottom: 0; }
}
.grid-3 { display: grid; gap: clamp(1.1rem, 2.4vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 999; background: var(--deep); color: #fff; padding: 0.7rem 1.1rem; border-radius: var(--radius-sm); transition: top .2s ease; }
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Reveal on scroll — progressive enhancement ----------
   Sem JS (ou em render headless) o conteúdo aparece normalmente.
   O ocultar-e-revelar só existe quando <html> recebe a classe .js. */
html.js [data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
html.js [data-aos].is-in { opacity: 1; transform: none; }

/* ---------- Brand mark (logotipo-texto provisório) ---------- */
.brand-mark {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--deep), var(--sea-deep)); color: #fff; font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.12);
}
.brand-mark i { display: block; }
.footer-brand .brand--footer { text-decoration: none; }
.footer-brand .brand--footer .brand-word { display: block; }
.footer-brand .brand--footer .brand-word b { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.footer-brand .brand--footer .brand-word span { color: var(--on-deep-soft); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-brand .brand--footer .brand-mark { width: 52px; height: 52px; font-size: 1.5rem; }

/* Icon badge (cards de destaque) */
.ic-badge {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 0.25rem;
  background: oklch(0.80 0.12 168 / 0.15); color: var(--emerald); font-size: 1.5rem;
}
.plain-card > .ic-badge + h3 { margin-top: 0.1rem; }

/* ---------- Motion / reduced ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html.js [data-aos] { opacity: 1 !important; transform: none !important; }
  .tour-card:hover, .btn:hover, .footer-social a:hover, .wa-fab:hover { transform: none; }
}
