/* ============================================================
   MAPOLMET — components/footer.css  (v2)
   Prefijo: mapolmet-footer-
   ============================================================ */
.mapolmet-footer {
  background: #06114a;
  background: linear-gradient(180deg, #0a1760 0%, #06114a 100%);
  color: rgb(255, 255, 255);
  font-family: 'DM Sans', 'Poppins', sans-serif;
  padding: 72px 24px 0;
  border-top: 1px solid rgba(135,206,235,0.15);
}

.mapolmet-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* ── Logo ──────────────────────────────────────────────────── */
.mapolmet-footer-logo {
  display: flex; align-items: center; gap: 11px; margin-bottom: 16px;
}
.mapolmet-footer-logo-mark {
  width: 44px; height: 44px;
  background: rgba(135,206,235,0.15);
  border: 2px solid rgba(135,206,235,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.4rem; font-weight: 900; color: #fff;
  letter-spacing: -2px;
}
.mapolmet-footer-logo-mark::before { content: 'M'; }

.mapolmet-footer-logo strong {
  display: block; color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: 0.5px;
}
.mapolmet-footer-logo small {
  font-size: 0.6rem; color: rgba(230, 235, 245, 0.8);
  text-transform: uppercase; letter-spacing: 2px;
}

.mapolmet-footer-tagline {
  font-size: 0.84rem; line-height: 1.7;
  color: rgba(230, 235, 245, 0.8); max-width: 270px; margin-bottom: 24px;
}

/* ── Social ─────────────────────────────────────────────────── */
.mapolmet-footer-social { display: flex; gap: 10px; }
.mapolmet-footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(135,206,235,0.1);
  border: 1px solid rgba(135,206,235,0.2);
  color: rgba(230, 235, 245, 0.8);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mapolmet-footer-social-link:hover {
  background: rgba(135,206,235,0.22);
  color: #fff; border-color: rgba(135,206,235,0.5);
}

/* ── Headings ───────────────────────────────────────────────── */
.mapolmet-footer-heading {
  color: #fff; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px;
}

/* ── Links ──────────────────────────────────────────────────── */
.mapolmet-footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.mapolmet-footer-links a {
  color: rgba(230, 235, 245, 0.8); text-decoration: none; font-size: 0.87rem;
  transition: color 0.2s, padding-left 0.2s; display: inline-block;
}
.mapolmet-footer-links a:hover { color: #87CEEB; padding-left: 5px; }

/* ── Contacto ───────────────────────────────────────────────── */
.mapolmet-footer-contact {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
}
.mapolmet-footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; line-height: 1.55; color: rgba(230, 235, 245, 0.8);
}
.mapolmet-footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: #87CEEB; }
.mapolmet-footer-contact a {
  color: rgba(230, 235, 245, 0.8); text-decoration: none; transition: color 0.2s;
}
.mapolmet-footer-contact a:hover { color: #87CEEB; }

/* ── Divisor ─────────────────────────────────────────────────── */
.mapolmet-footer-divider {
  max-width: 1320px; margin: 48px auto 0;
  height: 1px; background: rgba(135,206,235,0.12);
}

/* ── Bottom ──────────────────────────────────────────────────── */
.mapolmet-footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 20px 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.77rem; color: rgba(230, 235, 245, 0.8);
  gap: 16px; flex-wrap: wrap;
}
.mapolmet-footer-credits a {
  color: rgba(230, 235, 245, 0.8); text-decoration: none; transition: color 0.2s;
}
.mapolmet-footer-credits a:hover { color: #87CEEB; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mapolmet-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mapolmet-footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .mapolmet-footer { padding: 48px 20px 0; }
  .mapolmet-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .mapolmet-footer-bottom { flex-direction: column; text-align: center; }
}
