/* Estilos para el botón flotante de WhatsApp */
.whatsapp-flotante {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 5px;
  right: 5px;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
}

.whatsapp-flotante img {
    width: 50px;
    height: 50px;
    
}
