/* whatsapp-float.css — botón flotante de WhatsApp, presente en todas las páginas de cliente */
.whatsapp-float {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  z-index: 1200;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

@media (min-width: 768px) {
  .whatsapp-float {
    right: var(--space-lg);
    bottom: var(--space-lg);
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}
