/* ═══════════════════════════════════════
   TIPOGRAFIA — KonvertAI
═══════════════════════════════════════ */

/* ── Eyebrow / Badge ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ciano-l);
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.05);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--c-ciano-l);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ── Display (H1 hero) ── */
.display {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--c-white);
}

.display .hi {
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Heading (H2 seções) ── */
.heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-white);
}

/* ── Subheading ── */
.subheading {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 520px;
}

/* ── Body ── */
.body {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

/* ── Caption ── */
.caption {
  font-size: 0.78rem;
  color: var(--c-text-3);
  line-height: 1.5;
}
