.hero-section {
    position: relative;
    min-height: 70vh;
    background: url('/assets/media/images/home_capa.jpg') no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.65); /* camada escura */
    background-blend-mode: multiply;
    padding: 80px 0;
    overflow: hidden;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.animate-fade-in.delay-1 {
    animation-delay: 0.4s;
}

.animate-fade-in.delay-2 {
    animation-delay: 0.8s;
}

.animate-fade-in.delay-3 {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}