/* =============================================
   00-BASE — RESET, VARIÁVEIS, TIPOGRAFIA, UTILITÁRIOS
   - Define variáveis globais (cores, raios, sombras)
   - Aplica reset e estilos base (body, html, mídia)
   - Utilitários simples como .container
============================================= */

/* -- Navegação suave entre âncoras -- */
html { scroll-behavior: smooth; }

/* -- Variáveis globais (tema Neon + escala neutra) -- */
:root {
  /* Core (escala neutra utilitária) */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-rgb: 37, 99, 235;
  --secondary: #64748b;
  --dark: #1e293b;
  --light: #f8fafc;
  --accent: #f97316;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --white: #ffffff;
  --black: #000000;

  /* Visual Neon do site */
  --primary-color: #00b4ff;
  --secondary-color: #cce7ff;
  --accent-color: #ff00d6;
  --shadow-primary: 0 0 20px rgba(0, 180, 255, 0.7);
  --bg-overlay-color: rgba(0,0,0,0.65);
  --dark-bg: #000;

  /* Raios, sombra, transições */
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;

  /* Texto (default escuro — sobrescrevemos para neon dark abaixo) */
  --text-color: #e5f3ff;
  --text-color-secondary: #9ec9e8;
}

/* -- Reset básico de margens/padding/box-model -- */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* -- Base tipográfica e fundo padrão (site em dark neon) -- */
html, body {
  height: 100%;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-color);
  background: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .5s ease, color .5s ease;
}

/* -- Container responsivo padrão -- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* -- Mídia responsiva -- */
img, video { max-width: 100%; height: auto; display: block; }
