/**
 * ORION Network Management - Variables CSS
 * Definición centralizada de colores, tipografía y espaciado
 * Fecha: 31 Diciembre 2025
 */

:root {
  /* ============================================
     COLORES PRINCIPALES
     ============================================ */
  
  /* Paleta primaria (B/N - Negro) */
  --orion-primary: #000000;
  --orion-primary-hover: #1A1A1A;
  --orion-primary-dark: #000000;
  --orion-primary-light: #333333;
  --orion-primary-lighter: #F5F5F5;
  
  /* Paleta secundaria (B/N - Grises) */
  --orion-secondary: #666666;
  --orion-secondary-hover: #555555;
  --orion-secondary-dark: #444444;
  --orion-secondary-light: #888888;
  
  /* Grises neutros */
  --orion-gray-50: #F9FAFB;
  --orion-gray-100: #F3F4F6;
  --orion-gray-200: #E5E7EB;
  --orion-gray-300: #D1D5DB;
  --orion-gray-400: #9CA3AF;
  --orion-gray-500: #6B7280;
  --orion-gray-600: #4B5563;
  --orion-gray-700: #374151;
  --orion-gray-800: #1F2937;
  --orion-gray-900: #111827;
  
  /* Colores de estado (B/N - Grises) */
  --orion-success: #2D2D2D;
  --orion-success-light: #E8E8E8;
  --orion-success-dark: #1A1A1A;
  
  --orion-warning: #555555;
  --orion-warning-light: #D0D0D0;
  --orion-warning-dark: #3A3A3A;
  
  --orion-danger: #1A1A1A;
  --orion-danger-light: #CCCCCC;
  --orion-danger-dark: #000000;
  
  --orion-info: #444444;
  --orion-info-light: #E0E0E0;
  --orion-info-dark: #2A2A2A;
  
  /* Colores de fondo (NEUTRO B/N) */
  --orion-bg-primary: #FFFFFF;
  --orion-bg-secondary: #F9FAFB;
  --orion-bg-tertiary: #F3F4F6;
  --orion-bg-dark: #2D3748;      /* Gris oscuro neutro (no azul) */
  --orion-bg-darker: #1A202C;    /* Gris muy oscuro neutro */
  
  /* Bordes */
  --orion-border-color: #E5E7EB;
  --orion-border-color-dark: #D1D5DB;
  
  /* Sombras */
  --orion-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --orion-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --orion-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --orion-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* ============================================
     TIPOGRAFÍA
     ============================================ */
  
  --orion-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --orion-font-family-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Consolas', monospace;
  
  /* Tamaños de fuente */
  --orion-text-xs: 0.75rem;      /* 12px */
  --orion-text-sm: 0.875rem;     /* 14px */
  --orion-text-base: 1rem;       /* 16px */
  --orion-text-lg: 1.125rem;     /* 18px */
  --orion-text-xl: 1.25rem;      /* 20px */
  --orion-text-2xl: 1.5rem;      /* 24px */
  --orion-text-3xl: 1.875rem;    /* 30px */
  --orion-text-4xl: 2.25rem;     /* 36px */
  
  /* Pesos de fuente */
  --orion-font-normal: 400;
  --orion-font-medium: 500;
  --orion-font-semibold: 600;
  --orion-font-bold: 700;
  
  /* Line heights */
  --orion-leading-tight: 1.25;
  --orion-leading-normal: 1.5;
  --orion-leading-relaxed: 1.75;
  
  /* ============================================
     ESPACIADO
     ============================================ */
  
  --orion-space-1: 0.25rem;   /* 4px */
  --orion-space-2: 0.5rem;    /* 8px */
  --orion-space-3: 0.75rem;   /* 12px */
  --orion-space-4: 1rem;      /* 16px */
  --orion-space-5: 1.25rem;   /* 20px */
  --orion-space-6: 1.5rem;    /* 24px */
  --orion-space-8: 2rem;      /* 32px */
  --orion-space-10: 2.5rem;   /* 40px */
  --orion-space-12: 3rem;     /* 48px */
  --orion-space-16: 4rem;     /* 64px */
  
  /* ============================================
     BORDER RADIUS
     ============================================ */
  
  --orion-radius-sm: 0.25rem;   /* 4px */
  --orion-radius-md: 0.5rem;    /* 8px */
  --orion-radius-lg: 0.75rem;   /* 12px */
  --orion-radius-xl: 1rem;      /* 16px */
  --orion-radius-full: 9999px;
  
  /* ============================================
     TRANSICIONES
     ============================================ */
  
  --orion-transition-fast: 150ms ease-in-out;
  --orion-transition-base: 200ms ease-in-out;
  --orion-transition-slow: 300ms ease-in-out;
  
  /* ============================================
     Z-INDEX
     ============================================ */
  
  --orion-z-base: 0;
  --orion-z-dropdown: 1000;
  --orion-z-sticky: 1020;
  --orion-z-modal-backdrop: 1040;
  --orion-z-modal: 1050;
  --orion-z-popover: 1060;
  --orion-z-tooltip: 1070;
  
  /* ============================================
     ANCHOS MÁXIMOS
     ============================================ */
  
  --orion-max-width-xs: 20rem;    /* 320px */
  --orion-max-width-sm: 24rem;    /* 384px */
  --orion-max-width-md: 28rem;    /* 448px */
  --orion-max-width-lg: 32rem;    /* 512px */
  --orion-max-width-xl: 36rem;    /* 576px */
  --orion-max-width-2xl: 42rem;   /* 672px */
  --orion-max-width-3xl: 48rem;   /* 768px */
  --orion-max-width-4xl: 56rem;   /* 896px */
  --orion-max-width-5xl: 64rem;   /* 1024px */
  --orion-max-width-6xl: 72rem;   /* 1152px */
  --orion-max-width-7xl: 80rem;   /* 1280px */
  --orion-max-width-full: 100%;
}

/* ============================================
   UTILIDADES GLOBALES
   ============================================ */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--orion-font-family);
  color: var(--orion-gray-900);
  background-color: var(--orion-bg-secondary);
}
