/* ═══════════════════════════════════════════
   WHATSAPP-FLOAT.CSS
   ═══════════════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
.wa-float svg {
  width: 28px;
  height: 28px;
  max-width: none;
  fill: white;
  display: block;
}