/* Primo's Sports — tokens de design */
:root {
  /* Paleta oficial */
  --black: #050505;
  --graphite: #111111;
  --graphite-2: #171717;
  --graphite-3: #1f1f1f;
  --neon: #76ff03;
  --neon-2: #59d600;
  --white: #ffffff;
  --gray-light: #d7d7d7;
  --gray-metal: #a9a9a9;
  --gray-dim: #7d7d7d;
  --alert: #ff4d4d;
  --warn: #ffb020;
  --info: #4da3ff;

  /* Semântica */
  --bg: var(--black);
  --surface: var(--graphite);
  --surface-2: var(--graphite-2);
  --surface-3: var(--graphite-3);
  --text: var(--white);
  --text-muted: var(--gray-light);
  --text-dim: var(--gray-metal);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --accent: var(--neon);
  --accent-soft: rgba(118, 255, 3, 0.12);
  --accent-glow: rgba(118, 255, 3, 0.28);

  /* Tipografia */
  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --fs-base: 1rem; /* 16px — nunca reduzir o corpo do texto */
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Espaçamento e forma */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-h: 72px;
  --gap: 1.25rem;

  --shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(118, 255, 3, 0.35), 0 10px 34px rgba(118, 255, 3, 0.12);
  --transition: 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --z-header: 100;
  --z-overlay: 200;
  --z-drawer: 210;
  --z-modal: 220;
  --z-toast: 300;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 1ms linear;
  }
}
