/* ========== ESTILOS GLOBALES ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #EDE8DF;
}

::-webkit-scrollbar-thumb {
    background: #C49849;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a87e32;
}

/* Animación de entrada para las tarjetas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.categoria-card, .programa-card, .testimonio-card {
    animation: fadeInUp 0.6s ease forwards;
}

.categoria-card:nth-child(2) { animation-delay: 0.1s; }
.categoria-card:nth-child(3) { animation-delay: 0.2s; }
.categoria-card:nth-child(4) { animation-delay: 0.3s; }