.mascota-svg {
  width: 50px;
  height: auto;
  display: block;
  margin: 40px auto;
}
@keyframes neon {

  0%,
  19% {
    stroke: #fff;
    filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
  }

  54%,
  56%,
  100% {
    stroke: #f4b328;
    filter: drop-shadow(0 0 5px rgba(244, 179, 40, 0.8));
  }

  20%,
  24%,
  55% {
    stroke: #fff;
    filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
  }
}

path,
polygon {
  animation: neon 3s ease-in-out infinite;
}

.shine {
  animation: shine 4s linear infinite;
}

.faq-bot-hover {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: radial-gradient(circle, #200769 0%, #0e0233 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 15px rgb(0, 15, 148);
}

.faq-bot-hover:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(244, 179, 40, 0.8);
}

.faq-bot-hover:hover .mascota-svg {
  transform: scale(1.1);
}

.z-index-1050 {
  z-index: 1050;
}

.pulse-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(43, 28, 173, 0.2);
  animation: pulse 2s infinite;
  pointer-events: none;
}

/* Efecto de burbuja al hacer clic */
@keyframes bubble {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq-bot-hover:active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  animation: bubble 0.5s ease-out;
  pointer-events: none;
}