.mp-footer { background: #120a08; }

.mp-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 60px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Marca */
.mp-footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; font-style: italic;
  color: #e4c8c0; margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
}
.mp-footer__logo-line { width: 28px; height: 2px; background: var(--rojo); flex-shrink: 0; }
.mp-footer__sub {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 16px;
}
.mp-footer__desc { font-size: 14px; color: #6b5450; font-weight: 400; line-height: 1.75; margin-bottom: 24px; }

.mp-footer__socials { display: flex; gap: 10px; }
.mp-footer__social {
  width: 38px; height: 38px;
  border: 1px solid rgba(191,59,43,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-decoration: none; transition: all .2s;
}
.mp-footer__social:hover { background: var(--rojo); color: var(--white); border-color: var(--rojo); }

/* Columnas */
.mp-footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rojo); margin-bottom: 18px;
}
.mp-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mp-footer__list li { font-size: 14px; color: #6b5450; font-weight: 400; line-height: 1.4; }
.mp-footer__list a { color: #6b5450; text-decoration: none; transition: color .2s; }
.mp-footer__list a:hover { color: var(--rojo); }

/* Bottom */
.mp-footer__bottom {
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.mp-footer__copy { font-size: 12px; color: #3a2820; font-weight: 400; }
.mp-footer__legal { display: flex; gap: 16px; }
.mp-footer__legal a { font-size: 12px; color: #3a2820; text-decoration: none; font-weight: 400; }
.mp-footer__legal a:hover { color: var(--rojo); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mp-footer__top { padding: 48px 32px 36px; }
  .mp-footer__bottom { padding: 16px 32px; }
}
@media (max-width: 900px) {
  .mp-footer__top { grid-template-columns: 1fr 1fr; padding: 44px 20px 32px; gap: 28px; }
  .mp-footer__bottom { padding: 16px 20px; }
}
@media (max-width: 520px) {
  .mp-footer__top { grid-template-columns: 1fr; padding: 36px 16px 28px; }
  .mp-footer__bottom { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
}
