/* ════════════════════════════════════════════════════════════════════
   BASE — reset, body, tipografia raiz, elementos globais
   ════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(27,54,170,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(14,107,45,0.10) 0%, transparent 50%),
    var(--dark);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: var(--gold); color: #000; }

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }

/* ── Acessibilidade ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline-offset: 4px;
}

/* Skip link — atalho pra leitores de tela e teclado */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--gold); color: #000;
  padding: 12px 20px; z-index: 10000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* Respeitar preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .mascot-img, .hero-logo-center { animation: none !important; }
}

/* ── Ícones lineares (Lucide-style inline SVG) ── */
.icon {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 32px; height: 32px; }

/* ── Brand mark: mimetiza o wordmark "SAVANA" do logo ── */
.brand-mark {
  font-family: 'Saira Condensed', 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
}
