* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--azul-rrgk); text-decoration: none; }
a:hover { color: var(--dourado-3); }

h1 { font-size: var(--fs-2xl); font-weight: 700; color: var(--azul-rrgk); }
h2 { font-size: var(--fs-xl); font-weight: 600; color: var(--azul-rrgk); }
h3 { font-size: var(--fs-lg); font-weight: 600; color: var(--azul-rrgk); }
h4 { font-size: var(--fs-base); font-weight: 600; color: var(--azul-rrgk); }

p { color: var(--text-soft); }

ul, ol { list-style: none; }

img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-mute); }

/* Esconder elementos visualmente mantendo acessivel */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
