﻿/* Importar fuente Outfit (Moderna y geométrica) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc; /* Slate-50 */
}

/* Animación de entrada suave */
.animate-enter {
    animation: enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
