/* === Copa dos Reis — Animations === */

@media (prefers-reduced-motion: no-preference) {
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50%       { transform: translateY(-12px) rotate(0.5deg); }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @keyframes accentPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.7; }
  }

  .animate-logo-float   { animation: logoFloat 6s ease-in-out infinite; }
  /* Marquee — mobile 12.5s (4× original), desktop 38s (+30% sobre original). */
  .animate-marquee      { animation: marquee 12.5s linear infinite; }
  @media (min-width: 1024px) {
    .animate-marquee    { animation-duration: 38s; }
  }
  .animate-accent-pulse { animation: accentPulse 3s ease-in-out infinite; }
}
