h1, h2, h3, h4, h5, h6 {
  font-family: var(--of-font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--of-grafito);
  margin: 0 0 var(--of-space-4);
  font-variation-settings: "opsz" 100;
}

h1 {
  font-size: var(--of-fs-5xl);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
}

h4 { font-size: var(--of-fs-xl); font-weight: 600; }

p {
  margin: 0 0 var(--of-space-4);
  color: var(--of-grafito-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--of-space-2);
  font-family: var(--of-font-body);
  font-size: var(--of-fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--of-cyan);
  margin-bottom: var(--of-space-4);
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.lead {
  font-size: var(--of-fs-lg);
  line-height: 1.6;
  color: var(--of-grafito-soft);
  max-width: 640px;
}

.display {
  font-family: var(--of-font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.text-gradient {
  background: var(--of-grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-coral { color: var(--of-coral); }
.text-cyan { color: var(--of-cyan); }
.text-azul { color: var(--of-azul); }
.text-light { color: var(--of-blanco); }
.text-muted { color: var(--of-grafito-soft); }
.text-center { text-align: center; }
