/* ═══════════════════════════════════════════════════════
   TuSocioEnChina — Footer Plugin CSS
   Extraído y adaptado de la estructura aprobada en la home
═══════════════════════════════════════════════════════ */

:root {
  --tsef-red: #C8102E;
  --tsef-ink: #0D0D12;
  --tsef-muted: #6B6B80;
  --tsef-soft: #A0A0B0;
  --tsef-border: #E0E0E6;
}

.tsef-footer {
  padding: 40px clamp(24px, 6vw, 120px);
  border-top: 1px solid var(--tsef-border);
  background: #ffffff;
  font-family: 'Inter', -apple-system, sans-serif;
}
.tsef-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.tsef-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tsef-footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--tsef-ink);
  line-height: 1;
}
.tsef-footer-logo span:not(.tsef-footer-tld) { color: var(--tsef-red); }
.tsef-footer-tld { color: var(--tsef-soft); }
.tsef-footer-note {
  font-size: 13px;
  color: var(--tsef-soft);
  line-height: 1.4;
}
.tsef-footer-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.tsef-footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--tsef-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.tsef-footer-links a:hover {
  color: var(--tsef-red);
  background: rgba(200,16,46,0.06);
}
.tsef-footer-links a:not(:first-child) {
  position: relative;
}
.tsef-footer-links a:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--tsef-border);
}

/* ── Responsive: móvil apilado y centrado, igual que en la home ── */
@media (max-width: 700px) {
  .tsef-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .tsef-footer-brand {
    align-items: center;
  }
  .tsef-footer-links {
    justify-content: center;
    gap: 2px 0;
  }
  .tsef-footer-links a:not(:first-child)::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .tsef-footer { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 480px) {
  .tsef-footer { padding-left: 12px; padding-right: 12px; }
}
