/* ==========================================================================
   ENQUADRIA — folha de estilo compartilhada
   Identidade: navy/cyan · Plus Jakarta Sans + IBM Plex Mono
   Grafismos em CSS/SVG, zero imagem externa (fora as fontes do Google).
   ========================================================================== */

:root {
  --ink: #0B1220;
  --ink2: #111C33;
  --ink3: #1A2740;
  --accent: #06B6D4;
  --accent-deep: #0E7490;
  --accent-soft: #CFFAFE;
  --bg: #F6F9FC;
  --surface: #FFFFFF;
  --surface2: #F1F5F9;
  --line: #E2E8F0;
  --line-soft: #EEF2F7;
  --slate: #334155;
  --slate2: #475569;
  --muted: #64748B;
  --verde: #059669;
  --verde-wash: #ECFDF5;
  --amarelo: #D97706;
  --amarelo-wash: #FFFBEB;
  --vermelho: #DC2626;
  --vermelho-wash: #FEF2F2;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(11,18,32,.04), 0 12px 30px -12px rgba(11,18,32,.14);
  --shadow-lg: 0 30px 60px -20px rgba(11,18,32,.28);
  --maxw: 1120px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.22rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--ink); }
img, svg { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; position: relative; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.mono { font-family: var(--mono); }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---- eyebrow / kicker -------------------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em; color: var(--accent-deep);
  background: var(--accent-soft); border: 1px solid #A5F3FC;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.kicker--ghost { background: rgba(6,182,212,.10); border-color: rgba(6,182,212,.35); color: #67E8F9; }
.kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(6,182,212,.18); }

.lead { font-size: 1.18rem; color: var(--slate2); }
.muted { color: var(--muted); }
.tiny { font-size: 12.5px; line-height: 1.6; color: var(--muted); }

/* ---- buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #04212B; box-shadow: 0 8px 22px -8px rgba(6,182,212,.7); }
.btn-primary:hover { background: #22D3EE; color: #04212B; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink3); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #E2E8F0; border-color: rgba(255,255,255,.18); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---- header / nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,249,252,.82); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 19px; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand .logo { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--slate2); font-weight: 600; font-size: 14.5px; padding: 8px 12px; border-radius: 8px; }
.nav-links a:hover { color: var(--ink); background: var(--surface2); }
.nav-links a.active { color: var(--accent-deep); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 42px; height: 40px; cursor: pointer; color: var(--ink); }

/* ---- hero ------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 78% -10%, #123B52 0%, transparent 55%),
              radial-gradient(900px 500px at 5% 0%, #14233f 0%, transparent 50%),
              linear-gradient(180deg, #0B1220 0%, #0C1526 100%);
  color: #E2E8F0;
  padding: 74px 0 90px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(900px 500px at 60% 10%, #000 30%, transparent 78%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--accent); }
.hero .lead { color: #AEBED2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero-scan { position: absolute; right: -120px; top: -120px; width: 520px; height: 520px; opacity: .5; z-index: 1; }

.trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: #93A4BC; font-size: 13.5px; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 15px; height: 15px; color: var(--accent); }

/* ---- generic cards / grids -------------------------------------------- */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card .ic {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 16px;
}
.card .ic svg { width: 22px; height: 22px; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---- MAPA DE RISCO (grafismo central) --------------------------------- */
.riskcard {
  background: linear-gradient(180deg, #0F1B30 0%, #0C1526 100%);
  border: 1px solid rgba(148,163,184,.16); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.riskcard-top { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid rgba(148,163,184,.12); }
.riskcard-top .dots { display: flex; gap: 6px; }
.riskcard-top .dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(148,163,184,.3); }
.riskcard-top .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #67E8F9; }
.riskcard-body { padding: 22px 20px 24px; }
.riskcard-body .row1 { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.riskcard-body .big { font-family: var(--mono); font-size: 40px; font-weight: 600; color: #fff; line-height: 1; }
.riskcard-body .big small { font-size: 14px; color: #93A4BC; font-weight: 400; }
.riskcard-body .pot { text-align: right; }
.riskcard-body .pot b { display: block; font-family: var(--mono); font-size: 24px; color: var(--accent); }
.riskcard-body .pot span { font-size: 11px; color: #93A4BC; text-transform: uppercase; letter-spacing: .1em; }
.bars { margin-top: 22px; display: grid; gap: 11px; }
.bar { display: grid; grid-template-columns: 118px 1fr 34px; align-items: center; gap: 12px; }
.bar .lbl { font-size: 12.5px; color: #AEBED2; }
.bar .track { height: 9px; border-radius: 999px; background: rgba(148,163,184,.14); overflow: hidden; }
.bar .fill { height: 100%; border-radius: 999px; }
.bar .n { font-family: var(--mono); font-size: 13px; color: #E2E8F0; text-align: right; }
.fill-red { background: linear-gradient(90deg, #F87171, #DC2626); }
.fill-amber { background: linear-gradient(90deg, #FBBF24, #D97706); }
.fill-slate { background: linear-gradient(90deg, #64748B, #475569); }
.fill-mute { background: linear-gradient(90deg, #3B4A63, #2A374F); }
.riskcard-foot { padding: 12px 18px; border-top: 1px solid rgba(148,163,184,.12); font-family: var(--mono); font-size: 11px; color: #7C8AA3; display: flex; justify-content: space-between; }

/* ---- decision chips --------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.chip .d { width: 9px; height: 9px; border-radius: 50%; }
.chip.red .d { background: var(--vermelho); } .chip.amber .d { background: var(--amarelo); }
.chip.neutral .d { background: var(--muted); } .chip.green .d { background: var(--verde); }

/* ---- steps ------------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 26px 84px; box-shadow: var(--shadow); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 24px; width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: #fff; font-family: var(--mono); font-weight: 600; font-size: 19px;
  display: grid; place-items: center;
}
.step .free { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; }
.step .free.g { color: var(--verde); } .step .free.p { color: var(--accent-deep); }

/* ---- moat / feature list ---------------------------------------------- */
.pill-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pill-list li { display: flex; gap: 12px; align-items: flex-start; }
.pill-list .ck { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--verde-wash); color: var(--verde); display: grid; place-items: center; margin-top: 2px; }
.pill-list .ck svg { width: 15px; height: 15px; }
.pill-list b { color: var(--ink); }

/* ---- timeline / esteira ----------------------------------------------- */
.timeline { position: relative; margin-top: 36px; padding: 8px 0; }
.timeline .line { position: absolute; left: 0; right: 0; top: 34px; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, var(--line) 100%); }
.tl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.tl { text-align: left; }
.tl .node { width: 16px; height: 16px; border-radius: 50%; background: var(--surface); border: 3px solid var(--accent); margin: 26px 0 14px; box-shadow: 0 0 0 5px rgba(6,182,212,.12); }
.tl.soft .node { border-color: var(--line); box-shadow: none; }
.tl .when { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); font-weight: 600; }
.tl.soft .when { color: var(--muted); }
.tl .what { font-size: 13.5px; color: var(--slate2); margin-top: 3px; }

/* ---- prova / stat band ------------------------------------------------ */
.statband { background: var(--ink); border-radius: 18px; padding: 40px; color: #CBD5E1; }
.statband .grid { align-items: center; }
.stat b { display: block; font-family: var(--mono); font-size: 34px; color: #fff; line-height: 1.05; }
.stat b .u { color: var(--accent); }
.stat span { font-size: 13px; color: #93A4BC; }

/* ---- laudo mock ------------------------------------------------------- */
.docmock { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 24px; position: relative; }
.docmock .dm-h { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 14px; }
.docmock .dm-firm { font-weight: 800; color: var(--ink); }
.docmock .dm-num { font-family: var(--mono); font-size: 10px; color: var(--muted); text-align: right; letter-spacing: .1em; }
.docmock .dm-line { height: 8px; border-radius: 4px; background: var(--surface2); margin: 8px 0; }
.docmock .dm-line.w80 { width: 80%; } .docmock .dm-line.w60 { width: 60%; } .docmock .dm-line.w40 { width: 40%; }
.docmock .dm-badge { position: absolute; right: 18px; bottom: 18px; transform: rotate(-8deg); border: 2px solid var(--verde); color: var(--verde); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; padding: 6px 12px; border-radius: 8px; background: var(--verde-wash); }

/* ---- pricing ---------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.plan.pro { border-color: var(--accent); box-shadow: 0 30px 60px -24px rgba(6,182,212,.4); position: relative; }
.plan.pro::after { content: "mais escolhido"; position: absolute; top: -12px; right: 24px; background: var(--accent); color: #04212B; font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.plan .pname { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.plan .pprice { font-size: 44px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; margin: 8px 0 2px; }
.plan .pprice small { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan .psub { color: var(--muted); font-size: 13.5px; min-height: 20px; }
.plan ul { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.plan li .ck { flex: none; width: 20px; height: 20px; border-radius: 6px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-top: 1px; }
.plan li .ck svg { width: 13px; height: 13px; }
.plan .btn { width: 100%; margin-top: auto; }

/* ---- faq -------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: 16px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .plus { flex: none; width: 24px; height: 24px; border-radius: 7px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-deep); transition: transform .2s ease; font-size: 18px; line-height: 1; }
.qa[open] summary .plus { transform: rotate(45deg); }
.qa .a { padding: 0 22px 22px; color: var(--slate2); }
.qa .a p { margin: 0; }

/* ---- callout / cta band ----------------------------------------------- */
.ctaband { position: relative; overflow: hidden; background: linear-gradient(120deg, #0B1220, #123B52); color: #E2E8F0; border-radius: 22px; padding: 56px 48px; }
.ctaband::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(148,163,184,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.07) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(600px 300px at 80% 0%, #000, transparent 75%); }
.ctaband > * { position: relative; z-index: 1; }
.ctaband h2 { color: #fff; }

/* ---- compliance note -------------------------------------------------- */
.note { background: var(--surface2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 18px 20px; }
.note .tiny { margin: 0; }

/* ---- footer ----------------------------------------------------------- */
.site-footer { background: var(--ink); color: #93A4BC; padding: 54px 0 34px; margin-top: 20px; }
.site-footer a { color: #CBD5E1; }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 18px; }
.foot-col h4 { color: #E2E8F0; font-size: 12px; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; margin-bottom: 9px; }
.foot-bottom { border-top: 1px solid rgba(148,163,184,.16); margin-top: 34px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12.5px; color: #7C8AA3; }

/* ---- page hero (subpáginas) ------------------------------------------ */
.page-hero { background: linear-gradient(180deg, #0B1220, #0E1A30); color: #E2E8F0; padding: 60px 0 66px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(700px 360px at 70% 0%, #000, transparent 78%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #AEBED2; max-width: 640px; }

/* ---- responsive ------------------------------------------------------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-scan { display: none; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: var(--surface); border-bottom: 1px solid var(--line); padding: 12px 16px; box-shadow: var(--shadow); }
  .nav-links.open a { padding: 12px; font-size: 16px; }
  .g-2, .g-3, .g-4, .price-grid, .tl-grid { grid-template-columns: 1fr; }
  .timeline .line { display: none; }
  .tl .node { margin-top: 8px; }
  .statband, .ctaband { padding: 32px 24px; }
  .foot-grid { grid-template-columns: 1fr; }
  .bar { grid-template-columns: 92px 1fr 30px; }
}
