/* ============================================================
   Feitosa & Freitas — Landing Page
   base.css — estrutura compartilhada pelas 3 direções visuais.
   Tudo que muda entre temas vive em variáveis (ver temas.css).
   Mobile-first: base = 360–390px; breakpoints 768px e 1024px.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--texto);
  background: var(--fundo);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Tipografia base ---------- */

h1, h2, h3 {
  font-family: var(--fonte-titulo);
  font-weight: var(--peso-titulo);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: inherit;
}

h1 { font-size: clamp(1.9rem, 6.5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 4vw, 1.4rem); }

p { margin: 0 0 1rem; }

.eyebrow {
  display: block;
  font-family: var(--fonte-corpo);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--destaque);
  margin-bottom: 1rem;
}

.secao { padding: 4rem 0; }
.secao-cabeca { max-width: 620px; margin-bottom: 2.5rem; }
.secao-cabeca p { color: var(--texto-suave); }

/* Seções sobre fundo escuro */
.secao-escura {
  background: var(--fundo-escuro);
  color: var(--texto-claro);
}
.secao-escura .secao-cabeca p { color: var(--texto-claro-suave); }
.secao-escura .eyebrow { color: var(--destaque-claro); }

/* ---------- Botões WhatsApp (verde fixo nos 3 temas — decisão de reunião) ---------- */

.btn-zap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: #ffffff;
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-botao);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-zap:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45); }
.btn-zap svg { width: 1.35em; height: 1.35em; flex: none; fill: currentColor; }

.btn-zap-mini {
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  box-shadow: none;
  flex: none;
}

/* Mobile-first: botão do header é só ícone; texto aparece a partir de 600px */
.topo .btn-zap-mini .rotulo-zap { display: none; }
@media (min-width: 600px) {
  .topo .btn-zap-mini .rotulo-zap { display: inline; }
}

.micro-nota {
  display: block;
  font-size: 0.8rem;
  color: var(--texto-suave);
  margin-top: 0.7rem;
}

/* ---------- Header fixo ---------- */

.topo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--fundo) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.2s ease;
}
.topo.rolou { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07); }

.topo-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.marca {
  text-decoration: none;
  line-height: 1.2;
}
.marca strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: var(--peso-titulo);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.marca span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--destaque);
}

/* ---------- Hero ---------- */

.hero {
  padding: calc(64px + 2.5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "topo" "foto" "baixo";
  gap: 1.75rem;
}
.hero-topo { grid-area: topo; min-width: 0; }
.hero-baixo { grid-area: baixo; min-width: 0; }
.hero-foto {
  grid-area: foto; min-width: 0;
  position: relative;
  max-width: 460px; justify-self: center;
}

.hero-topo h1 { margin-bottom: 1rem; }
.hero-topo .hero-sub {
  font-size: 1.05rem;
  color: var(--texto-suave);
  max-width: 34rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-baixo .micro-nota { margin-top: 0.8rem; }
/* No mobile, todo o hero centralizado (texto, botões e selos) */
@media (max-width: 767px) {
  .hero-topo { text-align: center; }
  .hero-topo .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-baixo { text-align: center; }
  .hero-ctas { justify-content: center; }
  .selos-hero { justify-content: center; }
}
/* Foto inteira, proporção natural — nunca cortar (regra: priorizar rosto) */
.hero-foto img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: var(--borda-foto);
}
.hero-foto figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--texto-suave);
}

/* ---------- Cards de dor (temas em destaque) ---------- */

.cards-dor {
  display: grid;
  gap: 1.25rem;
}

.card-dor {
  background: var(--fundo-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.card-dor .eyebrow { margin-bottom: 0.6rem; }
.card-dor p { color: var(--texto-suave); flex: 1; }

.link-zap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--destaque-texto);
  margin-top: 0.25rem;
}
.link-zap svg { width: 1.15em; height: 1.15em; fill: #25d366; flex: none; }
.link-zap::after { content: "→"; transition: transform 0.15s ease; }
.link-zap:hover::after { transform: translateX(4px); }

.grid-areas {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.25rem;
}
.area {
  border-top: 1px solid var(--hairline);
  padding-top: 0.9rem;
}
.area h3 { font-size: 1.02rem; margin-bottom: 0.25rem; }
.area p { font-size: 0.88rem; color: var(--texto-suave); margin: 0 0 0.5rem; }
.area .link-zap { font-size: 0.85rem; }

/* ---------- Faixa "INSS negou?" ---------- */

.faixa {
  padding: 3.75rem 0;
  text-align: center;
}
.faixa .faixa-miolo { max-width: 660px; margin: 0 auto; }
.faixa p { color: var(--texto-suave); margin-bottom: 1.5rem; }

/* ---------- Como funciona (fundo escuro) ---------- */

.passos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  counter-reset: passo;
}
.passo { counter-increment: passo; }
.passo .num {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 2.6rem;
  font-weight: var(--peso-titulo);
  line-height: 1;
  color: var(--destaque-claro);
  margin-bottom: 0.5rem;
}
.passo .num::before { content: counter(passo, decimal-leading-zero); }
.passo h3 { color: var(--texto-claro); }
.passo p { color: var(--texto-claro-suave); font-size: 0.95rem; margin: 0; }

/* ---------- Quem cuida do seu caso ---------- */

.foto-duo {
  /* foto vertical da sessão: limita a largura e centraliza (sem corte) */
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
/* Sem corte: a foto aparece inteira (regra: nunca cortar a região do rosto) */
.foto-duo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: var(--borda-foto);
}

.advogadas {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.adv-card {
  background: var(--fundo-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-width: 0;
}
/* Cabeça do card: retrato-medalhão + nome/OAB (compacto no mobile e no desktop) */
.adv-cabeca {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 1.5rem 0;
}
.adv-retrato {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--destaque);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--destaque) 16%, transparent);
  flex: none;
}
.adv-cabeca h3 { margin-bottom: 0.2rem; }
.adv-corpo { padding: 1rem 1.5rem 1.5rem; }
.adv-oab {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--destaque-texto);
  margin-bottom: 0.8rem;
}
.adv-corpo p { color: var(--texto-suave); font-size: 0.95rem; margin: 0; }

/* ---------- Diferenciais ---------- */

.secao-alt { background: var(--fundo-alt); }

.difs {
  display: grid;
  gap: 1.75rem;
}
.dif {
  border-top: 2px solid var(--destaque);
  padding-top: 1rem;
}
.dif h3 { font-size: 1.1rem; }
.dif p { color: var(--texto-suave); font-size: 0.93rem; margin: 0; }

/* ---------- FAQ ---------- */

.faq { max-width: 720px; }
.faq details {
  border-bottom: 1px solid var(--hairline);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--fonte-titulo);
  font-weight: var(--peso-titulo);
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--fonte-corpo);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--destaque-texto);
  flex: none;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--texto-suave);
  font-size: 0.95rem;
  padding-bottom: 1.2rem;
  margin: 0;
  max-width: 60ch;
}

/* ---------- CTA final (fundo escuro) ---------- */

.cta-final { text-align: center; }
.cta-final .secao-cabeca {
  margin-left: auto;
  margin-right: auto;
}
.cta-final h2 { color: var(--texto-claro); }
.cta-final p { color: var(--texto-claro-suave); }
.cta-final .micro-nota { color: var(--texto-claro-suave); }

/* ---------- Rodapé ---------- */

.rodape {
  background: var(--fundo-rodape);
  color: var(--texto-claro-suave);
  padding: 2.5rem 0 6.5rem; /* espaço extra p/ botão flutuante não cobrir conteúdo */
  font-size: 0.85rem;
}
.rodape .marca-rodape {
  font-family: var(--fonte-titulo);
  font-weight: var(--peso-titulo);
  font-size: 1.1rem;
  color: var(--texto-claro);
  margin-bottom: 0.5rem;
}
.rodape a { color: var(--texto-claro); }
.rodape .aviso-legal {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* ---------- Botão flutuante WhatsApp ---------- */

.zap-flutuante {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease;
}
.zap-flutuante:hover { transform: scale(1.07); }
.zap-flutuante svg { width: 30px; height: 30px; fill: #ffffff; }

/* ---------- Pill de revisão (remover na versão final) ---------- */

.pill-revisao {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ============================================================
   Breakpoints
   ============================================================ */

@media (min-width: 768px) {
  .secao { padding: 5.5rem 0; }

  .hero { padding: calc(64px + 4rem) 0 4.5rem; }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: "topo foto" "baixo foto";
    column-gap: 3rem; row-gap: 1.25rem;
    align-items: start;
  }
  .hero-foto { justify-self: end; align-self: center; width: 100%; }

  .cards-dor { grid-template-columns: 1fr 1fr; }
  .grid-areas { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }

  .passos { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  .advogadas { grid-template-columns: 1fr 1fr; }

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

@media (min-width: 1024px) {
  .passos { grid-template-columns: repeat(4, 1fr); }
  .grid-areas { grid-template-columns: repeat(3, 1fr); }
  .difs { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Enriquecimento visual — motion, profundidade e detalhes
   ============================================================ */

section[id], .hero[id] { scroll-margin-top: 84px; }

/* Marca dourada antes dos eyebrows */
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; }
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  flex: none; opacity: 0.85;
}

/* Reveal on scroll (progressivo: só some se o JS estiver ativo) */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1),
                transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
  }
  .js .reveal.visivel { opacity: 1; transform: none; }
}

/* Hero: brilho dourado de fundo + moldura na foto */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -25%; right: -12%;
  width: min(60vw, 560px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--destaque) 20%, transparent), transparent 68%);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-foto-quadro { position: relative; }
.hero-foto-quadro img { position: relative; z-index: 1; }
.hero-foto figcaption { position: relative; z-index: 1; }

/* Selos de confiança no hero */
.selos-hero {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
}
.selos-hero li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--texto-suave);
}
.selos-hero svg {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: var(--destaque); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Nav do header */
.nav-topo { display: none; }

/* Cards de dor com movimento e acento dourado */
.card-dor {
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-dor::after {
  content: ""; position: absolute; top: 0; left: 0;
  height: 3px; width: 0; background: var(--destaque);
  transition: width 0.35s ease;
}
.card-dor:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(90, 14, 18, 0.13);
  border-color: color-mix(in srgb, var(--destaque) 50%, var(--hairline));
}
.card-dor:hover::after { width: 100%; }
.card-dor .link-zap { margin-top: 1rem; }

/* Áreas como tiles clicáveis com ícone — menos texto, mais escaneável */
.grid-areas { gap: 1rem; margin-top: 2rem; }
.area {
  display: block; text-decoration: none; color: inherit;
  background: var(--fundo-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.4rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.area:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(90, 14, 18, 0.10);
  border-color: color-mix(in srgb, var(--destaque) 45%, var(--hairline));
}
.area-icone {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: color-mix(in srgb, var(--destaque) 14%, transparent);
  margin-bottom: 1rem;
}
.area-icone svg {
  width: 23px; height: 23px; fill: none; stroke: var(--destaque);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.area h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.area p { font-size: 0.86rem; color: var(--texto-suave); margin: 0; }
.area .seta {
  position: absolute; top: 1.5rem; right: 1.35rem;
  color: var(--destaque); font-size: 1.05rem; line-height: 1;
  opacity: 0; transform: translateX(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.area:hover .seta { opacity: 1; transform: none; }

/* Ícone nos cards de dor */
.card-icone {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--destaque) 14%, transparent);
  margin-bottom: 1.15rem;
}
.card-icone svg {
  width: 26px; height: 26px; fill: none; stroke: var(--destaque);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Faixa de foto no topo dos cards de dor ----------
   A advogada responsável pelo tema aparece de cara: fundo preto da foto
   fecha com gradiente bordô, eyebrow dourado vive dentro da faixa. */
.card-foto {
  position: relative;
  margin: -1.75rem -1.5rem 1.15rem; /* sangra o padding do card */
}
.card-foto img {
  display: block; width: 100%; height: auto; /* solta o height do atributo HTML */
  aspect-ratio: 16 / 9;
  object-fit: cover; object-position: 50% 18%; /* rosto sempre inteiro */
}
.card-foto::after { /* base escura pra legibilidade do eyebrow */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(16, 4, 5, 0.62) 100%);
  pointer-events: none;
}
.card-foto .eyebrow {
  position: absolute; left: 1.5rem; bottom: 0.85rem; z-index: 1;
  margin: 0; color: var(--destaque-claro);
}
.card-foto + h3 { margin-top: 0; }
.card-dor:hover .card-foto img { transform: scale(1.02); }
.card-foto img { transition: transform 0.45s ease; }
.card-foto { overflow: hidden; }

/* ---------- Cards de dor e áreas: ícones acesos + hover vivo ----------
   Mesma linguagem da jornada: o quadradinho do ícone "acende" com um halo
   dourado quando o card entra na tela, e responde ao toque do mouse. */
@media (prefers-reduced-motion: no-preference) {
  .js .card-dor.reveal.visivel .card-icone { animation: icone-acende 0.7s cubic-bezier(0.16, 0.8, 0.24, 1) 0.3s both; }
  .js .area.reveal.visivel .area-icone { animation: icone-acende 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) 0.25s both; }
  @keyframes icone-acende {
    0%   { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(181, 135, 42, 0); }
    55%  { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(181, 135, 42, 0.22); }
    100% { transform: scale(1); box-shadow: 0 0 0 16px rgba(181, 135, 42, 0); }
  }
}
.card-icone, .area-icone { transition: transform 0.25s ease, background 0.25s ease; }
.card-dor:hover .card-icone,
.area:hover .area-icone {
  transform: scale(1.07) rotate(-3deg);
  background: color-mix(in srgb, var(--destaque) 22%, transparent);
}
.area:hover { background: color-mix(in srgb, var(--destaque) 5%, var(--fundo-card)); }

/* Fio dourado desliza sob o link de conversão quando o card é tocado */
.link-zap { position: relative; }
.link-zap::before {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 1.5px; background: var(--destaque);
  transition: right 0.28s ease;
}
.card-dor:hover .link-zap::before, .link-zap:hover::before { right: 0; }

/* Elevações leves */
.dif { transition: transform 0.2s ease; }
.dif:hover { transform: translateY(-3px); }
.adv-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.adv-card:hover { transform: translateY(-4px); }
.foto-duo img { transition: transform 0.4s ease; }
.foto-duo:hover img { transform: scale(1.015); }

/* Seção de citação (valores do escritório) */
.citacao { text-align: center; }
.citacao blockquote { max-width: 800px; margin: 0 auto; }
.citacao .aspas {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem; line-height: 0.6; color: var(--destaque);
}
.citacao p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(1.55rem, 4.2vw, 2.35rem); line-height: 1.32;
  color: var(--texto-claro); margin: 0 0 1.4rem;
}
.citacao cite {
  font-style: normal; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.26em;
  color: var(--destaque-claro);
}

/* Botão flutuante do WhatsApp com pulso */
.zap-flutuante::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; background: #25d366; z-index: -1;
}
@media (prefers-reduced-motion: no-preference) {
  .zap-flutuante::after { animation: zap-pulso 2.6s ease-out infinite; }
}
@keyframes zap-pulso {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}

@media (min-width: 768px) {
  .hero-foto-quadro::before {
    content: ""; position: absolute;
    top: 18px; right: 18px; left: -18px; bottom: -18px;
    border: 1.5px solid var(--destaque);
    border-radius: var(--radius-card);
    z-index: 0;
  }
  .hero-foto figcaption { margin-top: 1.9rem; }
}

@media (min-width: 920px) {
  .nav-topo { display: flex; gap: 1.7rem; }
  .nav-topo a {
    text-decoration: none; font-size: 0.92rem; font-weight: 500;
    color: var(--texto); opacity: 0.82; position: relative; padding: 0.2rem 0;
    transition: opacity 0.2s ease, color 0.2s ease;
  }
  .nav-topo a:hover { opacity: 1; color: var(--destaque-texto); }
  .nav-topo a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -3px;
    height: 2px; background: var(--destaque); transition: right 0.25s ease;
  }
  .nav-topo a:hover::after, .nav-topo a.ativo::after { right: 0; }
}

/* ============================================================
   Beleza gráfica — timeline, diferenciais em cards, texturas
   ============================================================ */

/* Textura pontilhada sutil + fio dourado no topo das seções escuras */
.secao-escura { position: relative; border-top: 1px solid color-mix(in srgb, var(--destaque) 22%, transparent); }
.secao-escura::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(color-mix(in srgb, var(--destaque) 45%, transparent) 1px, transparent 1px);
  background-size: 22px 22px; opacity: 0.06;
}
.secao-escura .container { position: relative; z-index: 1; }

/* ---------- Timeline "Como funciona" ---------- */
.linha-tempo { list-style: none; margin: 0; padding: 0; position: relative; }

/* trilho + progresso dourado (vertical no mobile) */
.linha-tempo::before {
  content: ""; position: absolute; left: 23px; top: 14px; bottom: 14px; width: 2px;
  background: color-mix(in srgb, var(--destaque) 22%, transparent);
}
.linha-tempo::after {
  content: ""; position: absolute; left: 23px; top: 14px; width: 2px; height: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--destaque) 55%, transparent), var(--destaque-claro));
  box-shadow: 0 0 10px color-mix(in srgb, var(--destaque-claro) 40%, transparent);
  transition: height 1.4s ease-out;
}
.linha-tempo.desenhar::after { height: calc(100% - 28px); }

/* ---------- "Jornada acesa": o fio energiza e cada passo acende quando
   o trilho o alcança (nó pulsa + ícone desperta + texto sobe junto).
   Só com JS ativo e sem reduced-motion; caso contrário, tudo estático. ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .linha-tempo .etapa-no {
    border-color: color-mix(in srgb, var(--destaque) 28%, transparent);
  }
  .js .linha-tempo .etapa-no svg { opacity: 0.35; transition: opacity 0.45s ease; }
  .js .linha-tempo .etapa-num,
  .js .linha-tempo .etapa h3,
  .js .linha-tempo .etapa p { opacity: 0; }

  .js .linha-tempo.desenhar .etapa-no { animation: no-acende 0.65s cubic-bezier(0.16, 0.8, 0.24, 1) both; }
  .js .linha-tempo.desenhar .etapa-no svg { opacity: 1; }
  .js .linha-tempo.desenhar .etapa-num,
  .js .linha-tempo.desenhar .etapa h3,
  .js .linha-tempo.desenhar .etapa p { animation: etapa-surge 0.6s cubic-bezier(0.16, 0.8, 0.24, 1) both; }

  /* cascata casada com o avanço do trilho */
  .js .linha-tempo.desenhar .etapa:nth-child(1) .etapa-no { animation-delay: 0.05s; }
  .js .linha-tempo.desenhar .etapa:nth-child(2) .etapa-no { animation-delay: 0.50s; }
  .js .linha-tempo.desenhar .etapa:nth-child(3) .etapa-no { animation-delay: 0.95s; }
  .js .linha-tempo.desenhar .etapa:nth-child(4) .etapa-no { animation-delay: 1.40s; }
  .js .linha-tempo.desenhar .etapa:nth-child(1) .etapa-no svg { transition-delay: 0.30s; }
  .js .linha-tempo.desenhar .etapa:nth-child(2) .etapa-no svg { transition-delay: 0.75s; }
  .js .linha-tempo.desenhar .etapa:nth-child(3) .etapa-no svg { transition-delay: 1.20s; }
  .js .linha-tempo.desenhar .etapa:nth-child(4) .etapa-no svg { transition-delay: 1.65s; }
  .js .linha-tempo.desenhar .etapa:nth-child(1) .etapa-num,
  .js .linha-tempo.desenhar .etapa:nth-child(1) h3,
  .js .linha-tempo.desenhar .etapa:nth-child(1) p { animation-delay: 0.20s; }
  .js .linha-tempo.desenhar .etapa:nth-child(2) .etapa-num,
  .js .linha-tempo.desenhar .etapa:nth-child(2) h3,
  .js .linha-tempo.desenhar .etapa:nth-child(2) p { animation-delay: 0.65s; }
  .js .linha-tempo.desenhar .etapa:nth-child(3) .etapa-num,
  .js .linha-tempo.desenhar .etapa:nth-child(3) h3,
  .js .linha-tempo.desenhar .etapa:nth-child(3) p { animation-delay: 1.10s; }
  .js .linha-tempo.desenhar .etapa:nth-child(4) .etapa-num,
  .js .linha-tempo.desenhar .etapa:nth-child(4) h3,
  .js .linha-tempo.desenhar .etapa:nth-child(4) p { animation-delay: 1.55s; }

  @keyframes no-acende {
    0%   { transform: scale(0.92); border-color: color-mix(in srgb, var(--destaque) 28%, transparent); box-shadow: 0 0 0 0 rgba(226, 186, 77, 0); }
    55%  { transform: scale(1.12); border-color: var(--destaque); box-shadow: 0 0 0 10px rgba(226, 186, 77, 0.16); }
    100% { transform: scale(1); border-color: var(--destaque); box-shadow: 0 0 0 16px rgba(226, 186, 77, 0); }
  }
  @keyframes etapa-surge {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
}

.etapa { position: relative; padding: 0 0 2.25rem 4.25rem; }
.etapa:last-child { padding-bottom: 0; }
.etapa-no {
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fundo-escuro); border: 2px solid var(--destaque);
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.etapa-no svg { width: 22px; height: 22px; fill: none; stroke: var(--destaque); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.etapa-num {
  display: block; font-family: var(--fonte-titulo);
  color: var(--destaque-claro); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; margin-bottom: 0.15rem;
}
.etapa h3 { color: var(--texto-claro); margin-bottom: 0.3rem; }
.etapa p { color: var(--texto-claro-suave); font-size: 0.95rem; margin: 0; }

/* ---------- Diferenciais em cards com ícone ---------- */
.dif {
  background: var(--fundo-card);
  border: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dif:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(90, 14, 18, 0.10); border-color: color-mix(in srgb, var(--destaque) 45%, var(--hairline)); }
.dif-icone {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: color-mix(in srgb, var(--destaque) 14%, transparent);
  margin-bottom: 1rem;
}
.dif-icone svg { width: 23px; height: 23px; fill: none; stroke: var(--destaque); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dif h3 { font-size: 1.05rem; }

@media (min-width: 768px) {
  /* Timeline horizontal no desktop */
  .linha-tempo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
  .linha-tempo::before { left: 12.5%; right: 12.5%; top: 24px; bottom: auto; width: auto; height: 2px; }
  .linha-tempo::after {
    left: 12.5%; top: 24px; width: 0; height: 2px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--destaque) 55%, transparent), var(--destaque-claro));
    transition: width 1.4s ease-out;
  }
  .linha-tempo.desenhar::after { width: 75%; height: 2px; }
  .etapa { padding: 0; }
  .etapa-no { position: relative; margin: 0 0 1.1rem; }
}

/* ============================================================
   Botão secundário + formulário de captação (alimenta o CRM)
   ============================================================ */
.btn-secundario {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.5rem; border-radius: var(--radius-botao);
  border: 1.5px solid var(--destaque); background: transparent;
  color: var(--destaque-texto); font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-secundario:hover {
  background: color-mix(in srgb, var(--destaque) 12%, transparent);
  transform: translateY(-2px);
}
.btn-secundario::after { content: "↓"; font-weight: 400; }

.form-sec .secao-cabeca { text-align: center; margin: 0 auto 2.5rem; }
.form-wrap { max-width: 640px; }
.form-lead { display: grid; gap: 1.1rem; }
.campo { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.campo label { font-size: 0.8rem; font-weight: 600; color: var(--texto-claro); letter-spacing: 0.02em; }
.campo input, .campo select {
  font-family: inherit; font-size: 1rem; color: var(--texto-claro);
  padding: 0.85rem 1rem; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.campo input::placeholder { color: rgba(255, 255, 255, 0.5); }
.campo input:focus, .campo select:focus {
  outline: none; border-color: var(--destaque);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--destaque) 22%, transparent);
}
.campo select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c6a02c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.campo select option { color: #2a1a1b; }
.btn-form { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-sec .micro-nota { display: block; text-align: center; color: var(--texto-claro-suave); margin-top: 1rem; }
