.social-float {
  position: fixed;
  z-index: 20;
  right: 25px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.social-float__item {
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 25px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  color: white;
  font-size: 10px;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease, width .2s ease;
}

.social-float__item:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.1); }
.social-float__item svg { width: 21px; height: 21px; flex: 0 0 21px; }
.social-float__item--whatsapp { background: #1d9a68; }.social-float__item--instagram { background: linear-gradient(135deg, #6b2b89, #d22f63 58%, #f3a339); }.social-float__item--facebook { background: #1877f2; }

.footer-social { margin-top: 27px; }.footer-social .footer-label { display: block; margin-bottom: 11px; }.footer-social__links { display: flex; flex-wrap: wrap; gap: 7px; }.footer-social__link { padding: 7px 9px; border: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.66); font-size: 9px; transition: border .2s ease, color .2s ease; }.footer-social__link:hover { border-color: var(--gold); color: var(--gold-light); }

@media (max-width: 800px) {
  .social-float { right: 15px; bottom: 15px; gap: 7px; }
  .social-float__item { width: 42px; min-width: 42px; height: 42px; padding: 0; }
  .social-float__item span { display: none; }
  .social-float__item svg { width: 19px; height: 19px; }
}
