/* ===========================================
   ANIMACIÓN ULTRA PREMIUM (Fade + Slide + Zoom + Cascada)
   =========================================== */

.scroll-anim {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Cuando entra en pantalla */
.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Efecto cascada (retardo progresivo) */
.scroll-anim:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-anim:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-anim:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-anim:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-anim:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-anim:nth-child(6) {
    transition-delay: 0.6s;
}

.scroll-anim:nth-child(7) {
    transition-delay: 0.7s;
}

.scroll-anim:nth-child(8) {
    transition-delay: 0.8s;
}

.scroll-anim:nth-child(9) {
    transition-delay: 0.9s;
}

.scroll-anim:nth-child(10) {
    transition-delay: 0.1s;
}


.scroll-anim:nth-child(11) {
    transition-delay: 0.2s;
}

.scroll-anim:nth-child(12) {
    transition-delay: 0.3s;
}

.scroll-anim:nth-child(13) {
    transition-delay: 0.4s;
}

.scroll-anim:nth-child(14) {
    transition-delay: 0.5s;
}

.scroll-anim:nth-child(15) {
    transition-delay: 0.6s;
}

.scroll-anim:nth-child(16) {
    transition-delay: 0.7s;
}

.scroll-anim:nth-child(17) {
    transition-delay: 0.8s;
}

/* ===============================
   EFECTO GLOBAL AL CARGAR (Fade + Blur + Zoom)
   =============================== */

.body-anim {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.05);
    transition: opacity 1s ease, filter 1.2s ease, transform 1.2s ease;
}

.body-anim.loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}