/* Animação de subida */
@keyframes subir {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-animation {
    opacity: 0;
}

/* Classe que dispara a animação */
.card-animation.animate {
    animation: subir 0.8s forwards;
}

/* Para escalonar os cards */
.services-cards .card-animation:nth-child(1) { animation-delay: 0.1s; }
.services-cards .card-animation:nth-child(2) { animation-delay: 0.2s; }
.services-cards .card-animation:nth-child(3) { animation-delay: 0.3s; }
.services-cards .card-animation:nth-child(4) { animation-delay: 0.4s; }
.services-cards .card-animation:nth-child(5) { animation-delay: 0.5s; }
.services-cards .card-animation:nth-child(6) { animation-delay: 0.6s; }
