/* =================================================================
   Monique Goerhing — Diagnóstico Estratégico de Benefícios
   TEMA ESCURO PREMIUM
   Sistema: a página é escura. A luz marca onde se age.
   (formulário e CTA final são claros — o olho vai direto neles)
   ================================================================= */

/* -----------------------------------------------------------------
   TOKENS
   ----------------------------------------------------------------- */
:root {
  /* Superfícies escuras */
  --bg:        #080C14;  /* fundo base, quase preto azulado */
  --surface:   #0F1623;  /* cards */
  --surface-2: #151E2E;  /* cards elevados / hover */
  --line:      rgba(255, 255, 255, .09);
  --line-soft: rgba(255, 255, 255, .05);

  /* Superfícies claras = zonas de ação */
  --ivory:     #F8F6F1;
  --white:     #FFFFFF;

  /* Texto */
  --ink:       #101828;  /* texto sobre superfície clara */
  --text:      #F2F4F7;  /* texto sobre superfície escura */
  --muted:     #8B96A9;  /* secundário no escuro */
  --muted-lt:  #667085;  /* secundário no claro */

  /* Acentos */
  --indigo:      #635BFF;
  --indigo-lift: #7A73FF;
  --indigo-050:  #F1F0FF;
  --mint:        #B8F2D0;
  --mint-deep:   #0E6B44;

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

  /* Raios */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Elevação: no escuro, sombra some — usa-se luz e borda */
  --shadow-card: 0 1px 0 rgba(255, 255, 255, .04) inset, 0 12px 32px rgba(0, 0, 0, .4);
  --shadow-lift: 0 24px 64px rgba(0, 0, 0, .55);
  --glow-indigo: 0 0 0 1px rgba(99, 91, 255, .35), 0 12px 40px rgba(99, 91, 255, .28);

  --maxw: 1120px;
  --maxw-narrow: 760px;
  --gutter: 20px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* -----------------------------------------------------------------
   RESET / BASE
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible { outline: 2px solid var(--indigo-lift); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--white); color: var(--ink);
  padding: 10px 16px; border-radius: var(--r-sm); z-index: 200; text-decoration: none;
}
.skip-link:focus { left: 12px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -----------------------------------------------------------------
   CONTAINERS / SEÇÕES
   ----------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: 64px; position: relative; }
.section__head { margin-bottom: 40px; }
.section__title {
  font-size: clamp(1.6rem, 4.6vw, 2.3rem); font-weight: 800; color: var(--white);
}
.section__title--light { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600; font-size: .8rem; letter-spacing: .04em;
  color: #C7C3FF;
  background: rgba(99, 91, 255, .12);
  border: 1px solid rgba(99, 91, 255, .3);
  padding: 7px 14px; border-radius: var(--r-pill);
}

/* Checkmark */
.tick { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--mint); position: relative; }
.tick::after {
  content: ""; position: absolute; left: 6px; top: 3px; width: 5px; height: 9px;
  border: solid var(--mint-deep); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.tick--light { background: rgba(184, 242, 208, .14); }
.tick--light::after { border-color: var(--mint); }
.tick--indigo { background: rgba(99, 91, 255, .18); }
.tick--indigo::after { border-color: #A7A2FF; }
.tick--mini { width: 16px; height: 16px; }
.tick--mini::after { left: 5px; top: 3px; width: 4px; height: 7px; }

/* -----------------------------------------------------------------
   BOTÕES
   Uma única cor de ação em toda a página: Indigo.
   (CTA com cor própria, distinta da marca, converte melhor)
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1;
  text-decoration: none; cursor: pointer;
  border: 0; border-radius: var(--r-pill);
  padding: 15px 24px; min-height: 50px;
  background: var(--indigo); color: var(--white);
  box-shadow: var(--glow-indigo);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.btn:hover {
  background: var(--indigo-lift);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(99, 91, 255, .5), 0 18px 50px rgba(99, 91, 255, .42);
}
.btn:active { transform: translateY(0); }

/* Secundário no escuro: contorno */
.btn--ghost {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3); }

.btn--sm  { padding: 11px 18px; min-height: 44px; font-size: .9rem; }
.btn--lg  { padding: 18px 30px; min-height: 56px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Compatibilidade com classes antigas do HTML */
.btn--primary { background: var(--indigo); color: var(--white); }
.btn--primary:hover { background: var(--indigo-lift); }
.btn--mint { background: var(--indigo); color: var(--white); }
.btn--mint:hover { background: var(--indigo-lift); }

/* -----------------------------------------------------------------
   CABEÇALHO
   ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 12, 20, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, var(--indigo), #4B44D9);
  color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(99, 91, 255, .4);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); }
.brand__role { font-size: .74rem; color: var(--muted); }
@media (max-width: 400px) { .brand__role { display: none; } }

/* -----------------------------------------------------------------
   HERO — com atmosfera (glow + malha)
   ----------------------------------------------------------------- */
/* overflow:hidden contém o brilho ambiente (mais largo que a tela)
   e impede rolagem horizontal no celular. */
.hero { padding-block: 44px 60px; position: relative; isolation: isolate; overflow: hidden; }

/* Brilho ambiente atrás do hero: dá profundidade sem imagem pesada */
.hero::before {
  content: "";
  position: absolute; z-index: -2;
  top: -280px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 720px;
  background:
    radial-gradient(closest-side, rgba(99, 91, 255, .30), transparent 70%),
    radial-gradient(closest-side, rgba(184, 242, 208, .10), transparent 70%);
  background-position: 30% 40%, 75% 60%;
  background-repeat: no-repeat;
  background-size: 70% 90%, 55% 70%;
  filter: blur(20px);
  pointer-events: none;
}
/* Malha sutil: textura de produto de tecnologia */
.hero::after {
  content: "";
  position: absolute; z-index: -1; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(closest-side at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero__grid { display: grid; gap: 32px; }

.hero__title {
  margin-top: 18px;
  font-size: clamp(2rem, 6.6vw, 3.1rem);
  font-weight: 800; letter-spacing: -0.035em; color: var(--white);
}
.hero__sub { margin-top: 18px; font-size: 1.06rem; color: var(--muted); max-width: 46ch; }
.hero__pull {
  margin-top: 22px; padding: 14px 18px;
  border-left: 2px solid var(--mint);
  background: linear-gradient(90deg, rgba(184, 242, 208, .07), transparent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text);
}
.hero__points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.hero__points li { display: flex; align-items: center; gap: 10px; font-size: .96rem; color: var(--text); }

/* -----------------------------------------------------------------
   CARD DO FORMULÁRIO — o ponto mais claro da página inteira
   ----------------------------------------------------------------- */
.lead-card {
  background: var(--ivory);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  scroll-margin-top: 88px;
  min-height: 430px;
  display: flex; flex-direction: column;
  color: var(--ink);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(255, 255, 255, .08);
}
.lead-card > form { flex: 1; display: flex; flex-direction: column; }
.lead-card__head { margin-bottom: 20px; }
.lead-card__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mint-deep); background: var(--mint);
  padding: 6px 12px; border-radius: var(--r-pill);
}
.lead-card__title { margin-top: 12px; font-size: 1.38rem; font-weight: 800; color: var(--ink); }
.lead-card__sub { margin-top: 6px; color: var(--muted-lt); font-size: .95rem; }

/* -----------------------------------------------------------------
   PROGRESSO E ETAPAS
   ----------------------------------------------------------------- */
.progress { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.progress[hidden] { display: none; }
.progress__track { flex: 1; height: 5px; border-radius: var(--r-pill); background: #E4E7EC; overflow: hidden; }
.progress__fill {
  display: block; height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-lift));
  border-radius: var(--r-pill);
  transition: width .35s var(--ease);
}
.progress__label { flex: 0 0 auto; font-family: var(--font-display); font-weight: 600; font-size: .78rem; color: var(--muted-lt); }

.step-panel { animation: stepIn .3s var(--ease); }
.step-panel[hidden] { display: none; }
@keyframes stepIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }

.field__label--step { font-size: 1.14rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 14px; }
.step-intro { margin-bottom: 18px; color: var(--muted-lt); font-size: .95rem; }

.step-back {
  margin-top: 16px; padding: 8px 4px; min-height: 44px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: .88rem; color: var(--muted-lt);
  transition: color .16s var(--ease);
}
.step-back::before { content: "\2190"; margin-right: 6px; }
.step-back:hover { color: var(--ink); }

.step-panel--done { text-align: center; padding-block: 12px; }
.done-mark {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--mint); margin-bottom: 16px; position: relative;
}
.done-mark::after {
  content: ""; position: absolute; left: 19px; top: 13px; width: 10px; height: 20px;
  border: solid var(--mint-deep); border-width: 0 3px 3px 0; transform: rotate(45deg);
}
.done-title { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.done-text { margin: 8px 0 20px; color: var(--muted-lt); font-size: .95rem; }

/* -----------------------------------------------------------------
   CAMPOS (dentro do card claro)
   ----------------------------------------------------------------- */
.field { border: 0; padding: 0; margin: 0 0 18px; min-width: 0; }
.field__label {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--ink); margin-bottom: 10px; padding: 0;
}
.field__opt { color: var(--muted-lt); font-weight: 500; font-size: .85rem; }

.chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font: inherit; font-family: var(--font-body); font-size: .93rem;
  padding: 11px 15px; min-height: 44px;
  border: 1.5px solid #E4E7EC; border-radius: var(--r-pill);
  background: var(--white); color: var(--ink); cursor: pointer;
  transition: border-color .16s var(--ease), background-color .16s var(--ease),
              color .16s var(--ease), box-shadow .16s var(--ease), transform .16s var(--ease);
}
.chip:hover { border-color: #C9C5FF; transform: translateY(-1px); }
.chip[aria-checked="true"] {
  background: var(--indigo); border-color: var(--indigo); color: var(--white);
  box-shadow: 0 8px 20px rgba(99, 91, 255, .3);
}

.chip-group--stack { flex-direction: column; gap: 10px; }
.chip--wide {
  width: 100%; text-align: left; border-radius: var(--r-md);
  padding: 15px 18px; min-height: 54px; font-size: .98rem;
}

.input {
  width: 100%; font: inherit; font-size: 16px;
  padding: 14px 16px; min-height: 50px;
  border: 1.5px solid #E4E7EC; border-radius: var(--r-md);
  background: var(--white); color: var(--ink);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.input::placeholder { color: #98a2b3; }
.input:focus { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(99, 91, 255, .14); outline: none; }
.input[aria-invalid="true"] { border-color: #d92d20; }

.field__error { min-height: 0; margin: 8px 0 0; color: #b42318; font-size: .85rem; font-weight: 500; }
.field__error:empty { margin: 0; }

.form-reassure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; font-family: var(--font-display); font-weight: 600;
  font-size: .88rem; color: var(--ink); text-align: center;
}
.form-privacy { margin-top: 8px; font-size: .8rem; color: var(--muted-lt); text-align: center; line-height: 1.55; }
.form-privacy a { color: var(--muted-lt); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--ink); }

/* -----------------------------------------------------------------
   O DIAGNÓSTICO — o que você recebe + para quem é
   ----------------------------------------------------------------- */
.section--offer { padding-block: 24px 8px; }
.offer-grid { display: grid; gap: 16px; }

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
/* Fio de luz no topo do card principal: detalhe de produto premium */
.offer-card--main::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 91, 255, .8), transparent);
}
.offer-card--who { background: transparent; border-style: dashed; box-shadow: none; }

.offer-card__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: .7rem; letter-spacing: .06em;
  text-transform: uppercase; color: #C7C3FF;
  background: rgba(99, 91, 255, .14); border: 1px solid rgba(99, 91, 255, .28);
  padding: 5px 11px; border-radius: var(--r-pill);
}
.offer-card__tag--soft {
  color: var(--mint); background: rgba(184, 242, 208, .1); border-color: rgba(184, 242, 208, .25);
}
.offer-card__title { margin-top: 14px; font-size: 1.32rem; font-weight: 800; color: var(--white); }
.offer-card__subtitle { margin-top: 14px; font-size: 1.06rem; font-weight: 700; color: var(--white); }

.offer-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 13px; }
.offer-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text);
}
.offer-list--soft li { font-weight: 500; font-size: .96rem; color: var(--muted); }

/* -----------------------------------------------------------------
   MÉTODO
   ----------------------------------------------------------------- */
.method__badge {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #C7C3FF;
  padding: 8px 16px; background: rgba(99, 91, 255, .12);
  border: 1px solid rgba(99, 91, 255, .28); border-radius: var(--r-pill);
}
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.step {
  padding: 26px 22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: rgba(99, 91, 255, .35); background: var(--surface-2); }
.step__num {
  display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: #C7C3FF; background: rgba(99, 91, 255, .14);
  border: 1px solid rgba(99, 91, 255, .3);
  width: 44px; height: 44px; line-height: 42px; text-align: center;
  border-radius: 12px; margin-bottom: 16px;
}
.step__title { font-size: 1.16rem; font-weight: 700; color: var(--white); }
.step__desc { margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* -----------------------------------------------------------------
   AUTORIDADE
   ----------------------------------------------------------------- */
.section--authority { position: relative; }
.section--authority::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 20% 50%, rgba(99, 91, 255, .13), transparent 70%);
  pointer-events: none;
}
.authority__grid { display: grid; gap: 36px; position: relative; }

.authority__credential { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; }
.authority__years {
  font-family: var(--font-display); font-weight: 800; font-size: 3rem;
  line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--mint), #6FD3A0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.authority__years-label {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--muted); max-width: 16ch; line-height: 1.3;
}

.authority__lead { margin-top: 16px; font-size: 1.18rem; font-weight: 600; color: var(--white); }
.authority__text { margin-top: 14px; color: var(--muted); font-size: 1rem; }
.authority__highlights { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.authority__highlights li { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: .98rem; }

.authority__visual { display: grid; place-items: center; }
.authority__photo {
  width: 100%; max-width: 280px; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-lift);
}
.authority__photo[hidden] { display: none; }
.monogram[hidden] { display: none; }

.monogram { position: relative; width: 200px; height: 200px; display: grid; place-items: center; }
.monogram__letters {
  font-family: var(--font-display); font-weight: 800; font-size: 4.4rem; letter-spacing: -0.03em;
  color: var(--white); z-index: 2;
}
.monogram__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .12); }
.monogram__ring--1 { inset: 0; border-color: rgba(99, 91, 255, .55); box-shadow: 0 0 40px rgba(99, 91, 255, .25); }
.monogram__ring--2 { inset: 26px; border-color: rgba(184, 242, 208, .35); }

/* -----------------------------------------------------------------
   DEPOIMENTO (ativado só quando houver um real)
   ----------------------------------------------------------------- */
.quote {
  margin: 0; padding: 32px 28px; background: var(--surface);
  border: 1px solid var(--line); border-left: 2px solid var(--mint);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
}
.quote__text {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem); line-height: 1.45; color: var(--white);
}
.quote__by { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--white); }
.quote__role { font-size: .86rem; color: var(--muted); }

/* -----------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------- */
.faq { margin-top: 28px; display: grid; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .18s var(--ease);
}
.faq__item:hover { border-color: rgba(255, 255, 255, .16); }
.faq__q { margin: 0; }
.faq__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 18px 20px; min-height: 58px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--white);
  background: transparent; border: 0; cursor: pointer;
}
.faq__icon { flex: 0 0 auto; position: relative; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: #A7A2FF;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__btn[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__a { padding: 0 20px; }
.faq__a[hidden] { display: none; }
.faq__a p { padding-bottom: 20px; color: var(--muted); font-size: .96rem; }

/* -----------------------------------------------------------------
   CTA FINAL — bloco claro: a segunda zona de ação
   ----------------------------------------------------------------- */
.section--cta { padding-block: 0 64px; }
.cta-final {
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, #FFFFFF 0%, var(--ivory) 60%);
  color: var(--ink);
  border-radius: 28px;
  padding: 52px 28px;
  box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; top: 0; left: 15%; right: 15%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--mint), transparent);
}
.cta-final__title { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 800; color: var(--ink); }
.cta-final__text { margin: 16px auto 0; max-width: 46ch; color: var(--muted-lt); font-size: 1.04rem; }
.cta-final .btn { margin-top: 28px; }
.cta-final__note { margin-top: 16px; font-size: .9rem; color: var(--muted-lt); }

/* -----------------------------------------------------------------
   PÁGINAS LEGAIS (privacidade.html / termos.html)
   Leitura longa em fundo escuro: medida curta, respiro e hierarquia.
   ----------------------------------------------------------------- */
.legal { padding-block: 48px 72px; }
.legal__eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: #A7A2FF;
}
.legal__title { margin-top: 10px; font-size: clamp(1.9rem, 5.4vw, 2.6rem); font-weight: 800; color: var(--white); }
.legal__meta { margin-top: 12px; font-size: .88rem; color: var(--muted); }
.legal__meta strong { color: var(--text); }

.legal__body { margin-top: 36px; }
.legal__lead {
  font-size: 1.06rem; color: var(--text);
  padding: 20px 22px; background: var(--surface);
  border: 1px solid var(--line); border-left: 2px solid var(--mint);
  border-radius: var(--r-md); margin-bottom: 8px;
}
.legal__body h2 {
  margin-top: 40px; margin-bottom: 12px;
  font-size: 1.22rem; font-weight: 800; color: var(--white);
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.legal__body h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1rem; font-weight: 700; color: var(--text); }
.legal__body p { margin-top: 12px; color: var(--muted); font-size: .98rem; line-height: 1.7; max-width: 68ch; }
.legal__body p strong { color: var(--text); font-weight: 600; }
.legal__body a { color: #A7A2FF; text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--white); }

.legal__list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; max-width: 68ch; }
.legal__list li {
  position: relative; padding-left: 22px;
  color: var(--muted); font-size: .98rem; line-height: 1.65;
}
.legal__list li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--indigo);
}
.legal__list li strong { color: var(--text); font-weight: 600; }

.legal__note {
  margin-top: 44px; padding: 18px 20px;
  background: rgba(99, 91, 255, .07);
  border: 1px dashed rgba(99, 91, 255, .32);
  border-radius: var(--r-md);
  font-size: .9rem !important; color: var(--muted) !important;
}

/* -----------------------------------------------------------------
   RODAPÉ
   ----------------------------------------------------------------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line-soft); color: var(--muted); padding-block: 40px 32px; }
.footer__inner { display: grid; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.footer__name { display: block; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1rem; }
.footer__sep { color: rgba(255, 255, 255, .3); margin-inline: 4px; }
.footer__slogan { display: block; margin-top: 6px; font-size: .92rem; color: var(--muted); }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a { color: var(--muted); text-decoration: none; font-size: .92rem; transition: color .16s var(--ease); }
.footer__links a:hover { color: var(--white); }
/* #727C8C = 4.64:1 sobre o fundo: passa em AA e continua discreto */
.footer__disclaimer { margin-top: 22px; font-size: .8rem; color: #727C8C; line-height: 1.6; }

/* -----------------------------------------------------------------
   BOTÃO FLUTUANTE DE WHATSAPP
   ----------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  background: #25D366; color: #05240F; text-decoration: none;
  box-shadow: 0 10px 34px rgba(37, 211, 102, .4);
  opacity: 0; transform: translateY(12px) scale(.9);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-float.is-visible { opacity: 1; transform: none; }
.wa-float:hover { transform: translateY(-2px); }
.wa-float[hidden] { display: none; }

/* -----------------------------------------------------------------
   REVEAL
   ----------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =================================================================
   BREAKPOINTS
   ================================================================= */
@media (min-width: 560px) {
  .lead-card { padding: 30px 28px; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 768px) {
  .section { padding-block: 88px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .offer-grid { grid-template-columns: 1.15fr .85fr; gap: 20px; align-items: start; }
  .authority__grid { grid-template-columns: 280px 1fr; align-items: center; gap: 56px; }
  .cta-final { padding: 72px 48px; }
}

@media (min-width: 960px) {
  .hero { padding-block: 60px 84px; }
  .hero__grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 52px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
  .section__head .method__badge { margin-top: 0; flex: 0 0 auto; }
}

/* =================================================================
   PREFERS-REDUCED-MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
