/**
 * 🛰️ GPS: VARIABLES INSTITUCIONALES 2026
 * Neuropedagogía: Colores suaves para reducir la ansiedad financiera.
 */
:root {
    /* Paleta Principal */
    --primary-blue: #007bff;
    --primary-dark: #0056b3;
    --bg-white: #FFFFFF;
    --bg-light: #f8f9fa;
    
    /* Colores de Texto */
    --text-main: #212529;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;

    /* 📅 COLORES CALENDARIO (Pastel) */
    --cal-dia-bg: #fff9c4;      /* Amarillo Claro */
    --cal-dia-text: #856404;
    --cal-noche-bg: #eceff1;    /* Gris Claro */
    --cal-noche-text: #455a64;
    --cal-descanso-bg: #e8f5e9; /* Verde Claro */
    --cal-descanso-text: #155724;
    --cal-festivo-bg: #ffebee;  /* Rojo Claro */
    --cal-festivo-text: #721c24;
    --cal-permiso-bg: #f3e5f5;  /* Morado Claro */
    --cal-permiso-text: #512da8;

    /* Estructura */
    --shadow-subtle: 0 4px 6px rgba(0,0,0,0.05);
    --radius-md: 8px;
    --radius-lg: 12px;
    --font-main: 'Roboto', -apple-system, sans-serif;
}

/* Reset Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}