/* ==========================================================================
   PÃO DE ALHO DO JULIO — Animations (GSAP helpers + CSS)
   ========================================================================== */

/* Default state: content is always visible by default.
   GSAP enhances with motion dynamically when JS is running. */
.will-reveal {
  opacity: 1;
}

/* ── Reduced motion: ensure all transitions and animations are disabled ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
