/* 🌟 Botón WhatsApp Flotante */
.whatsapp-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  animation: pulse-wpp 2s infinite;
}

.whatsapp-flotante:hover {
  background-color: #1EBE5D;
  transform: scale(1.1);
  color: white;
}

@keyframes pulse-wpp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
