/* #region Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes holyPulse {
    0% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px var(--primary-red);
        transform: scale(1.1);
    }
    100% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
/* #endregion */

/* #region Aplicação nas Classes */
.hero-content span.badge {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero h1 {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero p.bible-quote {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero .verse-ref {
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.ornament, .icon-cross {
    animation: holyPulse 3s infinite ease-in-out;
    display: inline-block;
}

.quote-box {
    animation: fadeInUp 1.2s ease-out;
}

.miracle-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.miracle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 30, 30, 0.15);
}

.frame-gold {
    animation: fadeInLeft 1.5s ease-out;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}
/* #endregion */

/* #region Scroll Animation Utilities */
.hidden-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.visible-scroll {
    opacity: 1;
    transform: translateY(0);
}
/* #endregion */