/* Estilo das páginas legais ESTÁTICAS (privacidade.html, termos.html) — as cópias
   sem JavaScript servidas em /privacidade e /termos para o revisor de marca/OAuth do
   Google, que não executa JS. Não tem Tailwind aqui de propósito: estas páginas não
   passam pelo build do Vite, então precisam de CSS próprio e autocontido.
   Ver docs/GOOGLE-VERIFICACAO-VIDEO.md. */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #0b1326;
  color: #c9d4ea;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: #00e5ff; }
header { border-bottom: 1px solid rgba(255, 255, 255, .08); }
footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 2rem 1rem;
  text-align: center;
  font-size: .78rem;
  color: #8595b4;
}
.bar {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e8eefc;
  text-decoration: none;
}
main { max-width: 48rem; margin: 0 auto; padding: 2.5rem 1rem 1rem; }
h1 { font-size: 1.6rem; color: #e8eefc; margin: 0 0 .35rem; }
h2 { font-size: 1.08rem; color: #e8eefc; margin: 2.2rem 0 .6rem; }
.dim { font-size: .78rem; color: #8595b4; margin: 0; }
p, li { font-size: .94rem; }
ul { padding-left: 1.25rem; }
li { margin: .35rem 0; }
b { color: #e8eefc; }
code { font-size: .82rem; background: rgba(255, 255, 255, .06); padding: .1rem .3rem; border-radius: .25rem; }
.entrar { font-size: .88rem; font-weight: 600; }
