/* Estilo partilhado pelas páginas legais. Mesma paleta do site, sem three.js
   nem fundo animado: são páginas para ler, não para impressionar. */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* Sem color-scheme, o dark mode forçado do browser inverte o branco para preto. */
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  background: #0A0A0B;
  color: #F2F3F5;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: #C9CDD3; text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: #FFFFFF; }

/* ── O mesmo fundo animado do site ──────────────────────────────────────
   Estas páginas tinham preto liso e destoavam do resto. Aqui é CSS puro (não
   há runtime React), mas com os mesmos blobs, as mesmas cores e os mesmos
   tempos do aurora-background.jsx. */
#fundo { position: fixed; inset: 0; z-index: 0; overflow: hidden; background: #0A0A0B; pointer-events: none; }
#fundo .pulso {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.10) 0%, transparent 80%),
    radial-gradient(circle at 72% 70%, rgba(180,186,196,.08) 0%, transparent 80%);
  animation: auroraPulse 8s ease-in-out infinite;
}
#fundo .bolha { position: absolute; border-radius: 50%; filter: blur(64px); will-change: transform; }
#fundo .b1 { top: -25%; left: -25%; width: 50%; height: 50%; background: #3A3A3F; opacity: .4; animation: auroraBlobA 30s ease-in-out infinite alternate; }
#fundo .b2 { bottom: -25%; right: -25%; width: 50%; height: 50%; background: #26262A; opacity: .4; animation: auroraBlobB 40s ease-in-out infinite alternate; }
#fundo .b3 { top: 33%; left: 33%; width: 34%; height: 34%; background: #4A4A52; opacity: .3; animation: auroraBlobC 50s ease-in-out infinite alternate; }
#fundo .estrela { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; opacity: 0; animation-name: auroraTwinkle; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }

@keyframes auroraPulse { 0%, 100% { opacity: .5 } 50% { opacity: .28 } }
@keyframes auroraBlobA { from { transform: translate(-50px,-20px) scale(1) } to { transform: translate(50px,20px) scale(1.2) } }
@keyframes auroraBlobB { from { transform: translate(50px,20px) scale(1) } to { transform: translate(-50px,-20px) scale(1.3) } }
@keyframes auroraBlobC { from { transform: translate(20px,-30px) rotate(0) } to { transform: translate(-20px,30px) rotate(360deg) } }
@keyframes auroraTwinkle { 0%, 100% { opacity: 0 } 50% { opacity: var(--peak, .8) } }

@media (hover: none) { #fundo .bolha { filter: blur(36px); } }
@media (prefers-reduced-motion: reduce) {
  #fundo .bolha, #fundo .estrela, #fundo .pulso { animation: none !important; }
}

/* Tudo o que é conteúdo fica por cima do fundo. */
.topo, main, .rodape { position: relative; z-index: 1; }

.topo {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  padding: 20px 22px calc(20px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,10,11,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topo img { width: 26px; height: auto; display: block; }
.topo span { font-size: 16px; font-weight: 700; letter-spacing: -0.015em; }
.topo a { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }

main { max-width: 760px; margin: 0 auto; padding: 56px 22px 110px; }

h1 {
  font-size: clamp(32px, 5vw, 54px); font-weight: 700;
  line-height: 1.04; letter-spacing: -0.04em; text-wrap: balance;
}
.atualizado { margin-top: 14px; font-size: 14px; color: rgba(242,243,245,0.55); }

h2 {
  margin-top: 46px; margin-bottom: 12px;
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -0.025em;
}
p, li { font-size: 16px; color: rgba(242,243,245,0.74); text-wrap: pretty; }
p + p { margin-top: 12px; }
ul { margin: 12px 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
strong { color: #F2F3F5; font-weight: 600; }

/* Onde falta informação real da empresa. Deliberadamente visível: é para ser
   preenchido antes de isto ir para o ar, não para passar despercebido. */
.porpreencher {
  background: rgba(201,205,211,0.14);
  border-bottom: 1px dashed rgba(201,205,211,0.6);
  padding: 0 4px; border-radius: 3px; color: #FFFFFF;
}

.aviso {
  margin-top: 40px; padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  font-size: 14.5px; color: rgba(242,243,245,0.66);
}

.rodape {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 30px 22px calc(40px + env(safe-area-inset-bottom, 0px));
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  justify-content: center; font-size: 14.5px;
}
.rodape a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; color: rgba(242,243,245,0.66); }
.rodape a:hover { color: #F2F3F5; }
