/* =========================================================================
   Boiadeira Raiz - Efeitos: animacoes de scroll (reveal com stagger).
   Carregado via functions.php.
   ========================================================================= */

/* Scroll reveal (aplicado pelo JS via .br-anim / .is-in) */
.br-anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.br-anim.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.br-anim { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}
