/* ==========================================================================
   REALIZZA — LP on-brand
   Identidade: VERDE floresta/musgo (fundos escuros) + CREME/BEGE (base clara)
   + OURO (acento, itálico serif) + TERRACOTA/MARROM quente (seções destaque).
   Tipografia: serif de sistema (Georgia/Cambria) p/ títulos com palavras em
   itálico dourado; sans de sistema p/ corpo. Zero dependência externa.
   ========================================================================== */
:root {
  /* Verde floresta/musgo (capa e seções escuras do deck) */
  --green:       #263215;   /* verde musgo — superfícies escuras */
  --green-2:     #2f3d1b;   /* verde um tom acima (cards/gradiente) */
  --green-deep:  #161f0b;   /* verde quase preto (custo de esperar, footer) */
  /* Creme/bege */
  --cream:       #f1ead9;   /* base clara principal */
  --cream-2:     #e9e0c9;   /* creme mais quente p/ cartões */
  --paper:       #faf6eb;   /* creme claríssimo */
  /* Ouro */
  --gold:        #c8a65f;   /* ouro principal (sobre escuro) */
  --gold-hi:     #dcbe7d;   /* ouro claro p/ hover em escuro */
  --gold-deep:   #7f6528;   /* ouro escuro AA p/ texto em fundo claro */
  --gold-soft:   rgba(200,166,95,.16);
  /* Terracota/marrom quente (páginas 08 e 11 do deck) */
  --terra:       #8a5638;
  --terra-2:     #99633f;   /* topo do gradiente terracota */
  --terra-deep:  #66402a;   /* base do gradiente terracota */
  /* Tinta (quase-preto amarronzado/esverdeado — nunca cinza azulado) */
  --ink:         #262418;
  --tx:          #3d3826;   /* corpo em fundo claro (AA) */
  --tx-soft:     #6d654e;   /* secundário em fundo claro */
  /* Linhas */
  --line:        rgba(38,36,24,.13);
  --line-cream:  rgba(241,234,217,.14);
  --serif: Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1160px;
  --px: clamp(20px, 5vw, 56px);
  --py: clamp(68px, 9vw, 118px);
  --radius: 16px;
  --shadow: 0 24px 64px rgba(22,31,11,.16);
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--tx);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
strong { font-weight: 650; }
::selection { background: var(--gold); color: var(--green-deep); }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }

/* Acessibilidade ---------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-deep); color: var(--cream);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
  font-weight: 600; font-size: 14px;
}
.skip:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.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;
}

/* Reveal on scroll --------------------------------------------------------- */
[data-r] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-r].on { opacity: 1; transform: none; }
[data-r="1"] { transition-delay: .08s; }
[data-r="2"] { transition-delay: .16s; }
[data-r="3"] { transition-delay: .24s; }
[data-r="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-r] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* Tipografia de seção ------------------------------------------------------ */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.kicker::before {
  content: ''; width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--gold-deep); }
.lead {
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--tx-soft);
  max-width: 580px;
  line-height: 1.7;
  text-wrap: pretty;
}
/* Evita "viúvas" (palavra sozinha na última linha) em títulos e textos */
h1, h2, h3, .h1, .h2, .s-h2, .final-marca { text-wrap: balance; }
p, li, blockquote, .hero-sub, .lead, .tl-step p, .faq-a-in { text-wrap: pretty; }
.s-head { margin-bottom: clamp(40px, 6vw, 64px); }

/* Bullets "diamante" da marca ---------------------------------------------- */
.dlist { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.dlist li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(15.5px, 1.9vw, 17.5px);
  line-height: 1.6;
}
.dlist li::before {
  content: ''; position: absolute; left: 2px; top: .58em;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Botões ------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  /* Formato da marca: cantos arredondados só nas diagonais (topo-esq + baixo-dir) */
  border-radius: 22px 2px 22px 2px;
  font-size: 15px; font-weight: 650;
  letter-spacing: .01em;
  border: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold {
  background: linear-gradient(120deg, #d3b26c, var(--gold) 55%, #b6924c);
  color: var(--green-deep);
  box-shadow: 0 8px 24px rgba(200,166,95,.35);
}
.btn-gold:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,166,95,.45); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(38,50,21,.3); }
.btn-line-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(241,234,217,.38); }
.btn-line-light:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border: 1.5px solid rgba(38,36,24,.32); }
.btn-line:hover { border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  /* Altura DETERMINÍSTICA: não depende do tamanho dos filhos */
  height: 74px;
  padding: 0 var(--px);
  overflow: hidden;
  transition: height .3s var(--ease), background .35s, box-shadow .35s;
}
.nav.s {
  height: 52px; /* no scroll fica bem mais fino */
  background: rgba(241,234,217,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(38,36,24,.08);
}
/* No scroll tudo encolhe junto p/ um nav fino e delicado */
.nav.s .nav-logo img { height: 22px; }
.nav.s .nav-wa { width: 34px; height: 34px; }
.nav.s .nav-cta { padding: 8px 18px; font-size: 13px; }
.nav-logo { display: block; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo .neg { display: block; }
.nav-logo .pos { display: none; }
.nav.s .nav-logo .neg { display: none; }
.nav.s .nav-logo .pos { display: block; }
.nav-links { flex: 1; display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-link {
  font-size: 13.5px; font-weight: 600;
  letter-spacing: .04em;
  color: rgba(241,234,217,.75);
  padding: 6px 2px;
  position: relative;
  transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold);
  transition: right .25s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { right: 0; }
.nav.s .nav-link { color: var(--tx-soft); }
.nav.s .nav-link:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 12px 22px; font-size: 13.5px; }
.nav-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(241,234,217,.32);
  color: rgba(241,234,217,.88);
  transition: border-color .2s, color .2s, background .2s;
}
.nav-wa:hover { border-color: var(--gold); color: var(--gold-hi); }
.nav.s .nav-wa { border-color: rgba(38,36,24,.24); color: var(--tx); }
.nav.s .nav-wa:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.nav-ham {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  background: none; border: none;
  align-items: center;
}
.nav-ham span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: rgba(241,234,217,.92);
  transition: background .2s;
}
.nav.s .nav-ham span { background: var(--ink); }
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
}

/* Drawer mobile ------------------------------------------------------------ */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(300px, 86vw);
  background: var(--green-deep);
  color: var(--cream);
  padding: 84px 30px 30px;
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .32s var(--ease);
  box-shadow: -12px 0 48px rgba(22,31,11,.4);
}
.drawer.open { transform: none; }
.drawer nav { display: flex; flex-direction: column; }
.drawer a {
  font-size: 16px; font-weight: 550;
  color: rgba(241,234,217,.85);
  padding: 15px 2px;
  border-bottom: 1px solid var(--line-cream);
  transition: color .2s, padding-left .2s;
}
.drawer a:hover { color: var(--gold-hi); padding-left: 6px; }
.drawer .drawer-cta { margin-top: 26px; border: none; text-align: center; }
.drawer-tag {
  margin-top: auto;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: rgba(200,166,95,.65);
}
.drawer-x {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: none; border: 1.5px solid var(--line-cream);
  border-radius: 50%;
  color: var(--cream); font-size: 17px; line-height: 1;
}
.ov {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(22,31,11,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.ov.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO — verde floresta + ouro (capa do deck)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(128deg, #33421d 0%, var(--green) 42%, var(--green-deep) 100%);
  color: var(--cream);
  display: flex; align-items: center;
  overflow: hidden;
}
/* arcos dourados finos, como nas artes da marca */
.hero-arc {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(200,166,95,.28);
  border-radius: 50%;
}
.hero-arc.a1 { width: 560px; height: 560px; left: -220px; top: -260px; }
.hero-arc.a2 { width: 420px; height: 420px; right: -140px; bottom: -190px; border-color: rgba(200,166,95,.2); }
.hero-glow {
  position: absolute; pointer-events: none;
  right: -12%; top: 6%;
  width: min(720px, 70vw); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 42%, rgba(200,166,95,.26) 0%, rgba(200,166,95,.08) 38%, transparent 62%);
  filter: blur(60px);
}
.hero-pin {
  position: absolute; pointer-events: none;
  right: clamp(-140px, -6vw, -40px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 42vw, 620px);
  opacity: .1;
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.ey-pin, .final-pin { animation: rzspin 22s linear infinite; transform-origin: 50% 50%; }
.final-pin { animation-duration: 60s; }
@keyframes rzspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-pin, .ey-pin, .final-pin { animation: none !important; } }
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(120px, 16vh, 180px) var(--px) clamp(72px, 9vh, 110px);
}
.hero-ey {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-ey svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 7.4vw, 84px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--cream);
  max-width: 740px;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(241,234,217,.78);
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero-micro {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(241,234,217,.6);
  max-width: 520px;
  margin-bottom: 46px;
}
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(241,234,217,.06);
  border: 1px solid rgba(200,166,95,.3);
  font-size: 13px; font-weight: 550;
  color: rgba(241,234,217,.82);
}
.chip .dia {
  width: 7px; height: 7px; flex-shrink: 0;
  background: var(--gold); transform: rotate(45deg);
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  transform: translateX(-50%);
  color: rgba(241,234,217,.45);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

/* Faixa de lastro (prova) --------------------------------------------------- */
.stats {
  background: var(--green-deep);
  border-top: 1px solid var(--line-cream);
  padding: 0 var(--px);
}
.stats-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 30px 18px;
  text-align: center;
  border-left: 1px solid var(--line-cream);
}
.stat:first-child { border-left: none; }
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}
.stat b em { font-style: italic; }
.stat span { font-size: 12.5px; color: rgba(241,234,217,.6); letter-spacing: .02em; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line-cream); padding: 22px 12px; }
  .stat:nth-child(-n+2) { border-top: none; }
}

/* ==========================================================================
   POSICIONAMENTO — "A camada entre o seu desejo e a sua cirurgia."
   ========================================================================== */
.pos { background: var(--cream); padding: var(--py) 0; position: relative; overflow: hidden; }
.pos-arc {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(200,166,95,.35); border-radius: 50%;
  width: 480px; height: 480px; right: -220px; top: -240px;
}
.pos-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.pills { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.pill {
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra);
  border: 1.5px solid rgba(138,86,56,.55);
  /* Formato da marca: cantos arredondados só nas diagonais */
  border-radius: 20px 2px 20px 2px;
  padding: 13px 24px;
  background: rgba(250,246,235,.5);
}
.pill.full { color: var(--paper); background: var(--terra); border-color: var(--terra); }
.pos-card {
  position: relative;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pos-card::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(200,166,95,.35);
}
.pos-card-q {
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 27px);
  line-height: 1.4;
  margin-bottom: 20px;
}
.pos-card-q em { font-style: italic; color: var(--gold); }
.pos-card-p { font-size: 15px; line-height: 1.7; color: rgba(241,234,217,.75); }
@media (max-width: 900px) { .pos-inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   DOR — fundo verde (página 05 do deck)
   ========================================================================== */
.dor {
  background: linear-gradient(122deg, #33421d 0%, var(--green) 55%, #1d2810 100%);
  color: var(--cream);
  padding: var(--py) 0;
  position: relative; overflow: hidden;
}
.dor-arc {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(200,166,95,.22); border-radius: 50%;
  width: 520px; height: 520px; left: -260px; bottom: -300px;
}
.dor .wrap { position: relative; z-index: 1; }
.dor .kicker { color: var(--gold); }
.dor .kicker::before { background: var(--gold); }
.dor .h2 { color: var(--cream); }
.dor .h2 em { color: var(--gold); }
.dor .dlist { max-width: 560px; margin-top: 8px; }
.dor .dlist li { color: rgba(241,234,217,.85); }
.dor-fecho {
  margin-top: clamp(34px, 5vw, 48px);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.5;
  color: var(--gold-hi);
  max-width: 520px;
}

/* ==========================================================================
   CUSTO DE ESPERAR — verde profundo + card creme (página 06 do deck)
   ========================================================================== */
.custo {
  background: var(--green-deep);
  color: var(--cream);
  padding: var(--py) 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(200,166,95,.14);
}
.custo-arc {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(200,166,95,.2); border-radius: 50%;
  width: 620px; height: 620px; right: -280px; top: -340px;
}
.custo-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.custo h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.12;
  color: var(--cream);
  text-wrap: balance;
}
.custo h2 em { font-style: italic; color: var(--gold); }
.custo-card {
  background: var(--paper);
  color: var(--tx);
  border-radius: 4px;
  padding: clamp(30px, 4vw, 48px);
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.custo-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 10px;
  background: linear-gradient(90deg, #8a6d2e, var(--gold) 45%, #e3cd97);
}
.custo-card .dlist li { color: var(--tx); }
.custo-fecho {
  margin-top: 30px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.5;
  color: var(--gold-hi);
}
@media (max-width: 860px) { .custo-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   A OUTRA MARGEM — "O que você pode ter?"
   ========================================================================== */
.ter { background: var(--cream); padding: var(--py) 0; }
.ter-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(34px, 5vw, 50px);
}
.ter-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(24px, 2.8vw, 32px) clamp(20px, 2.4vw, 28px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ter-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(38,36,24,.1); }
.ter-num {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--gold-deep);
  display: block; margin-bottom: 12px;
}
.ter-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.32;
  color: var(--ink);
  margin-bottom: 8px;
}
.ter-card p { font-size: 14.5px; line-height: 1.62; color: var(--tx-soft); }
.ter-cta { margin-top: clamp(34px, 5vw, 48px); display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ter-cta-note { font-size: 14px; color: var(--tx-soft); max-width: 340px; line-height: 1.55; }
@media (max-width: 1000px) { .ter-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .ter-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   COMO FUNCIONA — timeline 5 passos (página 09 do deck)
   ========================================================================== */
.como { background: var(--paper); padding: var(--py) 0; }
.tl { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 22px; position: relative; }
.tl-step { position: relative; padding-top: 62px; }
.tl-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 40px);
  color: var(--gold); /* dourado claro, como no deck */
  line-height: 1;
  position: absolute; top: 0; left: 0;
}
/* linha dourada contínua + losango marcador */
.tl-step::before {
  content: ''; position: absolute; left: 0; right: -22px; top: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #a9873f);
}
.tl-step:last-child::before { display: none; } /* linha para no último losango, como no deck */
.tl-step::after {
  content: ''; position: absolute; left: 2px; top: 46px;
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
}
.tl-step h3 {
  font-family: var(--serif); font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}
.tl-step p { font-size: 14.5px; line-height: 1.62; color: #8a6a38; padding-right: 6px; } /* caramelo, como no deck */
.tl-nota {
  margin-top: clamp(38px, 5vw, 54px);
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(15.5px, 1.9vw, 18px);
  color: var(--gold-deep);
  border: 1px solid rgba(200,166,95,.6);
  border-radius: 20px 2px 20px 2px; /* mesmo formato diagonal dos botões/pills */
  padding: 16px 26px;
  background: rgba(200,166,95,.07);
}
.como-cta { margin-top: clamp(34px, 5vw, 48px); display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.como-cta-note { font-size: 14px; color: var(--tx-soft); max-width: 340px; line-height: 1.55; }
@media (max-width: 980px) {
  .tl { grid-template-columns: 1fr; gap: 0; }
  .tl-step { padding: 0 0 34px 58px; }
  .tl-step:last-child { padding-bottom: 0; }
  .tl-num { left: 0; top: -4px; font-size: 26px; }
  .tl-step::before { left: 14px; right: auto; top: 34px; bottom: -6px; width: 2px; height: auto; background: linear-gradient(180deg, var(--gold), #a9873f); }
  .tl-step:last-child::before { display: none; }
  .tl-step::after { left: 10px; top: 24px; }
  .tl-step h3, .tl-step p { padding-left: 0; }
}

/* ==========================================================================
   TRANSPARÊNCIA / "E O JUROS?" — terracota (página 08 do deck)
   ========================================================================== */
.juros {
  background: linear-gradient(135deg, var(--terra-2) 0%, var(--terra) 48%, var(--terra-deep) 100%);
  color: var(--paper);
  padding: var(--py) 0;
  position: relative; overflow: hidden;
}
.juros-arc {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(241,234,217,.3); border-radius: 50%;
  width: 560px; height: 560px; right: -240px; bottom: -320px;
}
.juros .wrap { position: relative; z-index: 1; }
.juros .kicker { color: #f0dcae; }
.juros .kicker::before { background: #f0dcae; }
.juros h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.14;
  color: var(--paper);
  max-width: 800px;
  margin-bottom: 22px;
  text-wrap: balance;
}
.juros h2 em { font-style: italic; color: #f0dcae; }
.juros-lead {
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.7;
  color: rgba(250,246,235,.85);
  max-width: 580px;
}
.juros-grid {
  margin-top: clamp(36px, 5vw, 52px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.juros-card {
  background: rgba(250,246,235,.08);
  border: 1px solid rgba(250,246,235,.22);
  border-radius: var(--radius);
  padding: clamp(24px, 2.8vw, 32px);
}
.juros-card h3 {
  font-family: var(--serif); font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 21px);
  color: #f4e3ba;
  margin-bottom: 8px;
}
.juros-card p { font-size: 14.5px; line-height: 1.65; color: rgba(250,246,235,.82); }
.juros-fecho {
  margin-top: clamp(32px, 4.5vw, 44px);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: #f4e3ba;
}
@media (max-width: 860px) { .juros-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   LASTRO — quem está por trás
   ========================================================================== */
.lastro { background: var(--cream); padding: var(--py) 0; }
.lastro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lcard:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(38,36,24,.09); }
.lcard-ico {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(200,166,95,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.lcard-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.lcard h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 23px);
  font-weight: 500; line-height: 1.3;
  color: var(--ink);
}
.lcard h3 em { font-style: italic; color: var(--gold-deep); }
.lcard p { font-size: 15px; line-height: 1.68; color: var(--tx-soft); }
.lastro-strip {
  margin-top: 22px;
  background: var(--green);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  color: var(--cream);
  box-shadow: var(--shadow);
}
.lastro-strip-txt {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.4;
  max-width: 640px;
}
.lastro-strip-txt em { font-style: italic; color: var(--gold); }
@media (max-width: 760px) { .lastro-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SIMULADOR
   ========================================================================== */
.sim {
  background: linear-gradient(150deg, #2e3b19 0%, var(--green) 45%, var(--green-deep) 100%);
  padding: var(--py) 0;
  position: relative; overflow: hidden;
}
.sim::before {
  content: ''; position: absolute; right: -14%; top: -20%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,166,95,.2), transparent 65%);
  filter: blur(50px); pointer-events: none;
}
.sim-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sim-copy .kicker { color: var(--gold); }
.sim-copy .kicker::before { background: var(--gold); }
.sim-copy .h2 { color: var(--cream); }
.sim-copy .h2 em { color: var(--gold); }
.sim-copy .lead { color: rgba(241,234,217,.75); }
.sim-list { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.sim-item {
  display: flex; gap: 13px; align-items: flex-start;
  font-size: 15px; color: rgba(241,234,217,.85); line-height: 1.55;
}
.sim-item .dia { width: 8px; height: 8px; margin-top: 7px; flex-shrink: 0; background: var(--gold); transform: rotate(45deg); }
.sim-wa-alt { margin-top: 30px; font-size: 14.5px; color: rgba(241,234,217,.6); }
.sim-wa-alt a {
  color: var(--gold-hi); font-weight: 650;
  border-bottom: 1px solid rgba(200,166,95,.45);
  transition: border-color .2s;
}
.sim-wa-alt a:hover { border-color: var(--gold-hi); }

.sim-card {
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(28px, 3.6vw, 44px);
  box-shadow: 0 32px 80px rgba(0,0,0,.38);
  border-top: 4px solid var(--gold);
}
.sim-card-head { margin-bottom: 26px; }
.sim-card-head h3 {
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 28px);
  font-weight: 500; color: var(--ink);
  margin-bottom: 6px;
}
.sim-card-head h3 em { font-style: italic; color: var(--gold-deep); }
.sim-card-head p { font-size: 14.5px; color: var(--tx-soft); line-height: 1.55; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--tx);
}
.field label .opt { font-weight: 500; color: var(--tx-soft); text-transform: none; letter-spacing: 0; }
.field input, .field select {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 15px 16px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,166,95,.18);
}
.field input::placeholder { color: rgba(61,56,38,.4); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%233d3826' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field.err input, .field.err select { border-color: #b3402e; background: #fff6f4; }
.field-msg { display: none; font-size: 13px; color: #a13527; font-weight: 550; }
.field.err .field-msg { display: block; }
.sim-submit {
  width: 100%; margin-top: 10px;
  padding: 18px;
  font-size: 15.5px;
  border-radius: 12px;
}
.sim-note {
  margin-top: 14px; text-align: center;
  font-size: 12.5px; line-height: 1.5;
  color: rgba(61,56,38,.6);
}
@media (max-width: 900px) { .sim-inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.depos { background: var(--paper); padding: var(--py) 0; }
.depos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depo {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.depo:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(38,36,24,.09); }
.depo-stars { display: flex; gap: 3px; color: var(--gold); }
.depo blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 15.5px; line-height: 1.72;
  color: var(--tx);
  flex: 1;
}
.depo-who { display: flex; align-items: center; gap: 13px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-soft);
  border: 1.5px solid rgba(200,166,95,.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px; color: var(--gold-deep);
}
.depo-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.depo-proc { font-size: 12.5px; color: var(--tx-soft); }
@media (max-width: 860px) { .depos-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--cream); padding: var(--py) 0; }
.faq-grid {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.faq-side { position: sticky; top: 100px; }
.faq-side .lead { margin-bottom: 26px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  background: none; border: none;
  text-align: left;
  padding: 22px 2px;
  font-family: var(--serif);
  font-size: clamp(16.5px, 2vw, 19px);
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-ic {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(38,36,24,.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx);
  transition: transform .3s var(--ease), border-color .3s, background .3s, color .3s;
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
  background: var(--gold); border-color: var(--gold); color: var(--green-deep);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-in {
  padding: 0 44px 22px 2px;
  font-size: 15px; line-height: 1.72;
  color: var(--tx-soft);
}
@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
}

/* ==========================================================================
   CTA FINAL — marrom + card ouro (página 11 do deck)
   ========================================================================== */
.final {
  background: linear-gradient(135deg, var(--terra-2) 0%, var(--terra) 45%, var(--terra-deep) 100%);
  padding: clamp(84px, 12vw, 150px) 0;
  position: relative; overflow: hidden;
  color: var(--paper);
}
.final-arc {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(241,234,217,.28); border-radius: 50%;
}
.final-arc.a1 { width: 560px; height: 560px; left: -260px; top: -300px; }
.final-arc.a2 { width: 420px; height: 420px; right: -180px; bottom: -220px; }
.final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.final-pin { width: 54px; height: 54px; margin: 0 auto 26px; opacity: .95; }
.final-kicker {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: #f0dcae;
  margin-bottom: 22px;
}
.final h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.18;
  color: var(--paper);
  margin-bottom: 26px;
  text-wrap: balance;
}
.final-marca {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(34px, 5.8vw, 62px);
  line-height: 1.1;
  color: var(--terra-deep);
  background: linear-gradient(115deg, #e9d3a0, #cbab6c 60%, #b8934d);
  border-radius: 4px 30px 30px 4px;
  padding: .32em .6em .36em;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.final p {
  font-size: clamp(15.5px, 2vw, 18px);
  color: rgba(250,246,235,.88);
  max-width: 540px; margin: 0 auto 38px;
  line-height: 1.7;
}
.final-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final .btn-gold { color: var(--terra-deep); }
.final-tag {
  margin-top: 44px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 2vw, 19px);
  color: #f4e3ba;
}

/* ==========================================================================
   FOOTER — verde quase preto
   ========================================================================== */
.footer {
  background: var(--green-deep);
  color: rgba(241,234,217,.6);
  padding: clamp(48px, 7vw, 72px) 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(241,234,217,.09);
}
.footer-logo { height: 26px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 320px; color: rgba(241,234,217,.48); }
.footer-tagline {
  margin-top: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: rgba(200,166,95,.85);
}
.footer h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(241,234,217,.38);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: rgba(241,234,217,.6);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-hi); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(241,234,217,.34);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   CTA FLUTUANTE MOBILE
   ========================================================================== */
.float-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: rgba(22,31,11,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,166,95,.35);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  transform: translateY(102%);
  transition: transform .3s var(--ease);
}
.float-cta.show { transform: none; }
.float-cta .btn { flex: 1; padding: 14px 10px; font-size: 14px; }
@media (max-width: 700px) { .float-cta { display: flex; } }

@media (max-width: 600px) {
  .hero-ctas .btn, .final-ctas .btn, .como-cta .btn, .ter-cta .btn { width: 100%; }
}

/* ==========================================================================
   CARRO EM GARANTIA (AUTO EQUITY / CRÉDITO COM GARANTIA DE VEÍCULO)
   ========================================================================== */
.cg-section {
  background: linear-gradient(135deg, var(--terra-deep) 0%, var(--terra) 55%, #4a2c1b 100%);
  color: var(--cream);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,166,95,.25);
  border-bottom: 1px solid rgba(200,166,95,.25);
}
.cg-section::before {
  content: ''; position: absolute; left: -10%; bottom: -20%;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,166,95,.22), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.cg-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cg-copy .kicker { color: var(--gold); }
.cg-copy .kicker::before { background: var(--gold); }
.cg-copy .h2 { color: var(--cream); }
.cg-copy .h2 em { color: var(--gold-hi); }
.cg-copy .lead { color: rgba(241,234,217,.88); }

.cg-benefits {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.cg-bitem {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(38,36,24,.38);
  border: 1px solid rgba(241,234,217,.16);
  border-radius: 12px;
  padding: 16px 18px;
}
.cg-bicon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold-soft); border: 1px solid var(--gold);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-hi);
}
.cg-bitem h4 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
.cg-bitem p { font-size: 13.5px; color: rgba(241,234,217,.75); line-height: 1.45; }

/* Card de Formulário (Multi-step) */
.cg-card {
  background: var(--paper);
  color: var(--tx);
  border-radius: 20px;
  padding: clamp(28px, 3.6vw, 44px);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  border-top: 4px solid var(--gold);
  position: relative;
}
.cg-progress-bar {
  display: flex; gap: 6px; margin-bottom: 20px;
}
.cg-pstep {
  flex: 1; height: 5px; background: rgba(38,36,24,.12); border-radius: 3px; transition: background .3s var(--ease);
}
.cg-pstep.active { background: var(--terra); }
.cg-pstep.done { background: var(--gold); }

.cg-card-head { margin-bottom: 20px; }
.cg-card-head h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 27px); font-weight: 500; color: var(--ink); margin-bottom: 4px;
}
.cg-card-head h3 em { font-style: italic; color: var(--gold-deep); }
.cg-card-head p { font-size: 13.5px; color: var(--tx-soft); }

.cg-step { display: none; }
.cg-step.active { display: block; animation: cgFade .35s var(--ease); }

@keyframes cgFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cg-step-actions {
  display: flex; gap: 10px; margin-top: 22px;
}
.cg-step-actions .btn { flex: 1; padding: 15px; font-size: 14.5px; }

.cg-feedback-msg {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: 14px; line-height: 1.5;
}
.cg-feedback-msg.success {
  display: block; background: rgba(47,61,27,.12); border: 1px solid var(--green); color: var(--green-deep);
}
.cg-feedback-msg.error {
  display: block; background: #fff4f4; border: 1px solid #d9534f; color: #a94442;
}

@media (max-width: 900px) {
  .cg-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   V10 — FATIA 2: seções novas da home
   ========================================================================== */

/* ---------- 6. Exemplo ilustrativo de plano (§12) ---------- */
.plan { background: var(--cream); padding: var(--py) 0; }
.plan-card {
  max-width: 640px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: 0 14px 34px rgba(38,36,24,.06);
}
.plan-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.plan-row:last-child { border-bottom: none; }
.plan-row span { font-size: 14.5px; color: var(--tx-soft); }
.plan-row b { font-family: var(--serif); font-size: 17px; color: var(--ink); font-weight: 400; text-align: right; }
.plan-nota {
  max-width: 640px; margin-top: 20px;
  font-size: 13.5px; line-height: 1.62; color: var(--tx-soft);
}

/* ---------- 8. A Realizza é para mim? (§15) ---------- */
.fit { background: var(--paper); padding: var(--py) 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-card {
  border-radius: var(--radius);
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid var(--line);
  background: var(--cream);
}
.fit-card.no { background: transparent; border-style: dashed; }
.fit-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px); color: var(--ink);
  margin-bottom: 18px;
}
.fit-card.no h3 { color: var(--tx-soft); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.fit-list li {
  position: relative; padding-left: 27px;
  font-size: 15px; line-height: 1.62; color: var(--tx);
}
.fit-list li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 9px; height: 9px; transform: rotate(45deg);
  background: var(--gold-deep);
}
.fit-card.no .fit-list li { color: var(--tx-soft); }
.fit-card.no .fit-list li::before { background: none; border: 1px solid var(--tx-soft); }

/* ---------- 10. Comparação de jornada (§17) ---------- */
.cmp { background: var(--paper); padding: var(--py) 0; }
.cmp-table {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--cream);
}
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1fr 1fr; }
.cmp-head span {
  padding: 16px clamp(16px, 2.4vw, 26px);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--tx-soft); background: var(--cream-2);
}
.cmp-head span + span { color: var(--gold-deep); }
.cmp-row span {
  padding: 16px clamp(16px, 2.4vw, 26px);
  font-size: 15px; line-height: 1.6; border-top: 1px solid var(--line);
}
.cmp-row span:first-child { color: var(--tx-soft); }
.cmp-row span + span { color: var(--ink); background: rgba(200,166,95,.07); }

/* ---------- 14. Objeções (§22) ---------- */
.obj { background: var(--paper); padding: var(--py) 0; }
.obj-list { max-width: 760px; }

/* ---------- 15. Segurança e formalização (§23) ---------- */
.seg { background: var(--cream); padding: var(--py) 0; }
.seg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.seg-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(20px, 2.6vw, 28px);
}
.seg-card h3 {
  font-family: var(--serif); font-weight: 400; font-size: 19px;
  color: var(--ink); margin-bottom: 10px;
}
.seg-card p { font-size: 14.5px; line-height: 1.62; color: var(--tx-soft); }

/* ---------- 16. Outras modalidades (§24) ---------- */
.alt { background: var(--cream); padding: 0 0 var(--py); }
.alt-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(18px, 3vw, 40px); flex-wrap: wrap;
  background: var(--green-deep); color: var(--cream);
  border-radius: var(--radius); padding: clamp(24px, 3.4vw, 38px);
}
.alt-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.25; margin-bottom: 8px;
}
.alt-h em { font-style: italic; color: var(--gold); }
.alt-p { font-size: 15px; line-height: 1.6; color: rgba(241,234,217,.72); max-width: 560px; }

/* ---------- FAQ agrupado (§46) ---------- */
.faq-group {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-deep);
  margin: 34px 0 6px; padding-bottom: 8px;
}
.faq-group:first-child { margin-top: 0; }

@media (max-width: 900px) {
  .seg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .fit-grid { grid-template-columns: 1fr; }
  .seg-grid { grid-template-columns: 1fr; }
  .alt-strip { flex-direction: column; align-items: flex-start; }
  .plan-row { flex-direction: column; gap: 2px; }
  .plan-row b { text-align: left; }
  /* tabela de comparação vira cards empilhados */
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-row span { border-top: 1px solid var(--line); }
  .cmp-row span::before {
    content: attr(data-lb); display: block;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    font-weight: 700; color: var(--tx-soft); margin-bottom: 5px;
  }
  .cmp-row span + span::before { color: var(--gold-deep); }
}

/* ---------- breadcrumb (páginas internas) ---------- */
.crumb { background: var(--cream); padding: 104px 0 0; font-size: 13px; color: var(--tx-soft); }
.crumb .wrap { display: flex; gap: 9px; align-items: center; }
.crumb a { color: var(--gold-deep); }
.crumb a:hover { text-decoration: underline; }
.crumb span[aria-current] { color: var(--tx-soft); }

/* ==========================================================================
   V10 — FATIA 3: simulador em etapas (§13) e tela de conclusão (§14)
   ========================================================================== */
.wz-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.wz-pstep {
  flex: 1; height: 5px; border-radius: 3px;
  background: rgba(38,36,24,.12);
  transition: background .3s var(--ease);
}
.wz-pstep.active { background: var(--gold); }
.wz-pstep.done { background: var(--gold-deep); }
.wz-count {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--tx-soft); margin-bottom: 20px;
}

.wz-step { display: none; }
.wz-step.active { display: block; animation: wzFade .32s var(--ease); }
@keyframes wzFade {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.wz-q {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.4vw, 24px); line-height: 1.28;
  color: var(--ink); margin-bottom: 18px;
}

.wz-opts { display: flex; flex-direction: column; gap: 9px; }
.wz-opt {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 15px 17px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper); cursor: pointer;
  font-size: 15px; line-height: 1.4; color: var(--tx);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  min-height: 54px;
}
/* .wz-opt é um <label> dentro de .field: desfaz o caixa-alta dos rótulos de campo */
.field .wz-opt, .wz-opt {
  font-size: 15px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
}
.wz-opt:hover { border-color: var(--gold-deep); }
.wz-opt input {
  appearance: none; -webkit-appearance: none;
  width: 19px; height: 19px; flex-shrink: 0; margin: 0;
  border: 1.6px solid var(--tx-soft); border-radius: 50%;
  transition: border-color .2s var(--ease);
}
.wz-opt input:checked { border-color: var(--gold-deep); border-width: 6px; }
.wz-opt input:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.wz-opt:has(input:checked) { border-color: var(--gold-deep); background: rgba(200,166,95,.1); color: var(--ink); }

.wz-actions { display: flex; gap: 10px; margin-top: 22px; }
.wz-actions .btn { flex: 1; justify-content: center; }
.wz-actions .wz-back { flex: 0 0 34%; }

.wz-purpose {
  margin-top: 16px; font-size: 12.5px; line-height: 1.55; color: var(--tx-soft);
}
.wz-erro {
  display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px;
  background: #fff4f4; border: 1px solid #d9534f; color: #a94442;
  font-size: 13.5px; line-height: 1.5;
}
.wz-erro.show { display: block; }

/* ---------- conclusão ---------- */
.wz-done { display: none; text-align: center; padding: 6px 0 2px; }
.wz-done.show { display: block; animation: wzFade .4s var(--ease); }
.wz-done-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(200,166,95,.18); color: var(--gold-deep);
  margin-bottom: 18px;
}
.wz-done h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.5vw, 25px); line-height: 1.26;
  color: var(--ink); margin-bottom: 12px;
}
.wz-done p { font-size: 14.5px; line-height: 1.62; color: var(--tx-soft); margin-bottom: 10px; }
.wz-done-nota { font-style: italic; }
.wz-done-cta { width: 100%; justify-content: center; margin-top: 16px; }
.wz-done-alt {
  display: inline-block; margin-top: 14px; padding: 6px 2px;
  background: none; border: none; font-family: inherit;
  font-size: 13.5px; color: var(--tx-soft);
  border-bottom: 1px solid var(--line);
}
.wz-done-alt:hover { color: var(--ink); border-color: var(--gold-deep); }

@media (max-width: 520px) {
  .wz-actions { flex-direction: column-reverse; }
  .wz-actions .wz-back { flex: 1 1 auto; }
}

/* ==========================================================================
   V10 — FATIA 4: páginas internas (§25 e §26)
   ========================================================================== */
.pgh { background: var(--cream); padding: clamp(30px, 4vw, 46px) 0 var(--py); }
.pgh-h1 { max-width: 15ch; margin-bottom: 20px; }
.pgh .lead { max-width: 640px; }
.pgh-ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.pgh-micro { margin-top: 16px; font-size: 13.5px; color: var(--tx-soft); }

/* aviso médico obrigatório nas páginas de procedimento (§25) */
.aviso { background: var(--cream-2); padding: clamp(26px, 3.4vw, 38px) 0; }
.aviso-txt {
  max-width: 820px; margin: 0 auto;
  font-size: 13.5px; line-height: 1.65; color: var(--tx-soft); text-align: center;
}
.aviso-txt strong { color: var(--tx); }

/* nas páginas internas o .pos não tem o arco decorativo do index */
.pgh + .pos { padding-top: 0; }
