/* ─────────────────────────────────────────────
   pages.css — Estilos compartilhados entre páginas
───────────────────────────────────────────── */

/* ── Page Hero (mini hero para páginas internas) ── */
.page-hero {
  position: relative;
  z-index: 5;
  padding: 160px clamp(20px,5vw,48px) clamp(60px,8vw,100px);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero .section-tag { margin-bottom: 20px; }
.page-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Active nav link ── */
.nav-links a.active {
  color: var(--text-primary) !important;
}
.nav-links a.active::after { width: 100% !important; }

/* ── Page sections ── */
.page-section {
  position: relative;
  z-index: 5;
  padding: var(--section-pad) 0;
}

/* ── Mobile fixes ── */
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px clamp(40px,6vw,64px); }
  .page-hero-title { font-size: clamp(28px,7vw,44px); letter-spacing: -1px; }
  .page-hero-sub   { font-size: 15px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 100px 20px 40px; }
  .page-hero-title { font-size: clamp(24px,8vw,34px); }
}
