/* =========================================================
   VARIABLES GLOBALES
   RETIRO NACIONAL DE JÓVENES — JUVENTUD MÉXICO
========================================================= */

:root {

    /* =====================================================
       COLORES PRINCIPALES
    ====================================================== */

    --color-primary: #0b1626;
    --color-primary-light: #14243a;
    --color-primary-soft: #1d3859;

    --color-secondary: #c79b4b;
    --color-secondary-light: #e7d2a3;
    --color-secondary-dark: #9f742e;

    --color-background: #f7f3ea;
    --color-background-soft: #fbf9f4;

    --color-surface: #ffffff;
    --color-surface-soft: #f5f5f6;

    --color-text: #172033;
    --color-text-soft: #667085;
    --color-text-light: #ffffff;

    --color-border: rgba(11, 22, 38, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.14);


    /* =====================================================
       ESTADOS
    ====================================================== */

    --color-success: #23643f;
    --color-success-background: rgba(46, 125, 83, 0.1);

    --color-warning: #8b641f;
    --color-warning-background: rgba(199, 155, 75, 0.14);

    --color-danger: #8f2429;
    --color-danger-background: rgba(191, 63, 69, 0.09);

    --color-info: #285d88;
    --color-info-background: rgba(40, 93, 136, 0.1);


    /* =====================================================
       TIPOGRAFÍA
    ====================================================== */

    --font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;


    /* =====================================================
       TAMAÑOS DE TEXTO
    ====================================================== */

    --font-size-xs: 0.72rem;
    --font-size-sm: 0.82rem;
    --font-size-base: 1rem;
    --font-size-md: 1.1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.8rem;
    --font-size-4xl: 4rem;


    /* =====================================================
       ALTURAS DE LÍNEA
    ====================================================== */

    --line-height-tight: 1;
    --line-height-heading: 1.1;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;


    /* =====================================================
       ESPACIADO
    ====================================================== */

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;


    /* =====================================================
       BORDES REDONDEADOS
    ====================================================== */

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;
    --radius-full: 999px;


    /* =====================================================
       SOMBRAS
    ====================================================== */

    --shadow-xs:
        0 4px 14px rgba(11, 22, 38, 0.05);

    --shadow-sm:
        0 10px 30px rgba(11, 22, 38, 0.08);

    --shadow-md:
        0 24px 70px rgba(11, 22, 38, 0.14);

    --shadow-lg:
        0 36px 100px rgba(11, 22, 38, 0.22);


    /* =====================================================
       TRANSICIONES
    ====================================================== */

    --transition-fast: 150ms ease;
    --transition-normal: 220ms ease;
    --transition-slow: 420ms ease;


    /* =====================================================
       CAPAS
    ====================================================== */

    --z-background: -1;
    --z-default: 1;
    --z-dropdown: 100;
    --z-header: 1000;
    --z-modal: 2000;
    --z-notification: 3000;


    /* =====================================================
       ANCHO DEL CONTENIDO
    ====================================================== */

    --container-width: 1200px;
    --container-width-large: 1280px;
    --container-padding-mobile: 1rem;
    --container-padding-tablet: 1.5rem;
    --container-padding-desktop: 2.5rem;


    /* =====================================================
       ALTURAS
    ====================================================== */

    --header-height: 90px;
}