/* Animação de cor subindo (Wi-Fi / ícones) */
@keyframes wifiColor {
  0% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Brilho pulsando (shine) */
@keyframes shine {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.8);
  }
  100% {
    filter: brightness(1);
  }
}

/* Sombra animada / glow */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #007bff, 0 0 10px #007bff;
  }
  50% {
    text-shadow: 0 0 15px #0521c0, 0 0 30px #0026ff;
  }
  100% {
    text-shadow: 0 0 5px #007bff, 0 0 10px #007bff;
  }
}

/* Pulse para badge "mais popular" */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Gradiente animado de texto */
@keyframes moverGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes backgroundMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
