/* Segunda linha de cards de serviços */
.services-grid-second {
    margin-top: 30px;
}

/* Animações específicas para a segunda linha */
.services-grid-second .service-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.services-grid-second .service-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.services-grid-second .service-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

/* Responsividade para a segunda linha */
@media (max-width: 768px) {
    .services-grid-second {
        margin-top: 20px;
    }
}

/* Ajuste para quando há duas linhas de cards */
.services-section {
    padding: 80px 0 100px 0; /* Aumenta padding inferior */
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0 80px 0;
    }
}

