/* ===================================================
   GLOBAL - ANIMATIONS
   =================================================== */

@keyframes float {
  0% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-12px) rotateX(2deg) rotateY(1deg); }
  100% { transform: translateY(0) rotateX(0) rotateY(0); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(14, 165, 233, 0.7); }
  100% { box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4); }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-cta-premium {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4), 0 8px 10px -6px rgba(245, 158, 11, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.5), 0 8px 10px -6px rgba(245, 158, 11, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4), 0 8px 10px -6px rgba(245, 158, 11, 0.4);
  }
}

@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;
  }
}