/* Estilos próprios do módulo Pages — não reutiliza nada do Landing além
   das variáveis/base (nav, container, botões) já servidas por landing.css. */

.page-hero{
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 60px 24px;
  background-size: cover;
  background-position: center;
  background-color: #e2e2e8;
  color: #1a1a1a;
  overflow: hidden;
}

.page-hero-image{ color: #fff; }

.page-hero-image::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.page-hero h1,
.page-hero h2,
.page-hero .page-hero-tags{
  position: relative;
  z-index: 1;
}

.page-hero h1{
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  max-width: 800px;
}

.page-hero h2{
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0;
  max-width: 640px;
  opacity: .9;
}

.page-hero-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 6px;
}

.page-hero-tag{
  font-size: .75rem;
  padding: 4px 12px;
  border-radius: 20px;
  color: inherit;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.12);
}

.page-hero-image .page-hero-tag{
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
}
