/* ===================== WHATSAPP FLOTANTE ===================== */

/* Animación salto para la burbuja flotante */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* BOTÓN FLOTANTE */
#whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  background: none;
}

#whatsapp-float img {
  width: 50%;
  height: 50%;
  
}
