/*
 * footer.css — Footer oscuro (s-charcoal)
 * ════════════════════════════════════════════════════════════════
 */

.footer {
  background: var(--charcoal);
  color:      var(--white);
  padding:    72px 0 0;
}

/* ── Grid principal ────────────────────────────────────────────────────────── */
.footer-grid {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:                   48px;
  padding-bottom:        56px;
  border-bottom:         1px solid rgba(255, 255, 255, 0.08);
}

/* ── Marca / Brand ─────────────────────────────────────────────────────────── */
.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size:   14px;
  color:       rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width:   280px;
  margin-bottom: 24px;
}

/* ── Redes sociales ────────────────────────────────────────────────────────── */
.social-links {
  display: flex;
  gap:     12px;
}

.social-link {
  width:           40px;
  height:          40px;
  background:      rgba(255, 255, 255, 0.06);
  border:          1px solid rgba(255, 255, 255, 0.1);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       18px;
  transition:      background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background:    rgba(245, 196, 0, 0.15);
  border-color:  var(--yellow);
}

/* ── Columnas de nav ────────────────────────────────────────────────────────── */
.footer-col h4 {
  font-family:    var(--font-head);
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--yellow);
  margin-bottom:  20px;
}

.footer-links {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        10px;
}

.footer-links a {
  font-size:   14px;
  color:       rgba(255, 255, 255, 0.5);
  transition:  color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

/* ── Pie de página ─────────────────────────────────────────────────────────── */
.footer-bottom {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         20px 0;
  flex-wrap:       wrap;
  gap:             12px;
}

.footer-bottom p {
  font-family:    var(--font-head);
  font-size:      12px;
  color:          rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.footer-bottom a {
  color:      rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--yellow);
}
