:root {
  /* ===== BASE ===== */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-inverse: #ffffff;

  /* ===== BRAND ===== */
  --brand-primary: #1e3a5f;
  --brand-secondary: #334155;
  --brand-accent: #3b82f6; /* Azul base */
  --brand-accent-hover: #2563eb;
  
  /* Ferrari Accent: Rojo para contraste en tema claro */
  --brand-contrast: #ef4444; 

  /* ===== ALERTS ===== */
  --alert-roja: #ef4444;
  --alert-roja-light: #fee2e2;
  --alert-roja-text: #b91c1c;
  --alert-amarilla: #f59e0b;
  --alert-amarilla-light: #fef3c7;
  --alert-amarilla-text: #92400e;
  --alert-verde: #10b981;
  --alert-verde-light: #d1fae5;
  --alert-verde-text: #065f46;

  /* ===== ESTADOS ===== */
  --estado-aprobado: #10b981;
  --estado-rechazado: #ef4444;
  --estado-tentativa: #f59e0b;

  /* ===== UI ===== */
  --border: #e2e8f0;
  --border-focus: #3b82f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
  
  --radius: 8px;
  --radius-lg: 12px;

  /* ===== SPACING ===== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;

  /* ===== TYPOGRAPHY ===== */
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;

  /* ===== TRANSITIONS ===== */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
