:root {
  --preto:#0f0d09;
  --preto2:#17130c;
  --painel:#1c1710;
  --borda:#2a2418;
  --dourado:#C9A227;
  --dourado-claro:#e3c24f;
  --azul:#4b9fff;
  --roxo:#a06bff;
  --verde:#27c281;
  --vermelho:#ef4444;
  --preto-puro:#000;
  --texto:#f2ece0;
  --texto-fraco:#b7ac95;
  --font:'Segoe UI', system-ui, -apple-system, sans-serif;
}
/* Tema claro global (toggle na navbar) — reusa os mesmos tokens. */
:root[data-theme="light"] {
  --preto:#ffffff;
  --preto2:#f7f8fa;
  --painel:#ffffff;
  --borda:#e6e8ec;
  --dourado:#b8901f;
  --dourado-claro:#8a6d15;
  --texto:#14181f;
  --texto-fraco:#5b6472;
  --preto-puro:#ffffff;
}
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }
body {
  background:var(--preto);
  color:var(--texto);
  font-family:var(--font);
  line-height:1.5;
}
a { color:var(--dourado); text-decoration:none; }
