/* ==========================================================================
   SITE.CSS - ESTILOS GLOBALES Y COMPARTIDOS POR TODA LA WEB
   ========================================================================== */

/*
  NOTA: Las variables (--c-brand, etc.) son definidas en los CSS
  de cada aplicación específica, como examenes-anteriores.css.
  Este archivo se cargará junto a ellos.
*/

.site-footer {
  margin-top: var(--spacing-lg, 2.5rem);
  padding: 2rem var(--spacing-md, 1.25rem);
  border-top: 1px solid var(--c-border, #e5e7eb);
  background-color: var(--c-surface, #ffffff);
  color: var(--c-text-muted, #6b7280);
  font-size: 0.9rem;
  text-align: center;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
}

.footer-link {
  color: var(--c-text-muted, #6b7280);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--c-brand, #4f46e5);
  text-decoration: underline;
}

.copyright-text {
  font-size: 0.875rem;
  opacity: 0.8;
}