/* ============================================================
   ANIMATIONS.CSS — Reveal, Delays & Keyframes
   Clínica Dra. Elenita Luzardo
   ============================================================ */

/* REVEAL ON SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* TRANSITION DELAYS */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-500 {
    transition-delay: 0.5s;
}
