/* ============================================================
   hero.css — Tela 0 (intro/hero)
   Desafio Primal DS: tipografia pesada, MAIUSCULAS, contraste
   maximo, ampola como elemento visual de fundo
   ============================================================ */

.hero-section{
  text-align: center;
  padding-top: 24px;
  position: relative;
}

h1.hero{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--sand);
  position: relative;
  z-index: 1;
}
h1.hero .foil{
  font-weight: 800;
  color: var(--gold);
}

h1.hero .line-1,
h1.hero .line-2{
  display: block;
}
h1.hero .line-1{
  margin-bottom: 12px;
}

.hero-divider{
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 32px auto;
  border-radius: 0;
}

.hero-promise{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
  color: var(--sand);
  margin: 0 0 36px;
  letter-spacing: 0.3px;
  text-wrap: balance;
}
.hero-promise .promise-soul{
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
}

.hero-meta{
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm);
  margin-top: 28px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-meta span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta span::before{
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 0;
}
.hero-meta span:first-child::before{ display: none; }

@media (max-width: 480px){
  .hero-section{
    padding-top: 28px;
  }
  h1.hero{
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: 0.3px;
  }
  h1.hero .line-1{
    margin-bottom: 10px;
  }
  .hero-promise{
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0.3px;
    margin: 0 0 32px;
  }
  .hero-divider{
    margin: 24px auto;
  }
}
