/* =========================================================
   COMPONENT — WhatsApp flutuante
   ========================================================= */

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-xs);
  color: var(--color-text);
}
.wa-float strong { color: var(--color-blue); display: block; }
.wa-float__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .wa-float { right: 24px; bottom: 24px; }
}
