/* ═══════════════════════════════════════════════════════════════
   CASO MASTER / VORCARO — dossiê investigativo (cinematic dark)
   Tema escuro padrão · acento âmbar "fita da justiça"
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0c0e;
  --bg-2: #101216;
  --surface: #17191d;
  --surface-2: #1d2026;
  --ink: #eceae4;
  --ink-2: #a9adb5;
  --ink-3: #6f747d;
  --line: rgba(236, 234, 228, 0.09);
  --line-strong: rgba(236, 234, 228, 0.18);

  --accent: #f5b942;
  --accent-2: #ffd98a;
  --accent-deep: #b45309;
  --accent-ink: #17130a;

  --red: #ef4444;
  --amber: #fbbf24;
  --violet: #a78bfa;
  --blue: #6d9eff;
  --green: #34d399;
  --pink: #f472b6;

  --tex: rgba(255, 255, 255, 0.028);
  --scroll-thumb: #2c2f36;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 30px 70px -24px rgba(0, 0, 0, 0.65);

  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-tema="claro"] {
  --bg: #f7f5f0;
  --bg-2: #f0ede4;
  --surface: #fffdf8;
  --surface-2: #f3f0e7;
  --ink: #1b1c1f;
  --ink-2: #4a4e57;
  --ink-3: #7c8088;
  --line: rgba(27, 28, 31, 0.13);
  --line-strong: rgba(27, 28, 31, 0.26);

  --accent: #b45309;
  --accent-2: #92400e;
  --accent-deep: #7c3a06;
  --accent-ink: #fffaf2;

  --red: #dc2626;
  --amber: #d97706;
  --violet: #7c3aed;
  --blue: #1d4ed8;
  --green: #059669;
  --pink: #db2777;

  --tex: rgba(28, 22, 10, 0.05);
  --scroll-thumb: #d3ccbc;
  --shadow: 0 1px 2px rgba(30, 26, 18, 0.07), 0 10px 30px -14px rgba(30, 26, 18, 0.22);
  --shadow-lg: 0 30px 70px -26px rgba(30, 26, 18, 0.32);
}

/* ── Base ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--scroll-thumb) transparent; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background-color: var(--bg);
  background-image: repeating-linear-gradient(0deg, var(--tex) 0 1px, transparent 1px 3px);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
::selection { background: color-mix(in srgb, var(--accent) 32%, transparent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
section { scroll-margin-top: 76px; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--scroll-thumb); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: color-mix(in srgb, var(--accent) 55%, var(--scroll-thumb)); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Progresso (topo) ── */
.progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 200; background: rgba(0, 0, 0, 0.25);
}
.progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent) 60%, var(--accent-2));
  box-shadow: 0 0 12px rgba(245, 185, 66, 0.55);
  transition: width 0.12s linear;
}

/* ── Topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .topbar { background: color-mix(in srgb, var(--bg) 94%, transparent); }
}
.topbar .wrap { display: flex; align-items: center; gap: 26px; height: 62px; }

.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 700; }
.brand-mark {
  position: relative; width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  color: var(--accent); font-size: 13px; line-height: 1;
}
.brand-mark::before {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  transform: rotate(45deg);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  transition: background 0.3s, box-shadow 0.3s;
}
.brand:hover .brand-mark::before {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  box-shadow: 0 0 14px rgba(245, 185, 66, 0.35);
}
.brand-text { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.brand-name { font-family: var(--font-display); font-weight: 900; font-size: 17.5px; letter-spacing: -0.02em; }
.brand-sub { font: 500 12px var(--font-mono); color: var(--ink-3); letter-spacing: 0.02em; }

.topnav { display: flex; gap: 24px; margin-left: auto; }
.topnav a {
  position: relative; color: var(--ink-2);
  font: 500 13.5px var(--font-ui); letter-spacing: 0.01em;
  padding: 4px 0; transition: color 0.25s;
}
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after { transform: scaleX(1); }

.top-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--ink-2); font-size: 16px; cursor: pointer;
  transition: 0.25s;
}
.icon-btn:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); transform: rotate(15deg); }

/* ── Botões / inputs ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 11px; border: 1px solid transparent;
  padding: 11px 20px; font: 600 14.5px var(--font-ui);
  cursor: pointer; transition: transform 0.2s var(--ease-out), box-shadow 0.3s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: var(--accent-ink); font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 20px -8px rgba(245, 185, 66, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 12px 30px -8px rgba(245, 185, 66, 0.55); }
html[data-tema="claro"] .btn-primary { box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 18px -8px rgba(124, 58, 6, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, transparent); }
.btn-lg { padding: 15px 30px; font-size: 15.5px; border-radius: 13px; }
.btn-sm { padding: 7px 13px; font-size: 12.5px; border-radius: 9px; }
.btn-block { width: 100%; }

.input, .select {
  width: 100%; padding: 11px 15px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  font: 500 14.5px var(--font-ui); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.input::placeholder { color: var(--ink-3); }
.input:focus, .select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.select {
  appearance: none; cursor: pointer; padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

/* ── Kicker / títulos de seção ── */
.kicker {
  display: flex; align-items: center; gap: 12px;
  font: 700 12px var(--font-mono); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--accent); opacity: 0.8; flex: none; }

.section-head { margin-bottom: 42px; }
.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 4.5vw, 54px);
  letter-spacing: -0.02em; line-height: 1.06;
  margin: 0 0 14px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub { color: var(--ink-2); font-size: 17px; max-width: 660px; margin: 0; }

/* ── Seções ── */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-dark {
  background-color: #0d0f12;
  background-image:
    radial-gradient(1100px 480px at 12% 0%, rgba(245, 185, 66, 0.06), transparent 60%),
    radial-gradient(900px 420px at 95% 90%, rgba(239, 68, 68, 0.05), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 4px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #eceae4;
  overflow: hidden;
}
.section-dark .section-title { color: #f4f2ec; }
.section-dark .section-sub { color: #a9adb5; }
.section-dark .kicker { color: #fbbf24; }
.section-dark .kicker::before { background: #fbbf24; }
.section-dark::before {
  content: "CASE FILE Nº 5.026 · SIGILO SUSPENSO";
  position: absolute; top: 60px; right: -44px;
  font: 700 clamp(56px, 8vw, 112px) var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245, 185, 66, 0.045);
  transform: rotate(-7deg); transform-origin: right top;
  pointer-events: none; white-space: nowrap; user-select: none;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(72px, 10vh, 120px) 0 44px;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% -12%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 62%),
    radial-gradient(760px 420px at -8% 30%, color-mix(in srgb, var(--violet) 6%, transparent), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
html[data-tema="claro"] .hero {
  background:
    radial-gradient(1000px 520px at 82% -12%, rgba(180, 83, 9, 0.09), transparent 62%),
    var(--bg);
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, var(--tex) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, var(--tex) 0 1px, transparent 1px 72px);
  -webkit-mask-image: radial-gradient(130% 100% at 68% 8%, #000 18%, transparent 72%);
  mask-image: radial-gradient(130% 100% at 68% 8%, #000 18%, transparent 72%);
}

.hero-doc {
  position: absolute; top: -4%; right: -3%;
  width: min(640px, 50vw); aspect-ratio: 3 / 4;
  background: url("../img/docs/hero_despacho.jpg") center / cover no-repeat;
  opacity: 0.16;
  filter: grayscale(1) contrast(1.2) brightness(1.05);
  mix-blend-mode: screen;
  transform: rotate(6deg) translateY(var(--hero-par, 0px));
  will-change: transform;
  pointer-events: none;
  border: 1px solid rgba(245, 185, 66, 0.12);
}
html[data-tema="claro"] .hero-doc {
  opacity: 0.07;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05);
}

.hero-wrap { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 11.5px var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  padding: 8px 16px; border-radius: 999px;
}
html[data-tema="claro"] .hero-eyebrow { color: var(--accent); }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-out infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin: 30px 0 24px; max-width: 15ch;
}
.hero-title em { font-style: italic; color: var(--accent); }

.hero-lead { max-width: 720px; font-size: 19px; line-height: 1.7; color: var(--ink-2); margin: 0 0 34px; }
.hero-lead strong { color: var(--ink); font-weight: 700; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }

.hero-stats {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  max-width: 860px;
}
.stat { padding: 24px 36px 4px 0; margin-right: 36px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; margin-right: 0; }
.stat-n {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1; letter-spacing: -0.02em;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.stat-l { font: 500 12px var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }

/* ── Hero strip (thumbnails dos autos) ── */
.hero-strip {
  position: relative; z-index: 2;
  display: flex; align-items: stretch; gap: 18px;
  margin-top: clamp(40px, 7vh, 72px);
}
.strip-label {
  font: 700 10px var(--font-mono); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-3);
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; padding: 6px 2px;
  border-left: 1px solid var(--line);
}
.hero-thumbs {
  display: flex; gap: 16px; align-items: center;
  overflow-x: auto; padding: 14px 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  scrollbar-width: none;
}
.hero-thumbs::-webkit-scrollbar { display: none; }
.ht {
  flex: none; width: 150px; height: 195px;
  border: 1px solid var(--line-strong); border-radius: 8px;
  background: var(--surface-2) center / cover no-repeat;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.6);
  overflow: hidden; cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.3s;
  transform: rotate(-2deg);
}
.ht:nth-child(even) { transform: rotate(2deg); }
.ht img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumbs > img {
  flex: none; width: 150px; height: 195px; object-fit: cover;
  border: 1px solid var(--line-strong); border-radius: 8px;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.6);
  cursor: pointer; transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  transform: rotate(-2deg);
}
.hero-thumbs > img:nth-child(even) { transform: rotate(2deg); }
.ht:hover,
.hero-thumbs > img:hover {
  transform: rotate(0deg) scale(1.06);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(245, 185, 66, 0.25);
  position: relative; z-index: 2;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute; bottom: 16px; left: 50%;
  width: 1px; height: 46px; overflow: hidden;
}
.hero-scroll-hint span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent));
  transform-origin: top;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  75%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  background: #0c0d10;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  padding: 15px 0;
  color: color-mix(in srgb, var(--accent) 72%, #6b5210);
}
html[data-tema="claro"] .marquee { color: #8a5a10; }
.marquee-inner {
  display: inline-flex; align-items: center; gap: 40px;
  white-space: nowrap; will-change: transform;
  font: 700 12px var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  animation: marquee 40s linear infinite;
}
.marquee-inner span { display: inline-block; }
.marquee-inner i {
  font-style: normal; font-size: 8px; color: var(--accent);
  opacity: 0.45; flex: none;
}
.marquee:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ EVIDÊNCIAS ═══════════════ */
.evidence-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.evidence {
  position: relative;
  background: #131519;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.35s, box-shadow 0.5s, background 0.35s;
}
.evidence:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(245, 185, 66, 0.14);
  background: #15181d;
}
.ev-num {
  position: absolute; top: -20px; right: 12px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 120px; line-height: 1;
  color: rgba(236, 234, 228, 0.07);
  pointer-events: none; user-select: none;
}
.evidence h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 24px; line-height: 1.2; letter-spacing: -0.01em;
  color: #f4f2ec;
  margin: 0 0 12px; position: relative;
}
.evidence p { color: #b6bac1; font-size: 14.5px; line-height: 1.7; margin: 0 0 22px; position: relative; }
.evidence p strong { color: #eceae4; }
.evidence p em { color: var(--accent-2); }
.ev-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: auto; position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 16px;
}
.ev-ref { font: 500 11.5px var(--font-mono); color: #6f747d; text-align: right; }

.pill {
  display: inline-flex; align-items: center;
  font: 700 10.5px var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid;
  white-space: nowrap;
}
.pill-red    { color: #f87171; border-color: rgba(239, 68, 68, 0.42);  background: rgba(239, 68, 68, 0.1); }
.pill-amber  { color: #fbbf24; border-color: rgba(251, 191, 36, 0.42); background: rgba(251, 191, 36, 0.1); }
.pill-violet { color: #c4b5fd; border-color: rgba(167, 139, 250, 0.42); background: rgba(167, 139, 250, 0.1); }
.pill-blue   { color: #93c5fd; border-color: rgba(109, 158, 255, 0.42); background: rgba(109, 158, 255, 0.1); }

/* ── Controles da timeline / chips ── */
.tl-controls, .docs-controls {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  --c: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
  padding: 8px 16px; border-radius: 999px;
  font: 600 13px var(--font-ui); cursor: pointer;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
}
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c); box-shadow: 0 0 6px color-mix(in srgb, var(--c) 60%, transparent); }
.chip:hover { border-color: var(--c); color: var(--ink); transform: translateY(-2px); }
.chip.active {
  border-color: color-mix(in srgb, var(--c) 60%, transparent);
  background: color-mix(in srgb, var(--c) 14%, transparent);
  color: var(--ink);
}
.chip[data-f="todas"]      { --c: var(--accent); }
.chip[data-f="stf"]        { --c: #8b5cf6; }
.chip[data-f="fraude"]     { --c: #ef4444; }
.chip[data-f="operacao"]   { --c: #f59e0b; }
.chip[data-f="documentos"] { --c: #10b981; }
.chip[data-f="politica"]   { --c: #3b82f6; }
.chip[data-f="rede"]       { --c: #ec4899; }
.tl-controls .input { max-width: 340px; margin-left: auto; }
.docs-controls .input { flex: 1; min-width: 260px; }
.docs-controls .select { max-width: 280px; }

/* ═══════════════ LINHA DO TEMPO ═══════════════ */
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; left: calc(50% - 1px); top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 55%, transparent) 40%, color-mix(in srgb, var(--accent) 30%, transparent) 80%, transparent 100%);
  border-radius: 2px;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--accent) 45%, transparent));
}
.era { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 46px 0 10px; }
.era-tag {
  font: 700 11.5px var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  padding: 9px 20px; border-radius: 999px;
  white-space: nowrap;
}
html[data-tema="claro"] .era-tag { color: var(--accent); }
.era-line { width: 130px; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 40%, transparent)); }
.era-line + .era-tag + .era-line { background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 40%, transparent), transparent); }

.tl-year {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  margin: 10px 0 30px;
}
.tl-year span {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 6.5vw, 84px); letter-spacing: -0.03em; line-height: 1;
  color: var(--accent);
  background: var(--bg);
  padding: 2px 30px;
  text-shadow: 0 0 40px color-mix(in srgb, var(--accent) 45%, transparent);
}

.ev {
  position: relative;
  display: grid; grid-template-columns: 1fr 72px 1fr;
  padding: 15px 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.ev::before {
  content: ""; position: absolute; left: calc(50% - 6.5px); top: 34px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--ev-c, var(--ink-3));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--ev-c, var(--ink-3)) 18%, transparent),
    0 0 16px color-mix(in srgb, var(--ev-c, var(--ink-3)) 50%, transparent);
  transition: box-shadow 0.3s, transform 0.3s;
  z-index: 2;
}
.ev:hover::before { transform: scale(1.3); }
.ev.imp3::before { width: 17px; height: 17px; left: calc(50% - 8.5px); top: 32px; }

.ev-date {
  font: 700 13.5px var(--font-mono); color: var(--ink-2);
  padding-top: 22px; white-space: nowrap;
  letter-spacing: 0.05em;
  align-self: start;
}
.ev[data-side="left"] .ev-date { grid-column: 3; grid-row: 1; padding-left: 30px; position: relative; }
.ev[data-side="left"] .ev-date::after {
  content: ""; position: absolute; left: 0; top: 29px; width: 18px; height: 1px;
  background: color-mix(in srgb, var(--ev-c, var(--ink-3)) 55%, transparent);
}
.ev[data-side="right"] .ev-date { grid-column: 1; grid-row: 1; justify-self: end; text-align: right; padding-right: 30px; position: relative; }
.ev[data-side="right"] .ev-date::after {
  content: ""; position: absolute; right: 0; top: 29px; width: 18px; height: 1px;
  background: color-mix(in srgb, var(--ev-c, var(--ink-3)) 55%, transparent);
}
.ev.imp3 .ev-date { color: var(--accent-2); }

.ev-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%),
    var(--surface);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 26px 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.ev-card::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--ev-c, var(--ink-3));
  opacity: 0.75;
}
.ev[data-side="left"] .ev-card { grid-column: 1; grid-row: 1; margin-right: 8px; }
.ev[data-side="right"] .ev-card { grid-column: 3; grid-row: 1; margin-left: 8px; }
.ev:hover .ev-card {
  border-color: color-mix(in srgb, var(--ev-c, var(--ink-3)) 50%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.65), 0 0 24px -8px color-mix(in srgb, var(--ev-c, var(--ink-3)) 30%, transparent);
}
.ev.open .ev-card {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 18px 48px -18px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(245, 185, 66, 0.12);
}
.ev.imp3 .ev-card {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background:
    linear-gradient(180deg, rgba(245, 185, 66, 0.05), transparent 55%),
    var(--surface);
}

.ev-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ev-marco {
  font: 800 10px var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: #17130a;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  padding: 3px 10px; border-radius: 999px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent) 40%, transparent);
}
.ev-cat {
  font: 700 10.5px var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ev-c, var(--ink-3));
  background: color-mix(in srgb, var(--ev-c, var(--ink-3)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ev-c, var(--ink-3)) 35%, transparent);
  padding: 3px 9px; border-radius: 999px;
  white-space: nowrap;
}
.ev-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 21px; letter-spacing: -0.015em; line-height: 1.32;
  color: var(--ink); margin: 0;
}
.ev.imp3 .ev-title { font-size: 24px; }
.ev-teaser {
  margin: 10px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.62;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ev.open .ev-teaser { display: none; }
.ev-body {
  max-height: 0; opacity: 0; overflow: hidden;
  color: var(--ink-2); font-size: 15px; line-height: 1.7;
  transition: max-height 0.55s var(--ease-out), opacity 0.45s ease, padding-top 0.55s var(--ease-out);
}
.ev.open .ev-body { max-height: 900px; opacity: 1; padding-top: 12px; }
.ev-body strong { color: var(--ink); }
.ev-docs { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.ev-doc {
  font: 700 11.5px var(--font-mono); letter-spacing: 0.03em;
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 4px 11px; border-radius: 999px;
  transition: 0.2s;
}
.ev-doc:hover { background: color-mix(in srgb, var(--accent) 22%, transparent); text-decoration: none; transform: translateY(-1px); }
.ev-actors { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  font: 600 11.5px var(--font-ui); color: var(--ink-2);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 999px;
}
.ev-sources { margin-top: 10px; font: 500 12px var(--font-mono); color: var(--ink-3); }
.ev-more {
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 0px var(--font-mono); color: var(--accent);
  margin-top: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  user-select: none;
}
.ev-more::before { content: "detalhes"; font-size: 11.5px; }
.ev-more::after {
  content: "▾"; font-size: 12px; display: inline-block;
  transition: transform 0.35s var(--ease-out);
}
.ev:hover .ev-more::before { color: var(--accent-2); }
.ev.open .ev-more::after { transform: rotate(180deg); }
.tl-empty { color: var(--ink-3); text-align: center; padding: 34px 0; font: 500 13.5px var(--font-mono); }

/* ═══════════════ AUTOS / DOCUMENTOS ═══════════════ */
.docs-meta { font: 500 12.5px var(--font-mono); color: var(--ink-3); margin: 0 0 16px; }
.docs-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 640px; overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin; scrollbar-color: var(--scroll-thumb) transparent;
}
.docs-list::-webkit-scrollbar { width: 6px; }
.docs-list::-webkit-scrollbar-thumb { border: 0; border-radius: 99px; background: var(--scroll-thumb); }
.doc {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.doc:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateX(4px);
  box-shadow: -4px 0 0 0 var(--accent) inset;
}
.doc-date { font: 600 12px var(--font-mono); color: var(--ink-3); padding-top: 4px; white-space: nowrap; }
.doc .doc-proc {
  display: inline-block;
  font: 700 10.5px var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 2px 8px; border-radius: 6px; margin-bottom: 6px;
}
html[data-tema="claro"] .doc .doc-proc { color: var(--accent); }
.doc-title { font: 600 14.5px var(--font-ui); color: var(--ink); line-height: 1.45; }
.doc-sub { font: 500 11.5px var(--font-mono); color: var(--ink-3); margin-top: 3px; }
.doc-snippet { font-size: 13px; color: var(--ink-2); margin-top: 8px; line-height: 1.6; }
.doc-snippet mark {
  background: color-mix(in srgb, var(--accent) 24%, transparent);
  color: inherit; border-radius: 3px; padding: 0 3px;
}
.doc-actions { display: flex; gap: 8px; }
.doc-actions .btn { padding: 7px 12px; font-size: 12px; }

/* ═══════════════ CHAT IA ═══════════════ */
.section-chat {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--line);
}
.chat-shell {
  display: grid; grid-template-columns: 300px 1fr;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: clamp(560px, 80vh, 860px);
}
.chat-side {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px;
  background: var(--bg);
  border-right: 1px solid var(--line);
  overflow-y: auto; min-height: 0;
  scrollbar-width: thin; scrollbar-color: var(--scroll-thumb) transparent;
}
.sug-title {
  font: 700 11px var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.sug-list { display: flex; flex-direction: column; gap: 8px; }
.sug {
  text-align: left; border: 1px solid var(--line); background: var(--surface);
  border-radius: 11px; padding: 10px 13px;
  font: 500 13.5px var(--font-ui); line-height: 1.45;
  color: var(--ink-2); cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s var(--ease-out);
}
.sug:hover {
  border-color: var(--accent); color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  transform: translateY(-1px);
}
.chat-note { font-size: 12px; color: var(--ink-3); margin-top: auto; line-height: 1.55; }
.chat-main { display: flex; flex-direction: column; min-height: 0; }
.chat-log {
  flex: 1; overflow-y: auto; min-height: 0;
  padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
  scrollbar-width: thin; scrollbar-color: var(--scroll-thumb) transparent;
}
.chat-log::-webkit-scrollbar { width: 6px; }
.chat-log::-webkit-scrollbar-thumb { border: 0; border-radius: 99px; background: var(--scroll-thumb); }
.msg { max-width: 86%; animation: msgIn 0.4s var(--ease-out); }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.msg-user {
  align-self: flex-end;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 16px 16px 4px 16px;
  padding: 12px 17px; font-size: 15px;
}
.msg-ai { align-self: flex-start; }
.msg-bubble {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 4px 16px 16px 16px;
  padding: 15px 18px; font-size: 15px; line-height: 1.65;
  white-space: pre-wrap; overflow-wrap: anywhere;
}
.msg-bubble strong { color: var(--ink); }
.msg-bubble h4 { margin: 14px 0 6px; font-size: 15px; color: var(--accent); font-family: var(--font-ui); }
.msg-bubble code {
  font: 600 12.5px var(--font-mono);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 1px 6px; border-radius: 6px;
}
.msg-cites { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.cite {
  display: inline-flex; align-items: center; gap: 4px;
  font: 600 11px var(--font-mono);
  color: var(--accent-2);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 3px 9px; border-radius: 999px; cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
html[data-tema="claro"] .cite { color: var(--accent); }
.cite:hover { background: color-mix(in srgb, var(--accent) 20%, transparent); transform: translateY(-1px); }
.chat-form {
  display: flex; gap: 10px; padding: 16px;
  border-top: 1px solid var(--line); background: var(--bg);
}
.chat-input { flex: 1; }
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.2s; }
.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.2; } 40% { opacity: 1; } }

/* ═══════════════ GALERIA ═══════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.g-card {
  position: relative; margin: 0;
  border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; cursor: pointer;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.g-card:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.65);
}
.g-card img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.g-card:hover img { transform: scale(1.05); }
.g-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.88) 100%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.g-card:hover::after { opacity: 1; }
.g-card figcaption, .g-card .g-title {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  font: 600 13px var(--font-ui); color: #eceae4; line-height: 1.4;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.g-card:hover figcaption, .g-card:hover .g-title { opacity: 1; transform: none; }
.g-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font: 700 9.5px var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.42);
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(4px);
  padding: 3px 8px; border-radius: 999px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  background: rgba(8, 9, 11, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox:not([hidden]) { animation: lbIn 0.35s var(--ease-out); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-body {
  display: flex; align-items: center; gap: 28px;
  max-width: min(1080px, 94vw);
  animation: lbIn 0.45s var(--ease-out);
}
.lb-body img {
  max-height: 82vh; max-width: min(640px, 58vw);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px;
  background: #0a0b0d;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}
.lb-side { width: 320px; flex: none; }
.lb-kicker {
  font: 700 11px var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.lb-side h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.01em;
  color: #f4f2ec; margin: 0 0 12px;
}
.lb-side p { color: #a9adb5; font-size: 14px; line-height: 1.65; margin: 0 0 22px; }
.lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 22, 26, 0.7); color: #eceae4;
  font-size: 22px; line-height: 1; cursor: pointer;
  transition: 0.25s;
}
.lb-close:hover { color: var(--accent); border-color: var(--accent); transform: rotate(90deg); }

/* ═══════════════ MÉTODO ═══════════════ */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.method-list { padding-left: 18px; color: var(--ink-2); margin: 0; }
.method-list li { margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.method-list strong { color: var(--ink); }
.method-list code {
  font: 600 12.5px var(--font-mono);
  background: var(--surface); border: 1px solid var(--line);
  padding: 1px 7px; border-radius: 6px; color: var(--accent-2);
}
html[data-tema="claro"] .method-list code { color: var(--accent); }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: #090a0c;
  border-top: 1px solid var(--line);
  padding: 52px 0 30px; color: var(--ink-3); font-size: 14px;
}
html[data-tema="claro"] .footer { background: #efeadf; }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 30px; }
.foot-cols strong {
  display: block; color: var(--ink); font: 700 11px var(--font-mono);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px;
}
.foot-cols a { display: block; color: var(--ink-2); margin-top: 7px; transition: color 0.2s, transform 0.2s; }
.foot-cols a:hover { color: var(--accent); transform: translateX(3px); }
.foot-cols .brand-name { font-size: 18px; display: inline-block; margin-bottom: 8px; }
.foot-note {
  border-top: 1px solid var(--line); padding-top: 18px; margin: 0;
  font: 500 12px var(--font-mono); letter-spacing: 0.04em;
}

/* ═══════════════ REVEAL / MOTION ═══════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-n="01"] { transition-delay: 0.05s; }
.reveal[data-n="02"] { transition-delay: 0.12s; }
.reveal[data-n="03"] { transition-delay: 0.19s; }
.reveal[data-n="04"] { transition-delay: 0.26s; }
.reveal[data-n="05"] { transition-delay: 0.33s; }
.reveal[data-n="06"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-doc { transform: rotate(6deg); }
  .marquee-inner { animation: none; }
}

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 1020px) {
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 7px; }
  .ev { grid-template-columns: 1fr; padding-left: 32px; }
  .ev::before { left: 2px; top: 24px; }
  .ev.imp3::before { left: 0; top: 22px; }
  .ev[data-side] .ev-date { grid-column: 1; grid-row: auto; padding: 0 0 8px !important; text-align: left; }
  .ev[data-side] .ev-date::after { display: none; }
  .ev[data-side="left"] .ev-card { grid-column: 1; grid-row: auto; margin-right: 0; }
  .ev[data-side="right"] .ev-card { grid-column: 1; grid-row: auto; margin-left: 0; }
  .ev-title { font-size: 18px; }
  .ev.imp3 .ev-title { font-size: 20px; }
}

@media (max-width: 900px) {
  .topnav { display: none; }
  .hero { min-height: auto; padding-bottom: 36px; }
  .hero-doc { width: 66vw; opacity: 0.1; right: -18%; }
  .section { padding: 72px 0; }
  .section-dark::before { font-size: 44px; right: -30px; }
  .evidence-grid { grid-template-columns: 1fr; }
  .stat { padding: 16px 22px 4px 0; margin-right: 22px; }
  .stat-n { font-size: 32px; }

  .doc { grid-template-columns: 1fr; }
  .doc-actions { justify-content: flex-start; }

  .chat-shell { grid-template-columns: 1fr; height: auto; }
  .chat-side { border-right: 0; border-bottom: 1px solid var(--line); overflow-y: visible; }
  .sug-list { flex-direction: row; flex-wrap: wrap; }
  .sug { flex: 1 1 46%; }
  .chat-log { max-height: 440px; min-height: 300px; }

  .lb-body { flex-direction: column; gap: 18px; }
  .lb-body img { max-width: 92vw; max-height: 58vh; }
  .lb-side { width: 92vw; }

  .cols-2 { grid-template-columns: 1fr; gap: 44px; }
  .foot-cols { grid-template-columns: 1fr; gap: 22px; }
  .strip-label { display: none; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 30px; }
  .hero { padding-top: 60px; }
  .hero-title { font-size: clamp(34px, 10.5vw, 44px); }
  .hero-lead { font-size: 16.5px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats { gap: 0; }
  .stat { padding: 12px 14px 2px 0; margin-right: 14px; border-right: 0; }
  .stat-n { font-size: 26px; }
  .ht, .hero-thumbs > img { width: 112px; height: 146px; }
  .evidence { padding: 20px; }
  .ev-num { font-size: 84px; top: -12px; }
  .ev-card { padding: 16px 18px; }
  .marquee-inner { gap: 26px; font-size: 10.5px; }
  .chat-shell { border-radius: 14px; }
  .chat-log { padding: 16px; }
  .chat-form { padding: 12px; }
  .msg { max-width: 100%; }
  .docs-list { padding-right: 4px; }
  .doc { padding: 12px 14px; }
  .lightbox { padding: 14px; }
  .lb-close { top: 12px; right: 14px; }
}

/* ═══════════════ TIMELINE v2 — thumbs reais e citações ═══════════════ */
.ev-imgs { display: flex; gap: 10px; margin-top: 14px; }
.ev-imgs .g-card { width: 138px; border-radius: 10px; cursor: zoom-in; }
.ev-imgs .g-card img { object-position: top; }
.ev-imgs .g-card figcaption { display: none; }
.ev-imgs .g-card::after { display: none; }
.ev-body em, .ev-teaser em { color: var(--accent-2); font-style: italic; }
.ev-thumb::before {
  content: "🔍"; position: absolute; inset: 0; z-index: 3;
  display: grid; place-items: center; font-size: 18px;
  background: rgba(10, 11, 13, 0.45); opacity: 0; transition: opacity 0.3s;
}
.ev-thumb:hover::before { opacity: 1; }
