/* Footer de la página pública de Compromisos — mismo tono navy del hero */
.fp-footer {
  background: #0a0b0e;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'DM Sans', 'Inter', 'Segoe UI', sans-serif;
  padding: 36px 24px 28px;
}

.fp-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.fp-logo { display: flex; align-items: center; text-decoration: none; justify-self: start; }
.fp-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); }

.fp-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.fp-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.fp-links a:hover { color: #fff; }

.fp-social { display: flex; align-items: center; gap: 14px; justify-self: end; }
.fp-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff; font-size: 17px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.fp-social a:hover { background: #b9a3f5; color: #1a1730; transform: translateY(-2px); }

.fp-divider {
  max-width: 1200px;
  margin: 28px auto 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.fp-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.fp-dept {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.fp-address,
.fp-phone {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .fp-top { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .fp-logo,
  .fp-social { justify-self: center; }
  .fp-links { gap: 20px; }
}
