/* Variables CSS - Sistema de diseño */
:root {
    /* ========================================
       CONFIGURACIÓN DE COLORES PRINCIPAL
       Cambia estos valores para personalizar toda la web
       ======================================== */
    
    /* Colores base del brand (ajusta estos según tu logo) */
    --brand-primary: #1a365d;      /* Azul oscuro principal */
    --brand-secondary: #2d3748;    /* Gris azulado */
    --brand-accent: #4299e1;       /* Azul brillante para acentos */
    --brand-light: #e2e8f0;        /* Gris claro */
    
    /* Colores principales generados automáticamente */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: var(--brand-accent);
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: var(--brand-primary);
    --primary-900: #0c4a6e;

    /* Colores de texto (basados en el brand) */
    --text-primary: var(--brand-secondary);
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --text-inverse: #ffffff;

    /* Colores de fondo */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: var(--brand-light);
    --bg-dark: var(--brand-secondary);

    /* Variables específicas para el logo */
    --logo-height-desktop: 45px;
    --logo-height-mobile: 35px;
    --logo-max-width: 200px;

    /* Colores de acento */
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Bordes */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;

    /* Espaciado */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Tipografía */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Contenedor */
    --container-max-width: 1200px;
    --container-padding: 1rem;

    /* Transiciones */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
} 