/* =============================================================
   Capivara Online — Design System
   Autoral. Sem framework. Tokens + componentes.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Marca — azul + laranja (logo Capivara Online) */
  --brand-900: #0c2c50;
  --brand-800: #103a66;
  --brand:     #1f5c9e;
  --brand-600: #17497d;
  --brand-400: #4a83bf;
  --brand-200: #b9d0e6;
  --brand-50:  #eef4fa;

  --accent:     #e8531f;
  --accent-600: #c8420f;
  --accent-700: #a5360b;
  --accent-050: #fdeee7;

  /* Neutros (azul-acinzentado frio — combina com o azul da marca) */
  --ink:    #0b1a2b;
  --slate-900: #12202e;
  --slate-800: #1f3243;
  --slate-700: #33475a;
  --slate-500: #5f7488;
  --slate-400: #8598a8;
  --slate-300: #bccad6;
  --slate-200: #dde5ec;
  --slate-100: #eef2f6;
  --slate-050: #f6f8fa;
  --white: #ffffff;

  --ok:   #1fbf75;
  --warn: #f5a524;
  --danger: #ef4444;

  /* Superfícies */
  --bg:        var(--slate-050);
  --surface:   var(--white);
  --border:    var(--slate-200);
  --text:      var(--slate-900);
  --text-soft: var(--slate-500);

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', 'Cascadia Code', monospace;

  /* Escala de raio */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-full: 999px;

  /* Sombras — suaves, com tom da marca em vez de preto puro */
  --sh-xs: 0 1px 2px rgba(12, 44, 80, .06);
  --sh-sm: 0 2px 8px rgba(12, 44, 80, .07);
  --sh-md: 0 12px 30px -12px rgba(12, 44, 80, .18);
  --sh-lg: 0 30px 60px -20px rgba(12, 44, 80, .28);
  --sh-glow: 0 0 0 1px rgba(232, 83, 31, .35), 0 12px 40px -8px rgba(232, 83, 31, .35);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 72px;
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
::selection { background: var(--accent); color: var(--ink); }

/* ---------- Utilitários ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-700);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); }
.eyebrow--light { color: var(--accent); }
.section { padding-block: clamp(64px, 9vw, 116px); }
.section__head { max-width: 660px; margin-bottom: 56px; }
.section__title { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 14px; }
.section__lead { font-size: 18px; color: var(--text-soft); }
.center { text-align: center; margin-inline: auto; }

/* Gradiente de texto — usado com parcimônia */
.grad-text {
  background: linear-gradient(100deg, var(--brand) 10%, var(--brand-400) 55%, var(--accent-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  --_bg: var(--brand);
  --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-md);
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  background: var(--_bg); color: var(--_fg);
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }

.btn--accent {
  --_bg: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
  --_fg: #fff;
}
.btn--accent:hover { box-shadow: var(--sh-glow); }
.btn--ghost {
  --_bg: transparent; --_fg: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand-400); background: var(--brand-50); }
.btn--lg { padding: 17px 30px; font-size: 16px; border-radius: var(--r-lg); }
.btn--block { width: 100%; }

/* ---------- Pill / badge ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-soft);
}
.pill--glass {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.9); backdrop-filter: blur(8px);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(232,83,31,.18); }

/* =============================================================
   HEADER
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(248,248,252,.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,.86); box-shadow: var(--sh-xs); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 19px; letter-spacing: -0.03em; color: var(--ink); }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-600) 100%);
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.2);
}
.brand__mark svg { width: 18px; height: 18px; stroke: var(--accent); }
.brand b { color: var(--brand); font-weight: 800; }
.brand__on { color: var(--accent); font-weight: 800; }
.brand__logo { height: 40px; width: auto; }
.footer .brand__logo { height: 44px; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500; color: var(--slate-700);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--brand); background: var(--brand-50); }
.nav__sep { width: 1px; height: 22px; background: var(--border); margin-inline: 6px; }

/* =============================================================
   HERO — dark, editorial, com "console" de produto
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(52px, 8vw, 92px));
  padding-bottom: clamp(72px, 10vw, 120px);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(232,83,31,.16), transparent 55%),
    radial-gradient(90% 80% at 8% 0%, rgba(31,92,158,.30), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #0e2136 60%, #113052 100%);
  color: #fff;
}
/* grid de pontos sutil */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 75%);
  opacity: .5;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 76px); align-items: center;
}
.hero__title {
  font-size: clamp(34px, 5.4vw, 60px);
  letter-spacing: -0.035em; line-height: 1.03;
  margin: 22px 0 20px;
}
.hero__title .accent { color: var(--accent); }
.hero__lead { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.72); max-width: 32em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.66); list-style: none; }
.hero__trust svg { width: 17px; height: 17px; stroke: var(--accent); }
.hero__trust ul { display: contents; }

/* Console / product shot */
.console {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #0f2033 0%, #0b1a2b 100%);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.console__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.07); }
.console__dot { width: 11px; height: 11px; border-radius: 50%; }
.console__dot.r { background: #ff5f57; } .console__dot.y { background: #febc2e; } .console__dot.g { background: #28c840; }
.console__addr {
  margin-left: 10px; font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 7px;
}
.console__addr svg { width: 12px; height: 12px; stroke: var(--accent); }
.console__body { padding: 20px; min-height: 360px; }
.console__search {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 13px 16px;
}
.console__search svg { width: 18px; height: 18px; stroke: var(--accent); flex: none; }
.console__search input {
  background: none; border: 0; outline: 0; width: 100%;
  color: #fff; font-size: 15px; font-family: var(--font-mono);
}
.console__search input::placeholder { color: rgba(255,255,255,.35); }
.console__kbd {
  font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.16); border-radius: 6px; padding: 3px 7px;
  flex: none;
}

/* --- Console animado --- */
.console__typed {
  flex: 1; min-width: 0; display: flex; align-items: center;
  color: #fff; font-size: 15px; font-family: var(--font-mono); white-space: nowrap;
}
.console__caret {
  display: inline-block; width: 2px; height: 1.15em; margin-left: 2px;
  background: var(--accent); animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

.console__loading {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 15px 16px;
  font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.6);
}
.console__loading[hidden] { display: none; }
.spinner {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18); border-top-color: var(--accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.result[hidden] { display: none; }
.result.is-in { animation: cardIn .5s cubic-bezier(.2,.7,.3,1) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.result__tag.pop { animation: tagPop .45s cubic-bezier(.2,.9,.3,1.2) both; }
@keyframes tagPop { 0% { opacity: 0; transform: scale(.5); } 60% { transform: scale(1.12); } 100% { opacity: 1; transform: scale(1); } }

.result .field { opacity: 0; transform: translateY(6px); }
.result .field.in { animation: fieldIn .42s ease both; }
@keyframes fieldIn { to { opacity: 1; transform: none; } }

/* varredura nos campos bloqueados, sugerindo "cadeado" */
.field__v.blur { position: relative; overflow: hidden; }
.field__v.blur::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232,83,31,.35), transparent);
  transform: translateX(-120%); animation: shimmer 2.6s ease-in-out infinite;
}
@keyframes shimmer { 0% { transform: translateX(-120%); } 55%, 100% { transform: translateX(120%); } }

@media (prefers-reduced-motion: reduce) {
  .console__caret, .spinner, .field__v.blur::after,
  .result.is-in, .result__tag.pop, .result .field.in { animation: none !important; }
  .result .field { opacity: 1; transform: none; }
}

/* Cartão de resultado (com dado "censurado" — só visual) */
.result {
  margin-top: 18px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 18px;
}
.result__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.result__name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.result__tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--accent); background: rgba(232,83,31,.12);
  border: 1px solid rgba(232,83,31,.25); border-radius: var(--r-full); padding: 4px 10px;
}
.result__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 16px; }
.field { display: flex; flex-direction: column; gap: 3px; }
.field__k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.field__v { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.92); }
.field__v.blur {
  filter: blur(5px); user-select: none;
  color: var(--accent); font-family: var(--font-mono);
}
.result__foot { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); font-size: 12.5px; color: rgba(255,255,255,.5); }
.result__foot svg { width: 15px; height: 15px; stroke: var(--warn); }

/* Faixa de logos/prova social */
.marquee { border-top: 1px solid rgba(255,255,255,.08); margin-top: clamp(48px, 7vw, 80px); padding-top: 30px; position: relative; z-index: 2; }
.marquee__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); text-align: center; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 26px; }
.stat { text-align: center; }
.stat__n { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.stat__n .u { color: var(--accent); }
.stat__l { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* =============================================================
   BLOCOS DE SEÇÃO (claros)
   ============================================================= */
/* grade de tipos de busca */
.searchgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.scard {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 24px;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), border-color .22s, box-shadow .22s;
}
.scard::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(140deg, transparent 60%, rgba(232,83,31,.07));
  opacity: 0; transition: opacity .22s;
}
.scard:hover { transform: translateY(-4px); border-color: var(--brand-200); box-shadow: var(--sh-md); }
.scard:hover::after { opacity: 1; }
.scard__ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand); margin-bottom: 18px;
  transition: background .22s, color .22s;
}
.scard:hover .scard__ico { background: var(--brand); color: #fff; }
.scard__ico svg { width: 22px; height: 22px; }
.scard h3 { font-size: 17px; margin-bottom: 6px; }
.scard p { font-size: 14px; color: var(--text-soft); }
.scard__go { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent-700); font-family: var(--font-mono); }
.scard__go svg { width: 14px; height: 14px; transition: transform .2s; }
.scard:hover .scard__go svg { transform: translateX(3px); }

/* grade de campos de dado (fundo escuro de contraste) */
.datasection { background: var(--ink); color: #fff; }
.datasection .section__title { color: #fff; }
.datasection .section__lead { color: rgba(255,255,255,.66); }
.datagrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.dchip {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md); padding: 16px 18px;
  transition: background .2s, border-color .2s;
}
.dchip:hover { background: rgba(255,255,255,.07); border-color: rgba(232,83,31,.4); }
.dchip__ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(232,83,31,.12); color: var(--accent); flex: none; }
.dchip__ico svg { width: 19px; height: 19px; }
.dchip h4 { font-size: 14.5px; font-weight: 600; }
.dchip span { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.4); }

/* benefícios */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.bcard { padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border); }
.bcard__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(140deg, var(--brand) 0%, var(--brand-600) 100%); color: #fff; box-shadow: var(--sh-sm); }
.bcard__ico svg { width: 24px; height: 24px; stroke: var(--accent); }
.bcard h3 { font-size: 19px; margin-bottom: 10px; }
.bcard p { color: var(--text-soft); font-size: 15px; }

/* como funciona — passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border); }
.step__n { counter-increment: step; font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent-700); }
.step__n::before { content: "0" counter(step); }
.step h3 { font-size: 18px; margin: 12px 0 8px; }
.step p { font-size: 14.5px; color: var(--text-soft); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 42px; right: -14px; width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--brand-200), transparent);
}

/* pagamento */
.pay { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
.pay__item {
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px;
  padding: 12px 20px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border);
  color: var(--slate-700);
}
.pay__item svg { width: 20px; height: 20px; stroke: var(--brand); }

/* =============================================================
   FAQ
   ============================================================= */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.qa { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.qa[open] { border-color: var(--brand-200); box-shadow: var(--sh-sm); }
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; font-weight: 600; font-size: 16px; color: var(--slate-900);
}
.qa summary::-webkit-details-marker { display: none; }
.qa__i { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent-700); flex: none; width: 26px; }
.qa__chev { margin-left: auto; flex: none; width: 20px; height: 20px; color: var(--slate-400); transition: transform .25s; }
.qa[open] .qa__chev { transform: rotate(180deg); color: var(--brand); }
.qa__body { padding: 0 22px 22px 64px; color: var(--text-soft); font-size: 15px; }
.qa__body a { color: var(--accent-700); font-weight: 600; }
.qa__body a:hover { text-decoration: underline; }

/* =============================================================
   CTA FINAL
   ============================================================= */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(232,83,31,.25), transparent 55%),
    linear-gradient(130deg, var(--brand-800) 0%, var(--brand) 55%, var(--brand-600) 100%);
  color: #fff;
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .35;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
          mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.cta > * { position: relative; z-index: 1; }
.cta__title { font-size: clamp(26px, 3.5vw, 42px); margin: 16px 0 14px; }
.cta__title .accent { color: var(--accent); }
.cta__lead { color: rgba(255,255,255,.82); font-size: 17px; max-width: 32em; }
.cta__meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.cta__meta li { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.8); }
.cta__meta svg { width: 16px; height: 16px; stroke: var(--accent); }
.cta__meta .live { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(31,191,117,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .4 } }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: 64px 34px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand b { color: var(--accent); }
.footer__about { font-size: 14px; max-width: 34ch; color: rgba(255,255,255,.55); }
.footer__badges { display: flex; gap: 10px; margin-top: 20px; }
.fbadge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-family: var(--font-mono); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-sm); padding: 6px 10px; }
.fbadge svg { width: 13px; height: 13px; stroke: var(--accent); }
.footer__col h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); font-family: var(--font-mono); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; font-size: 14px; padding: 6px 0; color: rgba(255,255,255,.68); transition: color .2s, padding .2s; }
.footer__col a:hover { color: var(--accent); padding-left: 4px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 26px; font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--accent); }
.footer__cnpj { font-family: var(--font-mono); }

/* =============================================================
   PÁGINA DE BUSCA / RESULTADO
   ============================================================= */
.subhero {
  padding-top: calc(var(--nav-h) + 44px); padding-bottom: 48px;
  background:
    radial-gradient(90% 120% at 80% -20%, rgba(232,83,31,.14), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, #102942 100%);
  color: #fff; text-align: center;
}
.subhero h1 { font-size: clamp(26px, 4vw, 40px); margin: 16px 0 12px; }
.subhero p { color: rgba(255,255,255,.68); max-width: 40em; margin-inline: auto; }
.subhero__ico { width: 58px; height: 58px; border-radius: 16px; margin: 0 auto; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%); box-shadow: var(--sh-glow); }
.subhero__ico svg { width: 28px; height: 28px; stroke: #fff; }

/* Card de busca sobreposto */
.searchcard {
  max-width: 720px; margin: -34px auto 0; position: relative; z-index: 5;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden;
}
.searchcard__pad { padding: clamp(22px, 4vw, 38px); }
.tabs { display: flex; gap: 6px; padding: 6px; background: var(--slate-100); border-radius: var(--r-full); margin-bottom: 26px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -ms-overflow-style: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs a, .tabs__btn { flex: 1; min-width: max-content; text-align: center; padding: 10px 14px; border-radius: var(--r-full); font-size: 13.5px; font-weight: 600; color: var(--slate-500); transition: .2s; background: none; border: none; cursor: pointer; font-family: var(--font-sans); }
.tabs a.is-active, .tabs__btn.is-active { background: var(--surface); color: var(--brand); box-shadow: var(--sh-xs); }
.tabs a:hover:not(.is-active), .tabs__btn:hover:not(.is-active) { color: var(--brand); }

.flabel { display: block; text-align: center; font-weight: 600; font-size: 14.5px; color: var(--slate-700); margin-bottom: 10px; }
.finput {
  width: 100%; padding: 15px 18px; text-align: center; font-size: 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-md); background: var(--slate-050);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.finput:focus { outline: 0; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(232,83,31,.14); }

.filters { margin-top: 16px; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.filters > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; background: var(--slate-050); font-weight: 600; font-size: 14px; color: var(--slate-700); }
.filters > summary::-webkit-details-marker { display: none; }
.filters__grid { padding: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.filters__grid .full { grid-column: 1 / -1; }
.filters__grid label { display: block; font-size: 12.5px; font-weight: 500; color: var(--slate-500); margin-bottom: 5px; text-align: center; }
.filters__grid input, .filters__grid select { width: 100%; padding: 10px 12px; text-align: center; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: #fff; font-size: 14px; }
.filters__grid input:focus, .filters__grid select:focus { outline: 0; border-color: var(--accent); }

.counter { display: inline-flex; align-items: center; gap: 8px; margin: 0 auto; padding: 8px 16px; border-radius: var(--r-full); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); font-size: 13.5px; color: rgba(255,255,255,.9); }
.counter b { color: var(--accent); }

/* Resultados */
.results { padding-block: clamp(40px, 6vw, 72px); background: var(--slate-050); }
.results__head { max-width: 820px; margin: 0 auto 24px; text-align: center; }
.results__head h2 { font-size: 24px; }
.results__head p { color: var(--text-soft); margin-top: 8px; }
.rcard {
  max-width: 820px; margin: 0 auto 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.rcard__info { flex: 1; min-width: 240px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 24px; }
.rcard__k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--slate-400); }
.rcard__v { font-size: 15px; font-weight: 600; color: var(--slate-900); }
.rcard__v.name { font-size: 18px; }
.blur-x { filter: blur(5px); user-select: none; color: var(--brand-400); font-family: var(--font-mono); }
.rcard__cta { text-align: center; }
.rcard__cta small { display: block; margin-top: 8px; font-size: 11.5px; color: var(--slate-400); max-width: 200px; }

/* =============================================================
   REPORT CARD — Dossier de inteligência premium
   ============================================================= */
.rpt {
  max-width: 860px; margin: 0 auto 32px;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 2px 0 rgba(255,255,255,.06) inset,
              0 40px 80px -20px rgba(7,12,21,.55),
              0 0 0 1px rgba(30,45,66,.6);
  font-family: var(--font-sans);
}

/* Faixa demo */
.rpt__demo-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 20px;
  background: rgba(232,83,31,.08);
  border-bottom: 1px solid rgba(232,83,31,.18);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-700);
}
.rpt__demo-bar svg { width: 12px; height: 12px; stroke: var(--accent); }

/* ── Cabeçalho escuro ── */
.rpt__hd {
  position: relative; overflow: hidden;
  background: #070C15;
  padding: 32px 32px 24px;
}
.rpt__hd::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 26px 26px;
}
.rpt__hd::after {
  content: ''; position: absolute; pointer-events: none;
  width: 380px; height: 280px; left: -40px; top: -60px;
  background: radial-gradient(ellipse, rgba(232,83,31,.2) 0%, transparent 68%);
}
.rpt__hd-row {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 20px;
}
.rpt__avatar {
  width: 66px; height: 66px; flex: none; border-radius: 18px;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: #fff;
  background: linear-gradient(140deg, #e8531f 0%, #a5360b 100%);
  box-shadow: 0 8px 28px rgba(232,83,31,.45), inset 0 1px 0 rgba(255,255,255,.18);
}
.rpt__hd-info { flex: 1; min-width: 0; }
.rpt__name {
  font-size: clamp(17px, 2.4vw, 23px); font-weight: 800;
  letter-spacing: -0.03em; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rpt__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.rchip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; font-family: var(--font-mono);
  letter-spacing: .05em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); background: rgba(255,255,255,.06);
}
.rchip--obito { border-color: rgba(255,79,79,.35); color: #ff9090; background: rgba(255,79,79,.1); }
.rchip--vivo  { border-color: rgba(31,185,122,.35); color: #5de0a8; background: rgba(31,185,122,.1); }
.rchip__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.rpt__found { flex: none; text-align: right; }
.rpt__found-n {
  font-size: 38px; font-weight: 900; line-height: 1;
  letter-spacing: -0.05em; color: var(--accent);
  font-family: var(--font-mono);
}
.rpt__found-l {
  font-size: 9.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-top: 3px; line-height: 1.4;
}

/* Barra de progresso */
.rpt__prog {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px; margin-top: 22px;
}
.rpt__prog-track {
  flex: 1; height: 3px; border-radius: 99px;
  background: rgba(255,255,255,.08); overflow: hidden;
}
.rpt__prog-fill {
  height: 100%; border-radius: 99px; width: 0;
  background: linear-gradient(90deg, var(--accent) 0%, #ff8040 100%);
  box-shadow: 0 0 12px rgba(232,83,31,.6);
  transition: width 1.4s cubic-bezier(.2,.8,.3,1);
}
.rpt__prog-pct {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--accent); flex: none;
}

/* ── Corpo claro — campos gratuitos ── */
.rpt__body {
  background: #fff; padding: 26px 32px;
  border-bottom: 1px solid #E4ECF5;
}
.rpt__sec-label {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: #A0B4C8; margin-bottom: 18px;
}
.rpt__fields { display: flex; gap: 36px; flex-wrap: wrap; }
.rpt__field { display: flex; flex-direction: column; }
.rpt__field-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: #EDF3FB; margin-bottom: 10px;
}
.rpt__field-ico svg { width: 16px; height: 16px; stroke: var(--brand); stroke-width: 2; }
.rpt__field-k {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #94AAC0;
}
.rpt__field-v {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: #0A1828; margin-top: 3px; font-family: var(--font-mono);
}
.rpt__field-v--text { font-family: var(--font-sans); font-size: 15px; letter-spacing: -0.01em; }

/* ── Seção bloqueada ── */
.rpt__lock { position: relative; overflow: hidden; }
.rpt__lock-blur {
  padding: 22px 32px 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 28px;
  background: #F7FAFD;
  filter: blur(7px); user-select: none; pointer-events: none; opacity: .65;
}
.rpt__lock-blur .rpt__field-k { color: #94AAC0; }
.rpt__lock-blur .rpt__field-v { color: #1E3A5F; font-size: 15px; }

/* Parede de vidro */
.rpt__lock-wall {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 28px 24px; text-align: center;
  background: linear-gradient(180deg,
    rgba(247,250,253,0) 0%,
    rgba(247,250,253,.94) 28%,
    rgba(247,250,253,.98) 100%);
}
.rpt__lock-ico {
  width: 54px; height: 54px; border-radius: 17px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, #a5360b 100%);
  box-shadow: 0 12px 32px rgba(232,83,31,.38), inset 0 1px 0 rgba(255,255,255,.15);
}
.rpt__lock-ico svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2.5; }
.rpt__lock-title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: #0A1828;
}
.rpt__lock-sub { font-size: 13.5px; color: #5A7A96; max-width: 320px; line-height: 1.5; }
.rpt__lock-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; max-width: 440px; }
.rpt__ltag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 500;
  background: #fff; border: 1px solid #D0DFEd; color: #2C4A6A;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

/* ── CTA ── */
.rpt__cta {
  background: #fff; padding: 20px 32px 26px;
  border-top: 1px solid #E4ECF5; text-align: center;
}
.rpt__cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 38px; border-radius: 14px; border: none; cursor: pointer;
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #c8420f 100%);
  box-shadow: 0 8px 28px rgba(232,83,31,.38), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .25s;
  width: 100%; max-width: 420px; font-family: var(--font-sans);
}
.rpt__cta-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(232,83,31,.48), inset 0 1px 0 rgba(255,255,255,.18); }
.rpt__cta-btn:active { transform: translateY(0); }
.rpt__cta-btn svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.5; flex: none; }
.rpt__cta-note { display: block; margin-top: 10px; font-size: 12px; color: #94AAC0; }

/* Mobile */
@media (max-width: 600px) {
  .rpt__hd { padding: 22px 20px 18px; }
  .rpt__hd-row { gap: 14px; }
  .rpt__avatar { width: 52px; height: 52px; font-size: 18px; border-radius: 14px; }
  .rpt__name { font-size: 16px; }
  .rpt__found-n { font-size: 28px; }
  .rpt__body { padding: 20px 20px; }
  .rpt__fields { gap: 22px; }
  .rpt__lock-blur { grid-template-columns: repeat(2, 1fr); padding: 16px 20px 28px; }
  .rpt__lock-wall { padding: 18px 16px; }
  .rpt__lock-title { font-size: 17px; }
  .rpt__cta { padding: 16px 20px 22px; }
}

/* Animação de entrada */
.rpt { animation: rptIn .5s cubic-bezier(.2,.7,.3,1) both; }
@keyframes rptIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rpt { animation: none; } }

/* =============================================================
   CARD DE RESULTADO COMPLETO (legado — mantido para fallback)
   ============================================================= */
.rcard2 {
  max-width: 820px; margin: 0 auto 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-md); overflow: hidden;
}

/* Cabeçalho com avatar e nome */
.rcard2__head {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--slate-050) 0%, var(--surface) 100%);
}
.rcard2__avatar {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #fff; font-size: 18px; font-weight: 800; letter-spacing: -0.02em;
  box-shadow: var(--sh-sm);
}
.rcard2__nome {
  font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--slate-900);
}
.rcard2__badges {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px;
}
.rbadge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11.5px; font-weight: 600; font-family: var(--font-mono);
  background: var(--slate-100); color: var(--slate-600); border: 1px solid var(--border);
}
.rbadge--vivo   { background: rgba(31,191,117,.1); color: #0e7f4e; border-color: rgba(31,191,117,.3); }
.rbadge--obito  { background: rgba(239,68,68,.08); color: #b91c1c; border-color: rgba(239,68,68,.25); }
.rbadge--vivo::before  { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.rbadge--obito::before { content: "✕"; font-size: 9px; }

/* Seção de campos visíveis (gratuitos) */
.rcard2__free {
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
}
.rcard2__section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-400); margin-bottom: 14px;
}
.rcard2__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px 24px;
}
.rcard2__field { display: flex; flex-direction: column; gap: 3px; }
.rcard2__k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate-400);
}
.rcard2__v {
  font-size: 14.5px; font-weight: 600; color: var(--slate-900);
}
.rcard2__v--mono { font-family: var(--font-mono); font-size: 13.5px; }

/* Bloco bloqueado */
.rcard2__locked {
  position: relative; overflow: hidden;
}
.rcard2__locked-inner {
  padding: 20px 26px; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px 24px; filter: blur(6px);
  user-select: none; pointer-events: none;
  opacity: .7;
}
.rcard2__lock-wall {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(248,249,251,.5) 0%, rgba(248,249,251,.96) 45%);
  padding: 20px;
  text-align: center;
}
.rcard2__lock-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
  box-shadow: var(--sh-glow); margin-bottom: 4px;
}
.rcard2__lock-ico svg { width: 22px; height: 22px; stroke: #fff; }
.rcard2__lock-title { font-size: 16px; font-weight: 700; color: var(--slate-900); }
.rcard2__lock-desc {
  font-size: 13px; color: var(--slate-500);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  max-width: 400px;
}
.rcard2__lock-chip {
  display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px;
  padding: 3px 9px; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--border); color: var(--slate-600);
}

/* Rodapé do card */
.rcard2__foot {
  padding: 18px 26px 22px; text-align: center;
  border-top: 1px solid var(--border);
  background: var(--slate-050);
}
.rcard2__foot small {
  display: block; margin-top: 8px; font-size: 11.5px; color: var(--slate-400);
}

/* Demo badge */
.demo-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: var(--r-full);
  background: rgba(232,83,31,.1); border: 1px solid rgba(232,83,31,.3);
  font-size: 12px; font-weight: 600; color: var(--accent-700);
  font-family: var(--font-mono); margin-bottom: 16px;
}

@media (max-width: 480px) {
  .rcard2__head { padding: 18px 18px 16px; gap: 14px; }
  .rcard2__nome { font-size: 16px; }
  .rcard2__free, .rcard2__locked-inner { padding: 16px 18px; }
  .rcard2__lock-wall { padding: 16px; }
  .rcard2__foot { padding: 16px 18px 20px; }
}

/* Modal de preços */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 18px; background: rgba(12,10,29,.62); backdrop-filter: blur(4px); }
.modal.is-open { display: flex; }
.modal__box { width: 100%; max-width: 900px; max-height: 92vh; overflow-y: auto; background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 28px 0; }
.modal__head h2 { font-size: clamp(20px, 3vw, 26px); }
.modal__head p { color: var(--text-soft); font-size: 14.5px; margin-top: 6px; }
.modal__x { width: 40px; height: 40px; border-radius: var(--r-md); display: grid; place-items: center; color: var(--slate-400); flex: none; transition: .2s; }
.modal__x:hover { background: var(--slate-100); color: var(--slate-700); }
.modal__x svg { width: 22px; height: 22px; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 24px 28px 8px; }
.price {
  position: relative; text-align: center; cursor: pointer;
  border: 2px solid var(--border); border-radius: var(--r-lg); padding: 22px 16px;
  background: var(--surface); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.price:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--sh-md); }
.price--best { border-color: var(--accent); }
.price__flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 4px 12px; border-radius: var(--r-full); font-family: var(--font-mono); }
.price__q { font-size: 13px; font-weight: 600; color: var(--slate-500); }
.price__v { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--brand); margin: 8px 0 2px; }
.price__v small { font-size: 14px; font-weight: 600; color: var(--slate-400); }
.price__u { font-size: 12px; color: var(--slate-400); font-family: var(--font-mono); }
.modal__foot { padding: 14px 28px 28px; text-align: center; font-size: 12.5px; color: var(--slate-400); display: flex; align-items: center; justify-content: center; gap: 8px; }
.modal__foot svg { width: 15px; height: 15px; stroke: var(--accent-700); }

@media (max-width: 680px) {
  .filters__grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rcard__info { grid-template-columns: 1fr; }
}

/* =============================================================
   PÁGINA DE CONTEÚDO (privacidade, termos, política)
   ============================================================= */
.doc { padding-block: clamp(40px, 6vw, 72px); }
.doc__wrap { max-width: 820px; margin-inline: auto; }
.doc__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: clamp(28px, 5vw, 56px); }
.doc__meta { font-family: var(--font-mono); font-size: 12px; color: var(--slate-400); margin-bottom: 24px; }
.doc__card h2 { font-size: 22px; margin: 34px 0 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.doc__card h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.doc__card h3 { font-size: 17px; margin: 22px 0 8px; color: var(--slate-800); }
.doc__card p, .doc__card li { color: var(--slate-700); font-size: 15.5px; margin-bottom: 12px; }
.doc__card ul, .doc__card ol { padding-left: 22px; margin-bottom: 12px; }
.doc__card li { margin-bottom: 6px; }
.doc__card a { color: var(--accent-700); font-weight: 600; }
.doc__card a:hover { text-decoration: underline; }
.doc__card strong { color: var(--slate-900); }
.doc__toc { position: sticky; top: calc(var(--nav-h) + 20px); }

/* embed de PDF */
.pdf-frame { width: 100%; height: 82vh; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--slate-100); }
.pdf-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

/* =============================================================
   REVELAÇÃO AO ROLAR
   ============================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .console { max-width: 540px; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .cta { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 620px) {
  .nav__link.hide-sm { display: none; }
  .result__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
}

/* Mobile fino (≤ 480px) */
@media (max-width: 480px) {
  /* Nav: esconde links de texto e compacta o botão CTA */
  .nav__link { display: none !important; }
  .nav__sep { display: none; }
  .nav__inner .btn { padding: 10px 14px; font-size: 14px; gap: 6px; }
  .nav__inner .btn svg { width: 16px; height: 16px; }

  /* Hero */
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 12px; }
  .hero__lead { font-size: 15px; }
  .console__body { padding: 14px; }
  .console__addr { overflow: hidden; max-width: 180px; white-space: nowrap; text-overflow: ellipsis; }

  /* Seções */
  .section__head { margin-bottom: 32px; }
  .section__lead { font-size: 15px; }

  /* CTA final */
  .cta { padding: 32px 24px; }
  .cta__action { width: 100%; }
  .cta__action .btn { width: 100%; justify-content: center; }

  /* Tabs de busca */
  .tabs a { font-size: 12px; padding: 9px 5px; }

  /* Filtros: 1 coluna */
  .filters__grid { grid-template-columns: 1fr; }

  /* Cards de resultado */
  .rcard { padding: 16px; gap: 14px; }
  .rcard__info { min-width: 0; }
  .rcard__cta { width: 100%; }
  .rcard__cta .btn { width: 100%; justify-content: center; }
  .rcard__cta small { max-width: 100%; }

  /* Modal como bottom sheet */
  .modal { padding: 0; align-items: flex-end; }
  .modal__box { border-radius: var(--r-xl) var(--r-xl) 0 0; max-height: 90vh; width: 100%; max-width: 100%; }
  .modal__head { padding: 20px 18px 0; }
  .price-grid { padding: 14px 18px 6px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .price { padding: 16px 10px; }
  .price__v { font-size: 22px; }
  .modal__foot { padding: 12px 18px 24px; font-size: 12px; }

  /* Footer */
  .footer { padding-block: 44px 28px; }
  .footer__top { gap: 24px; }
  .footer__col h4 { margin-bottom: 10px; }
  .footer__col a { padding: 4px 0; }

  /* FAQ */
  .qa summary { padding: 16px; font-size: 15px; }
  .qa__body { padding: 0 16px 18px 46px; font-size: 14px; }

  /* Páginas de documento */
  .doc__card { padding: 22px 18px; }
}
