/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays (Efeito cascata) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Animação inicial do Hero */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    animation: heroFadeIn 1s ease-out forwards;
}

.hero-text p {
    animation: heroFadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.cta-actions {
    animation: heroFadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-footer-text {
    animation: heroFadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-image-box {
    animation: heroFadeIn 1.2s ease-out 0.3s forwards;
    opacity: 0;
}