/* Página de texto legal: mesma casca da plataforma, mas otimizada para LEITURA
   — medida de linha curta, hierarquia clara e nada piscando. */
:root {
  --ink: #10151f; --ink-2: #47536b; --muted: #6b7689;
  --bg: #eef1f7; --surface: #ffffff; --line: rgba(16,21,31,.12);
  --accent: #0c5cef; --accent-ink: #0a48c4;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #e8edf7; --ink-2: #a9b4c8; --muted: #7d8899;
    --bg: #0a0e17; --surface: #121826; --line: rgba(232,237,247,.12);
    --accent: #4d86ff; --accent-ink: #a9c6ff;
    color-scheme: dark;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 46rem; margin: 0 auto; padding: 32px 20px 80px; }
header.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.brand { font-weight: 800; letter-spacing: -.02em; font-size: 20px; text-decoration: none; color: var(--ink); }
.brand i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #ffcb02; margin-left: 5px; vertical-align: middle; }
.voltar { color: var(--accent-ink); text-decoration: none; font-size: 14px; }
.voltar:hover { text-decoration: underline; }
article { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; }
h1 { font-size: 27px; line-height: 1.2; margin: 0 0 6px; letter-spacing: -.02em; text-wrap: balance; }
.atualizado { color: var(--muted); font-size: 13.5px; margin: 0 0 26px; }
h2 { font-size: 17px; margin: 30px 0 8px; letter-spacing: -.01em; }
h2:first-of-type { margin-top: 0; }
p, li { color: var(--ink-2); }
p { margin: 0 0 12px; }
ul { margin: 0 0 12px; padding-left: 20px; }
li { margin-bottom: 6px; }
b, strong { color: var(--ink); font-weight: 650; }
a { color: var(--accent-ink); }
table { width: 100%; border-collapse: collapse; margin: 8px 0 14px; font-size: 14.5px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
td { color: var(--ink-2); }
.tabela-wrap { overflow-x: auto; }
footer.rodape { margin-top: 26px; color: var(--muted); font-size: 13px; text-align: center; }
footer.rodape a { color: var(--muted); }
@media (max-width: 560px) {
  .wrap { padding: 20px 14px 60px; }
  article { padding: 22px 18px; border-radius: 14px; }
  h1 { font-size: 23px; }
}
