@font-face {
  font-family: 'AntonLocal';
  src: url('../fontes/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.t-label {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: currentColor;
  opacity: 0.65;
  flex-shrink: 0;
}

/* Headline text that fills full width — size set by JS fitText */
.fit-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.08;
  white-space: nowrap;
}

.title-mobile {
  display: none;
}

/* Line reveal wrapper — overflow hidden clip mask */
.reveal-line {
  overflow: hidden;
  display: block;
  padding-top: 0.18em;
  padding-bottom: 0.08em;
  margin-top: -0.18em;
  margin-bottom: -0.08em;
}

.reveal-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}

.reveal-line.is-visible .reveal-inner {
  transform: translateY(0);
}

/* ── Utilitários de cor do ecossistema ── */
.cyan,
.brands { color: var(--brands); }
.brain   { color: var(--brain); }
.lab     { color: var(--lab); }
.grey    { color: var(--grey); }

/* ── text-wrap (principle #10 — make-interfaces-feel-better) ── */
h1, h2, h3, h4, h5, h6,
.fit-line {
  text-wrap: balance;
}

p, li {
  text-wrap: pretty;
}

/* ── Linha horizontal util ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  border: none;
}

@media (max-width: 960px) {
  .title-desktop {
    display: none !important;
  }

  .title-mobile {
    display: block;
  }

  .t-label {
    font-size: 16px;
    gap: 10px;
  }

  .t-label::before {
    width: 28px;
  }
}
