/* ============================================
   LOGYSER — DESIGN TOKENS
   variables.css
   ============================================ */

:root {

    /* --- COLORES PRIMARIOS (naranja corporativo) --- */
    --color-primary: #F25C00;
    /* naranja Log&ser */
    --color-primary-dark: #D44E00;
    /* hover naranja */
    --color-primary-light: #F47A3A;
    /* acento naranja suave */

    /* --- COLORES OSCUROS (azul corporativo) --- */
    --color-dark: #1B2A6B;
    /* azul Log&ser — navbar, footer */
    --color-dark-2: #152260;
    /* azul más profundo */
    --color-dark-3: #243580;
    /* azul medio */
    --color-text: #1A1A2E;
    /* texto principal con tinte azul */
    --color-text-muted: #5A6080;
    /* texto secundario */
    --color-text-light: #9099BB;
    /* placeholders */
    --color-white: #FFFFFF;
    --color-bg: #F5F6FA;
    /* fondo página (azul muy suave) */
    --color-bg-alt: #ECEEF6;
    /* secciones alternadas */
    --color-border: #D8DCF0;
    /* bordes suaves */

    /* --- COLORES SEMÁNTICOS --- */
    --color-success: #2E7D32;
    --color-error: #C62828;

    /* --- TIPOGRAFÍA --- */
    --font-display: 'Barlow Condensed', sans-serif;
    /* títulos impactantes */
    --font-body: 'DM Sans', sans-serif;
    /* cuerpo legible */
    --font-mono: 'DM Mono', monospace;
    /* datos, números */

    --text-xs: 0.75rem;
    /*  12px */
    --text-sm: 0.875rem;
    /*  14px */
    --text-base: 1rem;
    /*  16px */
    --text-md: 1.125rem;
    /*  18px */
    --text-lg: 1.25rem;
    /*  20px */
    --text-xl: 1.5rem;
    /*  24px */
    --text-2xl: 2rem;
    /*  32px */
    --text-3xl: 2.5rem;
    /*  40px */
    --text-4xl: 3.25rem;
    /*  52px */
    --text-5xl: 4.5rem;
    /*  72px */

    --leading-tight: 1.1;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-loose: 1.8;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-black: 900;

    /* --- ESPACIADOS --- */
    --space-1: 0.25rem;
    /*  4px */
    --space-2: 0.5rem;
    /*  8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* --- LAYOUT --- */
    --container-max: 1200px;
    --container-wide: 1400px;
    --container-narrow: 780px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);

    /* --- RADIOS --- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* --- SOMBRAS --- */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13), 0 4px 12px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(242, 92, 0, 0.35);

    /* --- TRANSICIONES --- */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* --- NAVBAR --- */
    --navbar-height: 72px;
    --topbar-height: 40px;
    --navbar-total: 112px;
    /* topbar + navbar */
}

/* --- RESPONSIVE TOKENS --- */
@media (max-width: 768px) {
    :root {
        --text-4xl: 2.5rem;
        --text-5xl: 3rem;
        --space-20: 3.5rem;
        --space-24: 4rem;
        --space-32: 5rem;
        --navbar-total: 72px;
    }
}