/* =========================================================
   IMCORRS 2026 — Animaciones tipo GANARE
   Archivo: assets/css/animations.css
========================================================= */

/* Los elementos se ocultan por defecto y GSAP los revela */
.gs_reveal {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

/* Por si se desactiva JS */
.no-js .gs_reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
}