/* ================= TYPOGRAPHY ================= */
/* Componentes tipográficos reutilizados entre seções: selo (tag) de
   destaque e cabeçalho padrão de seção (título + descrição). */

.stag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .9rem;
  background: rgba(224, 32, 32, .1);
  border: 1px solid rgba(224, 32, 32, .2);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 1.2rem;
}
.stag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s infinite;
}

.sec-h {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: .02em;
  line-height: .95;
  margin-bottom: 1rem;
}
.sec-desc {
  color: var(--text-muted);
  max-width: 50ch;
  margin: auto;
  font-size: .95rem;
}
