.site-footer {
  background: #203864; /* azul corporativo */
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem 1.75rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* asegura ancho total aunque esté dentro de un container */
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: .6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}
