/* ============================================
   SERVIÇOS - Custom Styles
   ============================================ */

.page-hero {
    min-height: 50vh;
}

/* Service cards stagger */
.service-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.service-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}