/* Botón flotante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00c4cc;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  cursor: pointer;
  overflow: visible;
}

/* Ícono */
.w-icon {
  width: 32px;
  height: 32px;
  animation: bounce 2s infinite;
}

/* Ondas animadas */
.pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse-animation 2s infinite;
  z-index: -1;
}

/* Animaciones */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.whatsapp-float:hover {
  background: #00c4cc;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

