/* ════════════════════════════════════════════════════
   BASE — reset, variables globales y tipografía
   ════════════════════════════════════════════════════ */
:root {
  /* Colores de marca — identidad SI */
  --brand: #1FC3E8;
  --brand-dark: #178FAE;
  --brand-light: #5ED6F0;

  /* Fondos y superficies (azul noche) */
  --black: #0A1F38;
  --dark: #0F2A4A;
  --surface: #123A63;
  --surface2: #17436F;
  --border: #234F76;
  --border2: #2E5F89;

  /* Texto */
  --text: #ffffff;
  --text-bright: #ffffff;
  --muted: #C9D2DA;
  --muted2: #98A6B4;
  --white: #ffffff;

  /* Estados / acentos */
  --green: #16a34a;
  --green-dark: #15803d;
  --green-text: #4ade80;
  --danger: #f87171;
  --danger-dark: #ef4444;
  --warn: #f0a030;
  --warn-border: #6b3a0a;
  --warn-bg: #2a1a0a;
  --blue: #60a5fa;

  /* Radios */
  --radius-xs: 4px;
  --radius-sm: 5px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-pill: 20px;

  /* Tipografía */
  --font-d: 'Oswald', sans-serif;
  --font-b: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--black); color: var(--text); font-family: var(--font-b); min-height: 100vh; }

/* Pantallas (login / panel principal) */
.screen { display: none; }
.screen.active { display: block; }
