/* ==========================================================================
   AXIOS TRE — folha única do site novo (direção "Máquina de Prova")
   Carregar SOZINHA: substitui styles.css + site.css nas páginas novas.
   ========================================================================== */

:root {
  --ink0: #08090a;
  --ink1: #0c0d0f;
  --line: rgba(255, 255, 255, 0.07);
  --line2: rgba(255, 255, 255, 0.10);
  --tx: #f2f0eb;
  --tx-2: #d6d3cb;
  --tx-3: #a8a49b;
  --tx-4: #8b887f;
  --tx-5: #6b6862;
  --tx-6: #57544e;
  --gold: #c9ae6d;
  --gold-hi: #ebd9a9;
  --gold-lo: #7a6733;
  --gold-ink: #241a02;
  --teal: #2dd4bf;
  --indigo: #818cf8;
  --red: #f0a4a4;
  --amber: #fbbf24;
  /* Goteira fluida: o fundo das seções vai de ponta a ponta, o CONTEÚDO
     continua limitado a 1200px e centralizado. Mude só este número para
     alargar ou estreitar a coluna de leitura do site inteiro.
     Usa 100vw (largura da janela), não 100%: dentro de uma coluna de grid
     — o hero, por exemplo — 100% seria a largura da coluna e a conta daria
     negativo, colando o texto na borda. */
  --gut: max(24px, calc((100vw - 1200px) / 2));
  --sans: "Geist", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  background: var(--ink0);
  color: var(--tx);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); }
a:hover { color: var(--gold-hi); }

img { max-width: 100%; }

@keyframes axMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes axBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }
@keyframes axBreathe { 0%, 100% { opacity: 0.35; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.06); } }
@keyframes axSweep { from { background-position: 0 -80px; } to { background-position: 0 100%; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- shell ---------- */

.wrap { overflow-x: clip; }

.sect { padding: 80px var(--gut); border-bottom: 1px solid var(--line); }
.sect--soft { background: var(--ink1); }
.sect--flush { padding-top: 88px; padding-bottom: 0; position: relative; }

/* ---------- header ---------- */

.hd {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px var(--gut);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hd-left { display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--tx); }
.brand:hover { color: var(--tx); }
.mark { width: 30px; height: 30px; border-radius: 7px; overflow: hidden; background: #0a1330; line-height: 0; flex-shrink: 0; }
.mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo { display: inline-flex; align-items: baseline; font-weight: 600; letter-spacing: -0.02em; font-size: 18px; line-height: 1; white-space: nowrap; }
.logo .l-x { color: var(--gold); font-weight: 700; display: inline-block; transform: skewX(-4deg); }
.logo-tre {
  font-family: var(--mono); font-weight: 400; font-size: 0.42em; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tx-5);
  margin-left: 0.7em; padding-left: 0.7em; border-left: 1px solid rgba(255, 255, 255, 0.14);
  align-self: center;
}
.hd-nav { display: flex; gap: 26px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.hd-nav a { color: var(--tx-4); text-decoration: none; }
.hd-nav a:hover { color: var(--tx); }
.hd-nav a[aria-current="page"] { color: var(--tx); }
.hd-nav a.is-toc[aria-current="page"] { color: var(--teal); }
.hd-nav a.is-sentinel[aria-current="page"] { color: var(--indigo); }

.hd-burger { display: none; }

/* ---------- botões / links ---------- */

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; padding: 11px 18px;
  border-radius: 999px; text-decoration: none;
  background: var(--gold); color: var(--gold-ink);
  border: none; cursor: pointer;
  transition: background .18s ease;
}
.pill:hover { background: var(--gold-hi); color: var(--gold-ink); }
.pill .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--gold-ink); animation: axBlink 1.8s ease-in-out infinite; }
.pill--lg { font-size: 17px; padding: 20px 34px; gap: 12px; white-space: nowrap; }

.btn-lite {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; padding: 16px 26px;
  border-radius: 999px; text-decoration: none;
  background: var(--tx); color: var(--ink0);
  transition: background .18s ease, color .18s ease;
}
.btn-lite:hover { background: var(--gold); color: var(--gold-ink); }
.btn-lite--teal:hover { background: var(--teal); color: #06231f; }
.btn-lite--indigo:hover { background: var(--indigo); color: #0b0d24; }

.link-under {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tx-4); text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18); padding-bottom: 3px;
}
.link-under:hover { color: var(--tx); border-color: var(--gold); }
.link-under--teal:hover { color: var(--tx); border-color: var(--teal); }
.link-under--indigo:hover { color: var(--tx); border-color: var(--indigo); }

.ctas { margin-top: 40px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ---------- tipografia ---------- */

.kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-lo); }
.kicker--teal { color: var(--teal); }
.kicker--indigo { color: var(--indigo); }

.h1 { margin: 26px 0 0; font-size: 76px; line-height: 0.94; letter-spacing: -0.04em; font-weight: 400; max-width: 620px; text-wrap: balance; }
.h1--toc { font-size: 68px; line-height: 0.96; }
.h1--sentinel { font-size: 78px; letter-spacing: -0.045em; max-width: 600px; }
.h1 em { font-style: normal; color: var(--gold); }
.h1 .t { color: var(--teal); }
.h1 .i { color: var(--indigo); }

.h2 { margin: 22px 0 0; font-size: 46px; font-weight: 400; letter-spacing: -0.035em; line-height: 1.06; max-width: 700px; text-wrap: balance; }
.h2--tight { max-width: 620px; }
.h2--wide { max-width: 820px; }

.lead { margin: 30px 0 0; font-size: 18.5px; line-height: 1.55; color: var(--tx-3); max-width: 500px; }
.lead em { font-style: normal; color: var(--tx); }
.sub { margin: 24px 0 0; font-size: 16.5px; line-height: 1.62; color: var(--tx-4); max-width: 640px; }
.body { margin: 18px 0 0; font-size: 15px; line-height: 1.65; color: var(--tx-4); max-width: 700px; }
.body strong { color: var(--tx); font-weight: 500; }
.bigline { margin: 52px 0 0; font-size: 42px; font-weight: 400; letter-spacing: -0.035em; line-height: 1.1; max-width: 660px; }
.pullquote { margin: 52px 0 0; font-size: 30px; font-weight: 400; letter-spacing: -0.03em; line-height: 1.25; max-width: 820px; color: var(--tx-2); }
.pullquote strong { color: var(--tx); font-weight: 400; }

/* ---------- hero ---------- */

.hero { display: grid; grid-template-columns: 1.08fr 0.92fr; border-bottom: 1px solid var(--line); }
.hero-l { padding: 88px 48px 72px var(--gut); position: relative; }
.hero-r { border-left: 1px solid var(--line); background: var(--ink1); padding: 34px var(--gut) 40px 40px; display: flex; flex-direction: column; }
.hero-prod { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; position: relative; }

.glow { position: absolute; border-radius: 999px; pointer-events: none; animation: axBreathe 9s ease-in-out infinite; }
.glow--gold { left: -160px; top: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(201, 174, 109, 0.13), transparent 62%); }
.glow--teal { left: -160px; top: -140px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(45, 212, 191, 0.13), transparent 62%); }
.glow--indigo { right: -180px; top: -160px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(129, 140, 248, 0.15), transparent 62%); }

.statgrid {
  position: relative; margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.stat { background: var(--ink0); padding: 18px 20px; }
.stat b { display: block; font-family: var(--mono); font-size: 22px; font-weight: 400; color: var(--tx); }
.stat span { display: block; margin-top: 6px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-5); line-height: 1.5; }

.strip {
  position: relative; margin-top: 60px; padding-top: 22px;
  border-top: 1px solid var(--line2);
  display: flex; gap: 36px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--tx-6);
}
.strip strong { font-weight: 500; }
.strip--teal strong { color: var(--teal); }
.strip--indigo strong { color: var(--indigo); }

/* ---------- painel de demonstração ---------- */

.panel-hd {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tx-5);
}
.panel-hd > span:first-child { min-width: 0; }
.panel-step { display: inline-flex; align-items: center; gap: 7px; color: var(--tx-3); white-space: nowrap; flex-shrink: 0; }
.panel-step .dot { flex-shrink: 0; }
.panel-step .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--teal); animation: axBlink 1.4s ease-in-out infinite; }
.bars { margin-top: 22px; display: flex; gap: 6px; }
.bars i { flex: 1; height: 2px; border-radius: 2px; background: var(--line2); transition: background .3s ease; }
.bars i.on { background: var(--gold); }

.panel {
  margin-top: 26px; flex: 1; min-height: 420px; position: relative; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; background: var(--ink0);
}
.panel .sweep {
  position: absolute; left: 0; right: 0; top: 0; height: 100%; pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(45, 212, 191, 0.10), transparent);
  background-repeat: no-repeat;
  background-size: 100% 80px;
  animation: axSweep 3.4s linear infinite;
}
.panel-title { padding: 16px 18px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tx-5); }
.panel-body { padding: 18px; }
.panel-body pre, .panel-body .mono { margin: 0; font-family: var(--mono); font-size: 12.5px; line-height: 1.8; color: var(--tx-2); }
/* Só o <pre> preserva o whitespace do fonte. O .mono usa <div> por linha —
   com pre-wrap a indentação do HTML virava linha em branco entre cada uma. */
.panel-body pre { white-space: pre-wrap; }
.panel-step-view { display: none; }
.panel-step-view.is-on { display: block; }
.caplist { display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 12px; color: var(--tx-4); }
.caprow { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 9px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.caprow b { font-weight: 400; color: var(--tx-2); }
.caret { animation: axBlink 1s steps(1) infinite; }
.dim { color: var(--tx-5); }
.mask { color: var(--indigo); background: rgba(129, 140, 248, 0.14); padding: 1px 6px; border-radius: 3px; }
.bad { color: var(--red); }
.hr-dash { margin-top: 20px; padding-top: 16px; border-top: 1px dashed rgba(255, 255, 255, 0.12); }
.fake-note {
  margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--line2);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-6);
}
.verdict-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #1c0d0d; background: var(--red); padding: 5px 10px; border-radius: 4px;
}
.verdict-h { margin: 20px 0 0; font-size: 22px; line-height: 1.3; letter-spacing: -0.02em; color: var(--tx); }
.verdict-p { margin: 16px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--tx-4); }
.meta { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-family: var(--mono); font-size: 11px; line-height: 2; color: var(--tx-5); }
.meta b { color: var(--tx); font-weight: 400; }

/* ---------- marquee ---------- */

.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding: 16px 0; background: var(--ink1); }
.marquee-row {
  display: flex; width: max-content; animation: axMarquee 34s linear infinite;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tx-6);
}
.marquee-row > span { display: flex; gap: 44px; padding-right: 44px; }
.marquee-row i { color: var(--gold); font-style: normal; }

/* ---------- cartões de produto ---------- */

.prodgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.prodcard {
  background: var(--ink0); padding: 48px 40px 40px; position: relative; overflow: hidden;
  text-decoration: none; color: var(--tx); display: block; transition: background .25s ease;
}
.prodcard:first-child { padding-left: var(--gut); }
.prodcard:last-child { padding-right: var(--gut); }
.prodcard > * { position: relative; }
.prodcard .halo { position: absolute; right: -120px; top: -120px; width: 340px; height: 340px; border-radius: 999px; pointer-events: none; }
.prodcard--toc:hover { background: #0d1210; color: var(--tx); }
.prodcard--toc .halo { background: radial-gradient(circle, rgba(45, 212, 191, 0.14), transparent 64%); }
.prodcard--sn:hover { background: #0e0f18; color: var(--tx); }
.prodcard--sn .halo { background: radial-gradient(circle, rgba(129, 140, 248, 0.16), transparent 64%); }
.prod-aud { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.prodcard--toc .prod-aud, .prodcard--toc .prod-go { color: var(--teal); }
.prodcard--sn .prod-aud, .prodcard--sn .prod-go { color: var(--indigo); }
.prod-h { margin: 20px 0 0; font-size: 44px; font-weight: 400; letter-spacing: -0.035em; }
.prod-p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--tx-3); max-width: 440px; }
.prod-p em { font-style: normal; color: var(--tx); }
.prod-go { margin-top: 34px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- colunas com hairline ---------- */

.cols { margin-top: 52px; display: grid; }
.cols--3 { grid-template-columns: repeat(3, 1fr); }
.cols--4 { grid-template-columns: repeat(4, 1fr); }
.cols--2 { grid-template-columns: 1fr 1fr; gap: 48px; }
.col { padding: 0 28px 0 24px; border-left: 1px solid var(--line2); }
.col .n { font-family: var(--mono); font-size: 11px; color: var(--gold-lo); }
.col--teal .n { color: var(--teal); }
.col--indigo .n { color: var(--indigo); }
.col h3 { margin: 14px 0 10px; font-size: 19px; font-weight: 500; letter-spacing: -0.02em; }
.col--lg h3 { font-size: 24px; font-weight: 400; letter-spacing: -0.025em; }
.col p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--tx-4); }
.col--lg p { font-size: 14.5px; line-height: 1.62; }

/* ---------- linhas com hairline ---------- */

.rows { margin-top: 52px; display: flex; flex-direction: column; }
.row { display: grid; gap: 32px; align-items: baseline; padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.row--pillar { grid-template-columns: 64px 0.9fr 1.1fr; }
.row--fail { grid-template-columns: 0.85fr 1.4fr 110px; padding: 24px 0; }
.row .n { font-family: var(--mono); font-size: 11px; }
.row--pillar .n { color: var(--teal); }
.row h3 { margin: 0; font-size: 24px; font-weight: 400; letter-spacing: -0.025em; line-height: 1.15; }
.row--fail h3 { font-size: 21px; letter-spacing: -0.02em; }
.row p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--tx-4); }
.row--fail p { font-size: 14.5px; }
.sev {
  justify-self: end; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 4px; white-space: nowrap;
}
.sev--alta { background: rgba(251, 191, 36, 0.12); color: var(--amber); }
.sev--critica { background: var(--red); color: #1c0d0d; }

.rows--pairs { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.pair { padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.pair h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 10px; }
.pair h3 .sq { width: 7px; height: 7px; border-radius: 2px; background: var(--indigo); flex-shrink: 0; }
.pair p { margin: 0; font-size: 14px; line-height: 1.62; color: var(--tx-4); }
.pair .note { margin-top: 12px; font-family: var(--mono); font-size: 11.5px; line-height: 1.6; color: var(--tx-6); }

/* ---------- passos ---------- */

.steps {
  margin-top: 52px; display: grid; gap: 1px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px; overflow: hidden;
}
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps--2 { grid-template-columns: 1fr 1fr; }
.step { background: var(--ink0); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.step .badge { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.step--toc .badge { color: var(--teal); }
.step--sn .badge { color: var(--indigo); }
.step h3 { margin: 0; font-size: 24px; font-weight: 400; letter-spacing: -0.025em; }
.step--sn h3 { font-size: 26px; }
.step p { margin: 0; font-size: 14px; line-height: 1.62; color: var(--tx-4); }
.step .ex {
  margin-top: auto; padding: 13px 15px; border-radius: 8px;
  font-family: var(--mono); font-size: 11.5px; line-height: 1.6;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--tx-2);
}

/* ---------- callouts ---------- */

.callout {
  margin-top: 32px; padding: 26px 28px; border-radius: 12px;
  font-size: 16px; line-height: 1.65; max-width: 820px;
}
.callout strong { font-weight: 500; }
.callout--teal { border: 1px solid rgba(45, 212, 191, 0.28); background: linear-gradient(100deg, rgba(45, 212, 191, 0.08), rgba(45, 212, 191, 0.02)); color: var(--tx-2); }
.callout--teal strong { color: var(--tx); }
.callout--red { border: 1px solid rgba(240, 164, 164, 0.28); background: rgba(240, 164, 164, 0.06); color: #f4cfcf; }
.callout--red strong { color: #ffffff; }

.note-line {
  margin-top: 24px; font-family: var(--mono); font-size: 12.5px; color: var(--teal);
}
.dashbox {
  margin-top: 36px; padding: 18px 22px; border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 10px;
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--tx-4);
}
.dashbox strong { color: var(--teal); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; }

/* ---------- tabela (grid) ---------- */

.tbl { margin-top: 48px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; }
.tbl-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1px; background: rgba(255, 255, 255, 0.08); font-size: 14px; }
.tbl-row > div { background: var(--ink0); padding: 16px 20px; color: var(--tx-4); }
.tbl-row > div:first-child { color: var(--tx); }
.tbl-row .hero-col { background: rgba(129, 140, 248, 0.10); color: var(--tx); }
.tbl-row--head { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.tbl-row--head > div { color: var(--tx-5); }
.tbl-row--head .hero-col { color: var(--indigo); }

/* ---------- 39 / chips ---------- */

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.bignum { margin-top: 20px; font-size: 140px; font-weight: 300; letter-spacing: -0.055em; line-height: 0.9; color: var(--indigo); }
.h2--num { margin: 14px 0 0; font-size: 26px; letter-spacing: -0.025em; line-height: 1.2; max-width: 420px; }
.chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--mono); font-size: 11.5px; color: var(--tx-4);
  padding: 9px 13px; border: 1px solid var(--line2); border-radius: 999px;
}
.chip strong { color: var(--indigo); font-weight: 500; }
.scope { margin-top: 28px; font-family: var(--mono); font-size: 11.5px; line-height: 1.7; color: var(--tx-6); max-width: 520px; }

.inline-list {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--tx-6);
}
.inline-list b { color: var(--tx-4); font-weight: 400; }

/* ---------- imagens ---------- */

.shot { margin: 0; }
.shot .frame { border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 10px; overflow: hidden; line-height: 0; }
.shot img { width: 100%; height: auto; display: block; }
.shot figcaption { margin-top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--tx-6); line-height: 1.6; }
.shot-row { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.shot-fade {
  position: relative; margin: 56px 0 0; max-height: 300px; overflow: hidden; line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.09); border-bottom: none; border-radius: 12px 12px 0 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 42%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 42%, transparent 96%);
}
.shot-fade img { width: 100%; height: auto; display: block; }

.evidence { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; background: var(--ink1); }
.evidence-hd { padding: 14px 18px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tx-5); }
.evidence-body { padding: 20px 18px; font-family: var(--mono); font-size: 12.5px; line-height: 1.85; color: var(--tx-2); }
.evidence-body .c { color: var(--tx-6); }
.evidence-body .k { color: var(--teal); }
.evidence-body .v { color: var(--indigo); }
.evidence-panes { display: flex; flex-direction: column; gap: 1px; background: var(--line); }
.evidence-pane { background: var(--ink1); padding: 16px 18px; }
.evidence-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tx-5); display: flex; justify-content: space-between; gap: 10px; }
.evidence-pane pre { margin: 10px 0 0; font-family: var(--mono); font-size: 11.5px; line-height: 1.8; color: var(--tx-2); white-space: pre-wrap; }
.evidence-verdict { background: rgba(240, 164, 164, 0.06); border-top: 1px solid rgba(240, 164, 164, 0.22); padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.evidence-verdict .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #1c0d0d; background: var(--red); padding: 4px 9px; border-radius: 4px; flex-shrink: 0; }
.evidence-verdict p { margin: 0; font-size: 12.5px; line-height: 1.5; color: #f4cfcf; }
.evidence-foot { padding: 14px 18px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-6); }

/* ---------- fatos (home) ---------- */

.two { padding: 80px var(--gut); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.fact { background: var(--ink1); padding: 26px 24px; }
.fact b { display: block; font-size: 24px; font-weight: 400; letter-spacing: -0.025em; }
.fact span { display: block; margin-top: 8px; font-size: 13px; line-height: 1.55; color: var(--tx-4); }

/* ---------- cross-sell ---------- */

.cross {
  padding: 26px var(--gut); border-bottom: 1px solid var(--line); text-align: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--tx-6);
}
.cross a { text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.cross a.t { color: var(--teal); }
.cross a.i { color: var(--indigo); }

/* ---------- contato ---------- */

.contact { padding: 88px var(--gut) 96px; border-top: 1px solid var(--line); background: var(--ink1); }
.contact-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.contact-top .h2 { font-size: 52px; letter-spacing: -0.035em; line-height: 1.02; max-width: 560px; }
.contact-top p { margin: 20px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--tx-4); max-width: 480px; }
.contact-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.citem {
  display: flex; gap: 18px; align-items: baseline; padding: 22px 0;
  border-top: 1px solid var(--line2); text-decoration: none; color: var(--tx);
}
a.citem:hover { color: var(--gold-hi); }
.citem .n { font-family: var(--mono); font-size: 11px; color: var(--gold-lo); flex-shrink: 0; padding-top: 4px; }
.citem b { display: block; font-size: 17px; font-weight: 500; letter-spacing: -0.015em; }
.citem b i { color: var(--gold); font-style: normal; }
.citem span { display: block; margin-top: 7px; font-size: 14px; line-height: 1.6; color: var(--tx-4); }
.direct {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line2);
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--tx-6);
}
.direct b { color: var(--tx-4); font-weight: 400; }
.direct a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201, 174, 109, 0.35); padding-bottom: 2px; }
.direct a:hover { color: var(--gold-hi); border-color: var(--gold-hi); }

/* ---------- FAB WhatsApp ---------- */

.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform .15s ease;
}
.fab:hover { transform: translateY(-2px) scale(1.05); }
.fab svg { width: 29px; height: 29px; display: block; }

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 1100px) {
  .h1 { font-size: 62px; }
  .h1--toc { font-size: 56px; }
  .h1--sentinel { font-size: 62px; }
  .h2 { font-size: 38px; }
  .bignum { font-size: 108px; }
  .cols--4 { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .steps--4 { grid-template-columns: 1fr 1fr; }
  .row--pillar { grid-template-columns: 48px 1fr; }
  .row--pillar p { grid-column: 2; }
}

@media (max-width: 900px) {
  .prodcard:first-child, .prodcard:last-child { padding-left: 24px; padding-right: 24px; }
  .hd { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-l { padding: 64px 24px 48px; }
  .hero-r { border-left: none; border-top: 1px solid var(--line); padding: 28px 24px 32px; }
  .hero-prod, .split, .two, .cols--2, .shot-row, .rows--pairs, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .rows--pairs, .contact-grid { gap: 0; }
  .prodgrid { grid-template-columns: 1fr; }
  .steps--3, .steps--4, .steps--2 { grid-template-columns: 1fr; }
  .cols--3 { grid-template-columns: 1fr; row-gap: 28px; }
  .col { padding-left: 20px; }
  /* Mobile: o header vira duas linhas — marca + WhatsApp em cima, o seletor de
     produto (TOC / Sentinel / A tese) numa faixa própria embaixo. O display:contents
     no .hd-left promove marca e nav a filhos diretos do .hd para poder reordenar. */
  .hd { flex-wrap: wrap; row-gap: 0; padding: 14px 24px 0; }
  .hd-left { display: contents; }
  .brand { order: 1; }
  .hd .pill { order: 2; }
  .hd-nav {
    order: 3; display: flex; width: 100%; gap: 0; justify-content: space-between;
    margin-top: 14px; padding: 12px 0; border-top: 1px solid var(--line);
  }
  .hd-nav a { font-size: 12px; letter-spacing: 0.12em; }
  .hd-burger { display: none; }
  .tbl-row { grid-template-columns: 1fr; }
  .tbl-row--head { display: none; }
  .tbl-row > div::before { content: attr(data-l); display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tx-6); margin-bottom: 4px; }
  .tbl-row > div:first-child::before { content: none; }
  .row--fail { grid-template-columns: 1fr; gap: 12px; }
  .sev { justify-self: start; }
}

@media (max-width: 560px) {
  /* Painel: o cabeçalho vira duas linhas e o rótulo do passo encolhe
     para nunca quebrar no meio ("de 3" caindo sozinho na linha). */
  .panel-hd { font-size: 9.5px; letter-spacing: 0.1em; }
  .panel-step { font-size: 9.5px; }
  .hd { padding: 12px 20px 0; }
  .hd .pill { font-size: 12.5px; padding: 10px 14px; gap: 8px; }
  .hd-nav { margin-top: 12px; }
  .hd-nav a { font-size: 11px; letter-spacing: 0.1em; }
  .h1, .h1--toc, .h1--sentinel { font-size: 44px; letter-spacing: -0.03em; }
  .h2, .contact-top .h2 { font-size: 30px; }
  .bigline { font-size: 30px; }
  .pullquote { font-size: 22px; }
  .bignum { font-size: 84px; }
  .statgrid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .pill--lg { font-size: 15px; padding: 16px 24px; }
}

/* ==========================================================================
   Formulário (Netlify Forms) — para quem não usa WhatsApp
   ========================================================================== */

/* Painel 50/50 exato: duas colunas iguais, mesma altura.
   minmax(0,1fr) impede que conteúdo largo empurre a coluna além dos 50%. */
.lead-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: stretch; }
.lead-grid > * { min-width: 0; }
.lead-grid > div { display: flex; flex-direction: column; justify-content: flex-start; gap: 26px; }
.lead-grid .sub { margin: 0 0 4px; max-width: none; }
.lead-grid > div > .col { margin-bottom: 0 !important; }
.form { display: flex; flex-direction: column; }

.form {
  border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 14px;
  background: #101114; padding: 32px 30px 28px;
}
.form h3 { margin: 0 0 6px; font-size: 22px; font-weight: 400; letter-spacing: -0.025em; }
.form .hint { margin: 0 0 22px; font-size: 13.5px; line-height: 1.55; color: var(--tx-4); }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; min-width: 0; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tx-5); }
.field input, .field select, .field textarea {
  min-width: 0; width: 100%; box-sizing: border-box;
  font-family: var(--sans); font-size: 14.5px; color: var(--tx);
  background: var(--ink0); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px;
  padding: 12px 14px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--tx-6); }
.field textarea { resize: vertical; min-height: 80px; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.form--toc .field input:focus, .form--toc .field select:focus, .form--toc .field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.14);
}
.form--sn .field input:focus, .form--sn .field select:focus, .form--sn .field textarea:focus {
  border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.16);
}

.form .submit { width: 100%; justify-content: center; margin-top: 6px; border: none; cursor: pointer; font-family: var(--sans); }
.form .submit[disabled] { opacity: 0.6; cursor: progress; }
.form .alt {
  width: 100%; justify-content: center; margin-top: 10px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; padding: 16px 26px; border-radius: 999px;
  text-decoration: none; background: rgba(37, 211, 102, 0.12); color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.30);
  transition: background .18s ease, color .18s ease;
}
.form .alt:hover { background: #25d366; color: #05230f; }
.form-note {
  margin: 18px 0 0; text-align: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; line-height: 1.8; color: var(--tx-6);
}
.form-note a { color: var(--gold); text-decoration: none; }
.form-note a:hover { color: var(--gold-hi); }

.form-ok, .form-err { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 8px; font-size: 13px; line-height: 1.55; }
.form-ok { background: rgba(45, 212, 191, 0.10); border: 1px solid rgba(45, 212, 191, 0.30); color: #5eead4; }
.form--sn .form-ok { background: rgba(129, 140, 248, 0.12); border-color: rgba(129, 140, 248, 0.32); color: #a5b4fc; }
.form-err { background: rgba(240, 164, 164, 0.08); border: 1px solid rgba(240, 164, 164, 0.28); color: #f4cfcf; }
.form-err a { color: #f4cfcf; font-weight: 600; }

@media (max-width: 900px) {
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 26px 22px 24px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
