/* ─── FLOATING ─── */
.fl-wa {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:800;
  width:54px; height:54px; border-radius:50%;
  background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:.25s;
}
.fl-wa:hover { background:#1ebe59; transform:scale(1.1); }
.fl-call {
  position:fixed; bottom:5rem; right:1.5rem; z-index:800;
  background:linear-gradient(135deg,var(--gold),var(--goldd));
  color:var(--navy); text-decoration:none;
  padding:9px 16px; font-family:var(--FH); font-weight:700;
  font-size:.8rem; letter-spacing:2px;
  clip-path:polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%);
  box-shadow:0 4px 18px rgba(245,166,35,.4);
  transition:.2s;
}
.fl-call:hover { transform:translateY(-3px); }
