/* ============ 21Go — Landing do consultor ============
   Paleta da marca: ciano #00a9fb · verde #2ecc71 · laranja #f4961e
   Tipos: Bricolage Grotesque (display) · Figtree (corpo) · Archivo (placa)
====================================================== */
:root {
  --azul: #00a9fb;
  --azul-escuro: #0086c9;
  --verde: #2ecc71;
  --laranja: #f4961e;
  --navy: #0d2a4d;
  --navy-2: #123862;
  --bg: #fafafa;
  --ink: #16263a;
  --cinza: #5d6f84;
  --branco: #fff;
  --borda: #e4e9f0;
  --sombra: 0 12px 40px -12px rgba(13, 42, 77, .18);
  --raio: 18px;
  --fonte-display: "Bricolage Grotesque", sans-serif;
  --fonte-corpo: "Figtree", sans-serif;
  --fonte-placa: "Archivo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--fonte-corpo);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92%); margin-inline: auto; }
.oculta { display: none !important; }
.centro { text-align: center; margin-top: 36px; }

/* ---------- chips, títulos ---------- */
.chip {
  display: inline-block; font-weight: 700; font-size: 12.5px; letter-spacing: .06em;
  padding: 7px 14px; border-radius: 999px; text-transform: uppercase;
}
.chip-laranja { background: rgba(244,150,30,.14); color: var(--laranja); }
.chip-azul { background: rgba(0,169,251,.12); color: var(--azul-escuro); }
.titulo {
  font-family: var(--fonte-display);
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
  margin: 14px 0 38px;
}
.titulo-claro { color: #fff; }
.ponto { color: var(--laranja); }
.grifo {
  background: linear-gradient(180deg, transparent 58%, rgba(46,204,113,.35) 58%);
  border-radius: 4px; padding: 0 2px;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fonte-corpo); font-weight: 700; font-size: 16px; text-align: center;
  border: 0; border-radius: 14px; padding: 15px 26px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--laranja), #ff7a00);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(244,150,30,.55);
}
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 8px 18px -8px rgba(37,211,102,.6); }
.wa-logo { height: 34px; width: auto; margin: -8px 0; filter: brightness(0) invert(1); }
.btn-topo { padding: 10px 18px; font-size: 14px; width: auto; }
.btn-grande { width: auto; font-size: 18px; padding: 18px 36px; }

/* ---------- header ---------- */
.topo {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,42,77,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topo-inner { display: flex; align-items: center; gap: 28px; padding: 13px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 62px; width: auto; display: block; }
.logo-img-rodape { height: 52px; width: auto; display: block; margin-bottom: 14px; }
.logo-mark { width: 40px; height: 40px; }
.logo-texto {
  font-family: var(--fonte-display); font-weight: 800; font-size: 25px; color: #fff;
  line-height: 1; display: flex; flex-direction: column;
}
.logo-texto em { font-style: normal; color: var(--laranja); display: inline; }
.logo-texto small {
  font-family: var(--fonte-corpo); font-weight: 600; font-size: 8.5px;
  letter-spacing: .34em; color: var(--azul); margin-top: 3px;
}
.topo-nav { display: flex; gap: 22px; margin-left: auto; }
.topo-nav a { color: #cfe0f2; font-weight: 600; font-size: 14.5px; transition: color .15s; }
.topo-nav a:hover { color: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 85% -10%, rgba(0,169,251,.35), transparent 65%),
    radial-gradient(560px 380px at -8% 110%, rgba(244,150,30,.22), transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 90px, rgba(255,255,255,.022) 90px 92px);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding: 76px 0 110px;
}
.hero-texto h1 {
  font-family: var(--fonte-display); color: #fff;
  font-size: clamp(32px, 4.8vw, 52px); font-weight: 800;
  line-height: 1.07; letter-spacing: -.02em; margin: 18px 0;
}
.hero-sub { color: #b9cde2; font-size: 18px; max-width: 48ch; }
.hero-provas { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 26px; }
.hero-provas li { display: flex; align-items: center; gap: 8px; color: #d9e7f5; font-size: 14.5px; font-weight: 600; }
.hero-onda { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-onda svg { width: 100%; height: 70px; }

/* ---------- hero minimalista (versão clínica — foco na placa) ---------- */
.hero-min-inner {
  position: relative; max-width: 540px; margin-inline: auto; text-align: center;
  padding: 30px 0 80px;
}
.hero-min h1 { margin: 12px 0 8px; }
.hero-min h1 {
  font-family: var(--fonte-display); color: #fff;
  font-size: clamp(28px, 5vw, 42px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.02em; margin: 16px 0 10px;
}
.hero-min-sub { color: #c3d6ea; font-size: 17px; margin: 0 auto 26px; max-width: 36ch; }
.hero-min .sim-card { text-align: left; max-width: 460px; margin-inline: auto; }
.sim-instrucao {
  font-size: 15px; font-weight: 700; color: var(--navy); text-align: center;
  margin-bottom: 12px;
}
.hero-provas-min {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 22px; margin-top: 24px;
}
.hero-provas-min li { color: #aec6e0; font-size: 13.5px; font-weight: 600; }

/* "Tudo incluso" — pílulas desenhadas */
.incluso { background: var(--bg); padding: 40px 0 48px; text-align: center; }
.incluso-label {
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cinza); margin-bottom: 18px;
}
.incluso-pills {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 720px; margin-inline: auto;
}
.incluso-pills li {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--borda); border-radius: 999px;
  padding: 9px 16px 9px 13px; font-size: 14px; font-weight: 600; color: var(--ink);
  box-shadow: 0 4px 14px -10px rgba(13,42,77,.4);
}
.incluso-pills li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%; flex: none;
  background: var(--verde) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5 5-5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}
.pill-aster { color: var(--laranja); font-weight: 800; margin-left: 1px; }

/* fecho da página: CTA volta-ao-topo + nota do asterisco */
.incluso-fim { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.incluso-cta { width: auto; min-width: 240px; }
.incluso-nota { font-size: 12.5px; color: var(--cinza); max-width: 42ch; line-height: 1.5; }

/* rodapé com acabamento (gradiente da marca + claim + textura) */
.rodape-min {
  position: relative; text-align: center; padding: 52px 0 30px;
  color: #9fb6cc;
  background:
    radial-gradient(620px 280px at 50% -40%, rgba(0,169,251,.16), transparent 70%),
    #081c33;
}
.rodape-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--verde), var(--laranja));
}
.rodape-min .logo-img-rodape { margin: 0 auto 18px; }
.rodape-claim {
  font-family: var(--fonte-display); font-weight: 700; font-size: clamp(19px, 3vw, 24px);
  color: #fff; line-height: 1.3; letter-spacing: -.01em; margin-bottom: 22px;
}
.rodape-contato {
  display: inline-block; color: #dce8f4; font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 8px 18px; margin-bottom: 24px;
}
.rodape-contato strong { color: #fff; }
.rodape-legal { font-size: 12px; color: #7d97b2; max-width: 56ch; margin: 0 auto 16px; line-height: 1.55; }
.rodape-min .rodape-fim {
  font-size: 12px; color: #5f7794; border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 16px; max-width: 320px; margin: 0 auto;
}

/* entrada animada do hero */
.anima-1, .anima-2, .anima-3, .anima-4, .anima-5 {
  opacity: 0; transform: translateY(18px);
  animation: subir .7s cubic-bezier(.2,.7,.3,1) forwards;
}
.anima-2 { animation-delay: .08s; } .anima-3 { animation-delay: .16s; }
.anima-4 { animation-delay: .24s; } .anima-5 { animation-delay: .3s; }
@keyframes subir { to { opacity: 1; transform: none; } }

/* ---------- card do simulador ---------- */
.sim-card {
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--azul), var(--verde), var(--laranja)) border-box;
  border-radius: 24px; padding: 34px 32px;
  box-shadow: 0 30px 70px -22px rgba(0,0,0,.5);
  position: relative;
}
.sim-card h2 { font-family: var(--fonte-display); font-size: 30px; font-weight: 800; letter-spacing: -.01em; }
.sim-sub { color: var(--cinza); margin: 6px 0 20px; font-weight: 500; }

/* A PLACA MERCOSUL — assinatura do site */
.placa-mercosul {
  display: block; background: #fff; border: 3px solid #1b1b1b; border-radius: 10px;
  overflow: hidden; box-shadow: inset 0 -3px 0 rgba(0,0,0,.08), 0 6px 18px -8px rgba(0,0,0,.3);
  cursor: text; transition: transform .15s ease, box-shadow .15s ease;
}
.placa-mercosul:focus-within { transform: scale(1.02); box-shadow: 0 0 0 4px rgba(0,169,251,.3), 0 10px 24px -8px rgba(0,0,0,.35); }
.placa-banda {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, #0e4fc1, #0a3d9b); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .35em; padding: 5px 12px 4px;
}
.placa-banda i { font-style: normal; font-size: 8px; letter-spacing: .2em; color: #ffd86b; }
.placa-banda b { font-size: 9px; letter-spacing: .1em; border: 1px solid rgba(255,255,255,.7); border-radius: 3px; padding: 1px 4px; }
.placa-mercosul input {
  width: 100%; border: 0; outline: 0; text-align: center;
  font-family: var(--fonte-placa); font-weight: 800; font-size: clamp(38px, 6vw, 50px);
  letter-spacing: .14em; padding: 8px 6px 10px; color: #1b1b1b; text-transform: uppercase;
  background: transparent;
}
.placa-mercosul input::placeholder { color: #c9ced6; }

.campo { margin-bottom: 14px; }
.campo label { display: block; font-size: 13.5px; font-weight: 700; color: var(--cinza); margin-bottom: 6px; }
.campo input {
  width: 100%; border: 2px solid var(--borda); border-radius: 12px;
  font-family: var(--fonte-corpo); font-size: 17px; font-weight: 600;
  padding: 13px 15px; outline: 0; transition: border-color .15s, box-shadow .15s;
}
.campo input:focus { border-color: var(--azul); box-shadow: 0 0 0 4px rgba(0,169,251,.14); }
.sim-select {
  width: 100%; border: 2px solid var(--borda); border-radius: 12px;
  font-family: var(--fonte-corpo); font-size: 16px; font-weight: 600;
  padding: 13px 15px; outline: 0; background: #fff; color: var(--escuro, #1a1a2e);
  appearance: none; -webkit-appearance: none; cursor: pointer;
  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 fill='%2300A9FB' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
  transition: border-color .15s, box-shadow .15s;
}
.sim-select:focus { border-color: var(--azul); box-shadow: 0 0 0 4px rgba(0,169,251,.14); }
/* combo com busca no formulário FIPE (02/07): input filtra a lista gigante */
.combo { position: relative; }
.combo-select-oculto { display: none !important; }
.combo-busca { cursor: text; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Ccircle cx='6.2' cy='6.2' r='4.6' fill='none' stroke='%2300A9FB' stroke-width='1.8'/%3E%3Cpath d='m9.8 9.8 3.6 3.6' stroke='%2300A9FB' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.combo-busca::placeholder { color: #9aa7b5; font-weight: 500; }
.combo-lista {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: #fff; border: 1px solid var(--borda); border-radius: 12px;
  max-height: 240px; overflow-y: auto; overscroll-behavior: contain;
  box-shadow: 0 18px 34px -14px rgba(10,30,60,.35);
  display: flex; flex-direction: column; padding: 4px;
}
.combo-item {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  font-family: var(--fonte-corpo); font-size: 15px; font-weight: 600; color: var(--escuro, #1a1a2e);
  padding: 11px 12px; border-radius: 8px; cursor: pointer;
}
.combo-item:hover { background: #f2f7fc; }
.combo-item.ativo { background: rgba(0,169,251,.10); color: var(--azul-escuro); }
.combo-vazio { padding: 12px 14px; color: var(--cinza); font-size: 13.5px; font-weight: 500; }
.campo-erro { color: #e74c3c; font-size: 13.5px; font-weight: 600; min-height: 18px; margin: 8px 0 10px; }
.sim-nota { text-align: center; color: var(--cinza); font-size: 13px; margin-top: 14px; }
.link-voltar {
  display: block; margin: 14px auto 0; background: none; border: 0;
  color: var(--cinza); font-weight: 600; font-size: 14px; cursor: pointer;
}
.link-voltar:hover { color: var(--azul-escuro); }

/* opção carro 0km (sem placa) → WhatsApp */
.sim-zerokm { margin-top: 18px; }
.sim-ou {
  display: flex; align-items: center; text-align: center;
  color: var(--cinza); font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.sim-ou::before, .sim-ou::after {
  content: ""; flex: 1; height: 1px; background: var(--borda);
}
.sim-ou span { padding: 0 12px; }
.sim-zerokm-txt {
  color: var(--cinza); font-size: 13px; line-height: 1.5;
  text-align: center; margin: 0 0 12px;
}
.link-zerokm {
  display: block; text-align: center; text-decoration: none;
  border: 0; border-radius: 13px;
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  padding: 15px 16px; color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 24px -10px rgba(0,134,201,.65);
  transition: transform .15s ease, filter .15s ease;
}
.link-zerokm:hover { transform: translateY(-2px); filter: brightness(1.06); }
.zerokm-destaque { font-weight: 800; color: #fff; }

/* loading: placa sendo "escaneada" */
.placa-scan { position: relative; width: fit-content; margin: 16px auto 4px; }
.placa-mini {
  font-family: var(--fonte-placa); font-weight: 800; font-size: 34px; letter-spacing: .14em;
  border: 3px solid #1b1b1b; border-radius: 8px; padding: 14px 22px 10px; color: #1b1b1b;
  border-top: 14px solid #0e4fc1;
}
.scan-linha {
  position: absolute; left: 6px; right: 6px; height: 3px; border-radius: 3px;
  background: var(--verde); box-shadow: 0 0 14px var(--verde);
  animation: scan 1.2s ease-in-out infinite alternate; top: 18px;
}
@keyframes scan { from { top: 16px; } to { top: calc(100% - 10px); } }
.carregando-msg { text-align: center; font-weight: 700; color: var(--cinza); margin-top: 18px; }
.reticencias::after { content: ""; animation: pontos 1.2s steps(4) infinite; }
@keyframes pontos { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }

/* ---------- resultado ---------- */
.resultado { background: var(--bg); padding: 26px 0 10px; }
.res-veiculo {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  background: #fff; border: 1px solid var(--borda); border-radius: var(--raio);
  padding: 16px 22px; margin-bottom: 22px; box-shadow: var(--sombra);
}
.res-veiculo img { width: 44px; height: auto; }
.res-veiculo strong { font-family: var(--fonte-display); font-size: 19px; }
.res-veiculo span { color: var(--cinza); font-size: 14.5px; font-weight: 600; }
.res-placa-tag {
  font-family: var(--fonte-placa); font-weight: 800; letter-spacing: .1em;
  border: 2px solid #1b1b1b; border-radius: 6px; padding: 2px 10px; font-size: 15px;
  border-top: 7px solid #0e4fc1; margin-left: auto;
}
.res-aviso {
  background: rgba(244,150,30,.1); border: 1px solid rgba(244,150,30,.4);
  color: #9a5d0d; border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 600;
  margin-bottom: 20px;
}
.res-planos { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; }

/* abas Básico/VIP (pedido do Gabriel — trocar plano sem rolar) */
.res-tabs {
  display: flex; gap: 6px; max-width: 360px; margin: 0 auto 20px;
  background: #eef3f8; padding: 5px; border-radius: 14px;
}
.res-tab {
  flex: 1; border: 0; background: transparent; cursor: pointer;
  font-family: var(--fonte-corpo); font-weight: 700; font-size: 15px; color: var(--cinza);
  padding: 11px 10px; border-radius: 10px; transition: all .15s ease;
}
.res-tab.ativo { background: #fff; color: var(--navy); box-shadow: 0 3px 10px -4px rgba(13,42,77,.35); }
.res-planos-tabbed { display: block; max-width: 460px; margin-inline: auto; }
.res-plano-wrap { animation: subir .35s ease both; }
.res-plano {
  background: #fff; border: 1px solid var(--borda); border-radius: 22px;
  padding: 28px; box-shadow: var(--sombra); display: flex; flex-direction: column;
  animation: subir .6s cubic-bezier(.2,.7,.3,1) both;
}
.res-plano:nth-child(2) { animation-delay: .1s; }
.res-plano h3 {
  font-family: var(--fonte-display); font-size: 24px; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.selo-rastreador {
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(46,204,113,.15); color: #1d9e54; padding: 5px 10px; border-radius: 999px;
}
.res-preco { margin: 18px 0 10px; }
.res-preco .final {
  font-family: var(--fonte-display); font-weight: 800; font-size: 46px; letter-spacing: -.02em;
  color: var(--navy); line-height: 1.02;
}
.res-media-label { font-size: 13px; font-weight: 600; color: var(--cinza); margin-top: 2px; }
/* taxa de ativação (02/07): pagamento ÚNICO — depois da história mensal, colada no CTA.
   Laranja tracejado = "outro tipo de pagamento" (não compete com o verde da economia). */
.res-ativacao {
  background: rgba(244,150,30,.06); border: 1px dashed rgba(244,150,30,.55);
  border-radius: 12px; padding: 14px 16px; margin: 18px 0 0;
}
.res-ativacao-head {
  font-size: 14px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
  color: var(--cinza); display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.res-ativacao-off {
  background: rgba(244,150,30,.16); color: #b06a0a; font-size: 12px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px; letter-spacing: .04em; flex: none;
}
/* pilha "de X por Y": cada informação na sua linha, sem quebra no meio de frase */
.res-ativacao-de { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--cinza); }
.res-ativacao-de s { opacity: .85; }
.res-ativacao-valor {
  font-family: var(--fonte-display); font-weight: 800; font-size: 34px;
  letter-spacing: -.02em; color: var(--navy); line-height: 1.05; margin-top: 2px;
}
.res-ativacao-parcelas { font-size: 13.5px; font-weight: 600; color: var(--cinza); margin-top: 6px; }
.res-ativacao-unica { font-size: 13px; font-weight: 800; color: #b06a0a; margin-top: 2px; }
/* botão "tirar dúvidas" (02/07) — verde igual aos demais CTAs de WhatsApp,
   depois dos benefícios e antes do link copiável */
.res-duvidas { text-align: center; margin: 14px auto 4px; }
/* quebra controlada nos CTAs: no mobile quebra na vírgula, nunca no meio de "saber mais" */
.nowrap { white-space: nowrap; }
/* descontos como letra miúda (preço cheio é o principal) */
.res-descontos { background: #f6f9fc; border: 1px solid var(--borda); border-radius: 12px; padding: 12px 14px; margin: 0 0 16px; }
.res-descontos-tit { font-size: 12px; font-weight: 700; color: var(--cinza); margin-bottom: 7px; }
.res-condicoes { list-style: none; }
.res-condicoes li { font-size: 12.5px; color: var(--cinza); font-weight: 500; padding: 2px 0 2px 18px; position: relative; line-height: 1.45; }
.res-condicoes li b { color: var(--ink); font-weight: 800; }
.res-condicoes li em { font-style: normal; opacity: .8; }
.res-condicoes li::before { content: "✓"; position: absolute; left: 0; color: var(--verde); font-weight: 800; }
.res-com-desconto { font-size: 14px; color: var(--ink); font-weight: 600; margin-top: 10px; padding-top: 12px; border-top: 1px dashed var(--borda); display: flex; flex-direction: column; gap: 2px; }
.res-com-desconto strong { color: #1d9e54; font-weight: 800; font-family: var(--fonte-display); font-size: 38px; letter-spacing: -.02em; line-height: 1.05; margin-top: 2px; }
.res-media-mini { font-size: 12.5px; font-weight: 600; color: var(--cinza); }
/* benefícios (sempre visíveis, sem expandir) */
.res-beneficios-tit {
  font-family: var(--fonte-display); font-weight: 800; font-size: 18px; color: var(--navy);
  letter-spacing: -.01em; margin: 28px 0 12px;
}
.res-beneficios { list-style: none; margin: 0; border-top: 1px solid var(--borda); padding-top: 4px; }
.res-beneficios li {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  font-size: 14px; padding: 10px 0 10px 24px; border-bottom: 1px solid #f1f4f8; position: relative;
}
.res-beneficios li::before {
  content: "✓"; position: absolute; left: 2px; top: 10px; color: var(--verde); font-weight: 800;
}
.res-beneficios li span { color: var(--cinza); text-align: right; font-weight: 600; flex: none; }
.res-plano .btn-wa { margin: 22px 0 4px; gap: 6px; }
.res-validade { text-align: center; color: var(--cinza); font-size: 13px; margin: 22px auto 8px; max-width: 600px; }

/* link único e persistente da cotação (copiar/compartilhar) */
.res-share {
  margin: 18px auto 6px; max-width: 600px; text-align: center;
  background: #f6f9fc; border: 1px solid var(--borda); border-radius: 16px; padding: 18px 18px 20px;
}
.res-share-sub { color: var(--cinza); font-size: 13px; font-weight: 500; margin: 0 0 12px; }
.res-share-row { display: flex; gap: 8px; max-width: 460px; margin-inline: auto; }
.res-share-url {
  flex: 1 1 auto; min-width: 0; font-size: 14px; color: var(--ink); font-weight: 600;
  border: 1px solid var(--borda); border-radius: 12px; padding: 12px 14px; background: #fff;
}
.res-share-btn { flex: none; background: var(--navy); color: #fff; padding: 12px 18px; font-size: 14px; border-radius: 12px; }
@media (max-width: 460px) { .res-share-row { flex-direction: column; } }

/* resultado: estados manual / recusado */
.res-estado {
  background: #fff; border-radius: 22px; box-shadow: var(--sombra);
  border: 1px solid var(--borda); padding: 44px 36px; text-align: center;
  max-width: 640px; margin-inline: auto; animation: subir .5s ease both;
}
.res-estado .emoji { font-size: 44px; }
.res-estado h3 { font-family: var(--fonte-display); font-size: 26px; font-weight: 800; margin: 12px 0 8px; }
.res-estado p { color: var(--cinza); font-weight: 500; max-width: 46ch; margin: 0 auto 22px; }
.res-estado .btn { width: auto; }

/* ---------- faixa de urgência ---------- */
.faixa-urgencia { background: linear-gradient(90deg, var(--laranja), #ff7a00); padding: 18px 0; }
.faixa-urgencia p { color: #fff; font-weight: 700; font-size: clamp(15px, 2.4vw, 19px); text-align: center; }
.faixa-urgencia strong { font-family: var(--fonte-display); font-weight: 800; }
.faixa-urgencia span { opacity: .9; font-weight: 600; }

/* ---------- secções ---------- */
.seccao { padding: 84px 0; }
.seccao-suave { background: #f1f6fb; }
.seccao-navy { background: var(--navy); position: relative; overflow: hidden; }
.seccao-navy::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px;
  border-radius: 50%; border: 60px solid rgba(244,150,30,.16);
}
.nota-rodape { color: var(--cinza); font-size: 13px; margin-top: 22px; }

/* coberturas */
.cob-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.cob-card {
  background: #fff; border: 1px solid var(--borda); border-radius: var(--raio);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.cob-card:hover { transform: translateY(-5px); box-shadow: var(--sombra); }
.cob-card h3 { font-family: var(--fonte-display); font-size: 18.5px; font-weight: 700; margin: 14px 0 6px; }
.cob-card p { color: var(--cinza); font-size: 14.5px; }
.cob-icone {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  color: var(--c); background: color-mix(in srgb, var(--c) 12%, #fff);
}

/* passos */
.passos {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px; counter-reset: passo;
}
.passos li {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--raio); padding: 28px 24px; position: relative;
}
.passo-n {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  font-family: var(--fonte-display); font-weight: 800; font-size: 21px; color: var(--navy);
  background: linear-gradient(135deg, var(--azul), var(--verde)); margin-bottom: 16px;
}
.passos h3 { color: #fff; font-family: var(--fonte-display); font-size: 18px; margin-bottom: 6px; }
.passos p { color: #aac2da; font-size: 14.5px; }

/* planos */
.planos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.plano-card {
  background: #fff; border: 1px solid var(--borda); border-radius: 20px; padding: 28px 24px;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.plano-card:hover { transform: translateY(-5px); box-shadow: var(--sombra); }
.plano-card h3 { font-family: var(--fonte-display); font-size: 24px; font-weight: 800; display: inline; }
.plano-tipo {
  font-size: 11.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: var(--azul-escuro); background: rgba(0,169,251,.1); border-radius: 999px;
  padding: 4px 10px; margin-left: 8px; vertical-align: 4px;
}
.plano-desc { color: var(--cinza); font-size: 14.5px; margin: 12px 0 18px; min-height: 64px; }
.plano-preco { color: var(--cinza); font-size: 13.5px; font-weight: 600; }
.plano-preco strong { display: block; font-family: var(--fonte-display); font-size: 27px; color: var(--navy); letter-spacing: -.01em; }
.plano-destaque { border: 2px solid var(--laranja); box-shadow: 0 16px 40px -16px rgba(244,150,30,.35); }
.plano-selo {
  position: absolute; top: -12px; left: 24px; background: var(--laranja); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}

/* comparativo */
.comparativo { background: #fff; border-radius: 22px; box-shadow: var(--sombra); overflow: hidden; border: 1px solid var(--borda); }
.comparativo table { width: 100%; border-collapse: collapse; }
.comparativo th, .comparativo td { padding: 15px 22px; text-align: left; font-size: 15px; }
.comparativo thead th { font-family: var(--fonte-display); font-size: 16px; background: #f6f9fc; }
.comparativo .th-21go { color: var(--azul-escuro); }
.comparativo tbody tr { border-top: 1px solid var(--borda); }
.comparativo td:first-child { font-weight: 600; }
.comparativo td.ok { color: #1d9e54; font-weight: 700; }
.comparativo td:last-child { color: var(--cinza); }

/* presidente */
.seccao-presidente { background: #fff; }
.presidente-grid {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: center;
}
.presidente-avatar {
  width: 200px; height: 200px; border-radius: 28px; display: grid; place-items: center;
  font-family: var(--fonte-display); font-weight: 800; font-size: 64px; color: #fff;
  background: linear-gradient(140deg, var(--navy), var(--azul));
  box-shadow: var(--sombra);
}
.presidente-foto img { width: 200px; height: 200px; object-fit: cover; border-radius: 28px; box-shadow: var(--sombra); }
.presidente-foto figcaption { margin-top: 14px; font-family: var(--fonte-display); font-weight: 700; font-size: 18px; }
.presidente-foto small { color: var(--cinza); font-family: var(--fonte-corpo); font-weight: 600; font-size: 13px; }
.presidente-fala { position: relative; }
.aspas { width: 42px; margin-bottom: 14px; }
.presidente-fala p {
  font-family: var(--fonte-display); font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 600; line-height: 1.35; color: var(--navy); max-width: 30ch;
}

/* cta final */
.cta-final {
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(0,169,251,.3), transparent 60%),
    var(--navy);
  padding: 90px 0; text-align: center;
}
.cta-final h2 {
  font-family: var(--fonte-display); color: #fff; font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 800; letter-spacing: -.02em;
}
.cta-final em { font-style: normal; color: var(--laranja); }
.cta-final p { color: #b9cde2; margin: 14px 0 30px; font-size: 17px; }
/* wrapper do CTA final — vira 1 botão por plano após a cotação (atualizarCtaFim) */
.cta-final-btns { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* rodapé */
.rodape { background: #081c33; color: #9fb6cc; padding: 56px 0 0; font-size: 14px; }
.rodape-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.rodape h4 { color: #fff; font-family: var(--fonte-display); font-size: 15px; margin-bottom: 12px; }
.rodape p { margin-bottom: 8px; }
.rodape a:hover { color: #fff; }
.logo-rodape { font-size: 22px; margin-bottom: 12px; display: inline-flex; }
.rodape-fim { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 12.5px; color: #6c87a3; }

/* whatsapp flutuante */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; box-shadow: 0 12px 28px -8px rgba(37,211,102,.65);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* reveal on scroll */
.revelar { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.revelar.visivel { opacity: 1; transform: none; }

/* desktop: encosta o hero/simulador mais no header (sem apertar) — simulador acima da dobra */
@media (min-width: 700px) {
  .hero-min-inner { padding: 14px 0 64px; }
  .hero-min h1 { margin: 10px 0 8px; }
  .hero-min-sub { margin-bottom: 20px; }
  .hero-provas-min { margin-top: 18px; }
}

/* ---------- responsivo ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 96px; }
  .topo-nav { display: none; }
  .topo-inner { justify-content: center; } /* sem menu, a logo vai pro centro */
  .presidente-grid { grid-template-columns: 1fr; text-align: center; }
  .presidente-avatar, .presidente-foto img { margin-inline: auto; }
  .presidente-fala p { margin-inline: auto; }
  .aspas { margin-inline: auto; display: block; }
  .rodape-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .sim-card { padding: 26px 20px; }
  .comparativo th, .comparativo td { padding: 12px 12px; font-size: 13px; }
  .btn-topo { padding: 9px 13px; font-size: 13px; }
  /* Mobile: header sem fundo próprio — o hero sobe por trás dele, virando um
     fundo navy contínuo (com o brilho), sem a linha/emenda do topo. */
  /* header transparente com a logo perto do conteúdo; o escuro do topo vem de um
     degradê no PRÓPRIO hero que desce sozinho — não empurra o conteúdo pra baixo. */
  .topo {
    position: relative;
    z-index: 3;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    margin-bottom: -90px;
  }
  .topo-inner { padding: 10px 0 8px; }
  .logo-img { height: 72px; }
  .hero { padding-top: 78px; } /* < 90 (overlap) p/ aproximar o conteúdo da logo */
  .hero::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 122px;
    background: linear-gradient(to bottom, rgba(7,19,36,.8) 0%, rgba(7,19,36,.36) 50%, rgba(7,19,36,0) 100%);
    z-index: 1; pointer-events: none;
  }
  .hero-bg { z-index: 0; }
  .hero-min-inner { position: relative; z-index: 2; }
  .res-plano .btn-wa { font-size: 15px; padding: 14px 12px; gap: 5px; }
  .res-plano .btn-wa .wa-logo { height: 30px; }
}

/* ====================== SEÇÕES NOVAS (institucional/conversão) ====================== */

/* faixa de números (selos) */
.stats-band { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); }
.stats-band .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 54px; padding: 30px 0; text-align: center; }
.stat-item b { display: block; font-family: var(--fonte-display); font-size: 34px; font-weight: 800; color: var(--azul); line-height: 1; }
.stat-item span { font-size: 12.5px; color: #aec6e0; font-weight: 600; letter-spacing: .02em; }

/* SUSEP / confiança — selo oficial + cards de vidro + callout */
.susep-hero { display: grid; grid-template-columns: 210px 1fr; gap: 46px; align-items: center; text-align: left; }
.susep-emblema { position: relative; justify-self: center; width: 210px; padding-bottom: 14px; }
.susep-medalha { width: 210px; height: 210px; display: block; filter: drop-shadow(0 16px 34px rgba(0,0,0,.42)); }
.susep-selo-pill { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #f4961e, #ffd089); color: #0d2a4d; font-weight: 800; font-size: 12px; letter-spacing: .02em; padding: 7px 15px; border-radius: 999px; box-shadow: 0 8px 18px rgba(0,0,0,.38); white-space: nowrap; }
.susep-texto .titulo { margin: 14px 0 16px; }
.susep-intro { color: #d4e4f5; font-size: 17.5px; font-weight: 500; max-width: 540px; margin: 0; }

.susep-provas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.susep-prova { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 12px 18px; color: #fff; font-weight: 700; font-size: 15px; }
.susep-prova svg { color: #57e398; flex: none; }

/* diferenciais — "a seguradora disse não" */
.dif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; text-align: left; }
.dif-card { background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); padding: 26px; box-shadow: var(--sombra); }
.dif-card.destaque { border: 2px solid var(--laranja); }
.dif-tag { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--azul-escuro); background: rgba(0,169,251,.1); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.dif-card.destaque .dif-tag { color: #b06a00; background: rgba(244,150,30,.14); }
.dif-card h3 { font-family: var(--fonte-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.dif-card > p { color: var(--cinza); font-size: 14.5px; line-height: 1.5; }
.dif-conta { margin-top: 14px; background: var(--bg); border: 1px solid var(--borda); border-radius: 12px; padding: 13px 15px; font-size: 13.5px; color: var(--ink); line-height: 1.55; }
.dif-conta b { color: var(--verde); }

/* depoimentos */
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; text-align: left; }
.depo-card { background: #fff; border: 1px solid var(--borda); border-radius: var(--raio); padding: 24px; box-shadow: var(--sombra); display: flex; flex-direction: column; }
.depo-estrelas { color: var(--laranja); font-size: 15px; letter-spacing: 3px; margin-bottom: 12px; }
.depo-card > p { color: var(--ink); font-size: 14.5px; font-style: italic; line-height: 1.6; flex: 1; }
.depo-autor { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--borda); font-size: 13px; }
.depo-autor b { color: var(--navy); display: block; font-size: 14px; }
.depo-autor span { color: var(--cinza); }

/* FAQ (accordion sem JS) */
.faq-lista { max-width: 780px; margin: 30px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--borda); }
.faq-item summary { cursor: pointer; padding: 18px 4px; font-weight: 700; color: var(--navy); font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--azul); font-size: 24px; font-weight: 700; line-height: 1; flex: none; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 4px 20px; color: var(--cinza); font-size: 14.5px; line-height: 1.6; }

/* indique & ganhe */
.indique { background: radial-gradient(700px 300px at 80% 0%, rgba(244,150,30,.25), transparent 60%), linear-gradient(135deg, var(--azul), var(--azul-escuro)); text-align: center; }
.indique .container { padding: 60px 0; }
.indique h2 { font-family: var(--fonte-display); color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.indique p { color: rgba(255,255,255,.92); margin: 14px auto 26px; font-size: 16.5px; max-width: 52ch; }
.indique .btn-grande { background: #fff; color: var(--azul-escuro); }
.indique .indique-selo { display: inline-block; background: rgba(255,255,255,.16); color: #fff; font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }

@media (max-width: 760px) {
  .susep-hero { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .susep-emblema, .susep-medalha { width: 200px; }
  .susep-medalha { height: 200px; }
  .susep-texto { text-align: center; }
  .susep-texto .titulo { margin-bottom: 14px; }
  .susep-intro { margin: 0 auto; font-size: 16.5px; }
  .susep-provas { flex-direction: column; align-items: center; gap: 10px; }
  .susep-prova { width: 100%; max-width: 320px; justify-content: center; }
  .dif-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .stats-band .container { gap: 18px 32px; }
  .stat-item b { font-size: 28px; }
}
