/* views/diplomados/assets/css/components/variables.css */

:root {
    /* Colores Primarios */
    --primary: #2563eb; /* Azul */
    --secondary: #1f2937; /* Gris oscuro */
    --success: #10b981; /* Verde */
    --danger: #ef4444; /* Rojo */

    /* Fondos */
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #111827;

    /* Textos */
    --text-primary: #111827;
    --text-secondary: #6b7280;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-text: linear-gradient(90deg, #2563eb, #1e40af);

    /* Sombras */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.2);

    /* Transiciones */
    --transition-speed: 0.3s;
    --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* Tipografías */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
}