/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 800;
  width: 74px; height: 74px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: none; }
.wa-float svg { display: block; }
