/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  width: 64px;
  height: 64px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.whatsapp-float:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  background: #1ebe57;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
  display: block;
}
