/* ════════════════════════════════════════════════
   REDES SOCIALES — Barra lateral (desktop) + navbar (móvil)
════════════════════════════════════════════════ */

/* ── Barra lateral desktop ── */
.social-bar {
  position: fixed;
  left: 18px;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.social-bar a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-section);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid var(--border);
  font-size: 1rem;
  transition: all .25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  backdrop-filter: blur(var(--blur));
}

.social-bar a:hover {
  transform: translateY(-4px) scale(1.1);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(46,159,245,.3);
}

/* ── Redes en navbar móvil (ocultas por defecto) ── */
.social-nav {
  display: none;
}
