/* ==========================================================================
   FLUXAR — REVEAL.CSS
   Camada de efeitos visuais (animações de entrada)
   ========================================================================== */

.fx-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para efeito cascata */
.fx-reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.fx-reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.fx-reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.fx-reveal:nth-child(4) {
    transition-delay: 0.4s;
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fx-hero-subtitle {
    animation: fadeInUp 1s ease 0s backwards;
}

.fx-hero h1 {
    animation: fadeInUp 1s ease 0.2s backwards;
}

.fx-hero-description {
    animation: fadeInUp 1s ease 0.4s backwards;
}

.fx-hero-buttons {
    animation: fadeInUp 1s ease 0.6s backwards;
}
