/* ==========================================================================
   Micro-animations & Visual Polish (Cyan Blue #00AEEF Theme)
   ========================================================================== */

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 174, 239, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
  }
}

@keyframes pulseSupervisor {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@keyframes pulseWa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes floatElement {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.pulse-primary {
  animation: pulseGlow 2.2s infinite;
}

.pulse-supervisor {
  animation: pulseSupervisor 2.2s infinite;
}

.pulse-wa {
  animation: pulseWa 2s infinite;
}

.float-card {
  animation: floatElement 4s ease-in-out infinite;
}

.shimmer-badge {
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.1) 0%, rgba(0, 174, 239, 0.4) 50%, rgba(0, 174, 239, 0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}

/* Fade in on scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
