/**
 * ============================================================================
 * WEBOPTIMIZER PRO - VARIABLES CSS (SISTEMA DE DISEÑO)
 * ============================================================================
 * 
 * DESCRIPCIÓN:
 * Variables CSS Custom Properties para todo el sistema.
 * Centraliza: colores, sombras, bordes, espaciado, transiciones.
 * 
 * REGLA DE ORO #8: ~100 líneas
 * 
 * @author      WebOptimizer Team
 * @version     1.0.0
 * ============================================================================
 */

/* ============================================
   PALETA DE COLORES PRIMARIOS
   ============================================ */
:root {
    /* Colores primarios (brand) */
    --color-primary: #059669;
    --color-primary-dark: #047857;
    --color-primary-light: #10b981;
    
    /* Colores secundarios */
    --color-secondary: #3b82f6;
    --color-secondary-dark: #2563eb;
    
    /* Colores de estado/semántica */
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-success: #10b981;
    --color-info: #06b6d4;
}

/* ============================================
   COLORES DE FONDO Y SUPERFICIES
   ============================================ */
:root {
    /* Fondos oscuros (tema dark dashboard) */
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    --color-bg-card: #1e293b;
    --color-bg-input: #334155;
    --color-bg-hover: rgba(255, 255, 255, 0.05);
    
    /* Fondos con opacidad */
    --color-bg-overlay: rgba(0, 0, 0, 0.5);
}

/* ============================================
   COLORES DE TEXTO
   ============================================ */
:root {
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;
    --color-text-inverse: #0f172a;
}

/* ============================================
   BORDES Y SOMBRAS
   ============================================ */
:root {
    /* Bordes */
    --color-border: #475569;
    --color-border-light: #334155;
    --color-border-focus: #059669;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    
    /* Sombras de color */
    --shadow-primary: 0 4px 12px rgba(5, 150, 105, 0.25);
    --shadow-danger: 0 4px 12px rgba(239, 68, 68, 0.25);
}

/* ============================================
   ESPACIAMIENTO Y FORMA (BORDER RADIUS)
   ============================================ */
:root {
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Espaciado base */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
}

/* ============================================
   TRANSICIONES Y ANIMACIONES
   ============================================ */
:root {
    /* Duraciones */
    --transition-fast: all 0.15s ease-in-out;
    --transition: all 0.2s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;
    
    /* Timing functions */
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    
    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */
:root {
    /* Familias de fuente */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    
    /* Tamaños de fuente */
    --text-xs: 0.73rem;    /* ~11.7px */
    --text-sm: 0.83rem;    /* ~13.3px */
    --text-base: 0.94rem;  /* ~15px */
    --text-md: 1rem;       /* 16px */
    --text-lg: 1.12rem;    /* ~18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.75rem;   /* 28px */
    
    /* Pesos de fuente */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Alturas de línea */
    --leading-tight: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;
}

/**
 * ============================================================================
 * FIN DE VARIABLES CSS
 * ============================================================================
 */
