/**
 * footer.css — RevisaCursos
 * Rodapé do site e páginas genéricas (page.php / 404.php).
 */

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--brand-dark));
  color: rgba(255,255,255,0.8);
}
.site-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 3.5rem 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }

.site-footer__brand {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.site-footer p { margin: 0; font-size: 0.875rem; }
.site-footer__col p.lead { max-width: 20rem; }
.site-footer h4 { margin: 0 0 0.75rem; font-size: 0.875rem; font-weight: 600; color: #fff; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer__links a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}


.generic-page { max-width: 48rem; margin: 0 auto; padding: 4rem 1.25rem; }
.generic-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.generic-page .entry-content p { margin-bottom: 1rem; line-height: 1.75; }

.error-404 { text-align: center; padding: 6rem 1.25rem; }
.error-404 a { color: hsl(var(--primary)); }
