/* ── HEADER SOCIAL ────────────────────────── */
.nd-header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nd-header-social a {
  display: flex;
  align-items: center;
  color: var(--nd-color-text-soft);
  transition: var(--nd-transition);
}

.nd-header-social a:hover { color: var(--nd-color-primary); }

.nd-header-social svg {
  width: 18px;
  height: 18px;
}

/* Mobile social en menú */
.nd-nav-mobile-social {
  display: flex;
  gap: 18px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--nd-color-border);
  margin-top: 8px;
}

.nd-nav-mobile-social a {
  color: var(--nd-color-text-soft);
  display: flex;
}

.nd-nav-mobile-social svg {
  width: 20px;
  height: 20px;
}

/* ── FOOTER CONTACTO ──────────────────────── */
.nd-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.nd-footer-social a {
  color: rgba(255,255,255,.5);
  display: flex;
  transition: var(--nd-transition);
}

.nd-footer-social a:hover { color: #fff; }

.nd-footer-social svg {
  width: 20px;
  height: 20px;
}

.nd-footer-contact-title {
  font-family: var(--nd-font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}

.nd-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nd-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.nd-footer-contact-list svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,.4);
  flex-shrink: 0;
}

.nd-footer-contact-list a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}

.nd-footer-contact-list a:hover { color: #fff; }

/* ── WHATSAPP FLOTANTE ────────────────────── */
.nd-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #7B4FBF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(107,63,160,.35);
  z-index: 9999;
  transition: var(--nd-transition);
}

.nd-wa-float:hover {
  background: #6B3FA0;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(107,63,160,.45);
}

.nd-wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── RESPONSIVE HEADER SOCIAL ─────────────── */
@media (max-width: 768px) {
  .nd-header-social { display: none; }
}
