/* ── REDES SOCIALES FLOTANTES (todas las páginas) ── */
.social-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.social-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.social-float:hover .social-icons {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.social-icon-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.social-icon-wrap .soc-tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.social-icon-wrap:hover .soc-tooltip { opacity: 1; }
.social-icon-wrap svg {
  width: 46px; height: 46px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.social-icon-wrap:hover svg { transform: scale(1.12); }
.wa-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.wa-main .wa-tooltip {
  background: #1a1a1a; color: #fff;
  font-size: 11px; font-weight: bold;
  padding: 4px 10px; border-radius: 4px;
  white-space: nowrap;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.wa-main:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
.wa-main svg {
  width: 58px; height: 58px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  transition: transform 0.2s;
}
.wa-main:hover svg { transform: scale(1.1); }
