




.animate-item {
    /* opacity: 0; */
    transform: translateY(20px);
    animation: floatMain 4s ease-in-out infinite;
}

.animate-item:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-item:nth-child(3) {
    animation-delay: 0.4s;
}
/* Animation flottante */
@keyframes floatMain {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}