/* --- ANIMACIONES Y CLASES DE MARCA --- */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Animación de latido para el mamey de la marca */
@keyframes pulse-mamey {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4); 
    }
    50% { 
        transform: scale(1.03); 
        box-shadow: 0 10px 25px rgba(249, 115, 22, 0.6); 
    }
}

.animate-pulse-mamey {
    animation: pulse-mamey 2.5s infinite ease-in-out;
}

/* Custom scrollbar para una mejor experiencia de navegación */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}