/* ============================================================
   base/typography.css
   Tipografia global
   ============================================================ */

h1,
h2,
h3 {
    margin-top: 0;
    color: inherit;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.18rem;
}

p {
    color: var(--color-muted);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.lead {
    font-size: 1.15rem;
    color: var(--color-muted);
}

.section-label,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-label.gold {
    color: var(--color-gold-soft);
}