/* Micro-interações e Pulso */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
  }
}

.pulse-glow-hover:hover {
  animation: pulseGlow 2s infinite ease-in-out;
}

.transition-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.transition-lift:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-blue) !important;
  box-shadow: var(--glow-shadow) !important;
}