/* ─── GSAP Entry States (GSAP anima para opacity:1, translate:0) ────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in {
  opacity: 0;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
}

/* ─── Bounce Y (scroll indicator) ───────────────────────────────────────────── */
@keyframes bw-bounce-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── Marquee fallback CSS-only (ativado se JS não carregar) ─────────────────── */
@keyframes bw-marquee-fallback {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.no-js .bw-marquee-track {
  animation: bw-marquee-fallback 30s linear infinite;
}

/* ─── Pulse Glow (botão CTA) ─────────────────────────────────────────────────── */
@keyframes bw-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127, 0, 255, 0); }
  50%       { box-shadow: 0 0 20px 6px rgba(127, 0, 255, 0.35); }
}

.bw-cta-glow .wp-block-button__link {
  animation: bw-pulse-glow 2.5s ease-in-out infinite;
}

/* ─── Glow text ──────────────────────────────────────────────────────────────── */
@keyframes bw-text-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(127, 0, 255, 0.4); }
  50%       { text-shadow: 0 0 40px rgba(127, 0, 255, 0.7), 0 0 80px rgba(1, 255, 103, 0.2); }
}

/* ─── Gradient shift ─────────────────────────────────────────────────────────── */
@keyframes bw-grad-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Spin slow (wireframe) ──────────────────────────────────────────────────── */
@keyframes bw-spin-slow {
  from { transform: rotateY(0deg) rotateX(10deg); }
  to   { transform: rotateY(360deg) rotateX(10deg); }
}

/* ─── Flicker ────────────────────────────────────────────────────────────────── */
@keyframes bw-flicker {
  0%, 95%, 100% { opacity: 1; }
  96%           { opacity: 0.4; }
  97%           { opacity: 1; }
  98%           { opacity: 0.6; }
}

/* ─── Transitions globais de hover ──────────────────────────────────────────── */
a,
button,
.wp-block-button__link {
  transition-property: color, background-color, border-color, box-shadow, opacity, transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Menu fullscreen link slide-in ─────────────────────────────────────────── */
@keyframes bw-menu-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ─── Reduced motion ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bw-marquee-track {
    animation: none !important;
  }
}
