/* CONTENEDOR */
#wsp-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
}

/* MENSAJE */
.wsp-message {
  background: linear-gradient(135deg, #d0fa3c, #32b4ff);
  border-radius: 50%;
  color: #123897;
  padding: 9px 14px;
  border-radius: 18px 18px 0 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 
    0 0 10px rgba(31,127,184,0.8),
    0 4px 12px rgba(0,0,0,0.25);
  animation: pulseGlow 2.2s infinite;
  white-space: nowrap;
}

/* BURBUJA */
#wsp-bubble {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #d0fa3c, #32b4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 12px rgba(152, 255, 17, 0.9),
    0 6px 16px rgba(0,0,0,0.35);
  text-decoration: none;
  animation: floatBubble 2.6s ease-in-out infinite;
}

/* ANIMACIÓN FLOTAR */
@keyframes floatBubble {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ANIMACIÓN LUZ */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px rgba(158, 220, 255, 0.6); }
  50% { box-shadow: 0 0 14px rgba(31,127,184,1); }
  100% { box-shadow: 0 0 8px rgba(31,127,184,0.6); }
}

/* HOVER */
#wsp-bubble:hover {
  transform: scale(1.1);
}

.wsp-message:hover {
  opacity: 0.9;
}

/* MÓVIL */
@media (max-width: 480px) {
  .wsp-message {
    display: none;
  }
}
