/* Typography — escala tipográfica global */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sc-font-display);
    color: var(--sc-text-on-dark);
    line-height: 1.2;
    margin: 0 0 var(--sc-space-2) 0;
}

h1 { font-size: var(--sc-font-size-3xl); }
h2 { font-size: var(--sc-font-size-2xl); }
h3 { font-size: var(--sc-font-size-xl); }
h4 { font-size: var(--sc-font-size-lg); }
h5 { font-size: var(--sc-font-size-base); }
h6 { font-size: var(--sc-font-size-sm); }

body,
p,
li,
dd {
    font-family: var(--sc-font-body);
    font-size: var(--sc-font-size-base);
    color: var(--sc-text-on-dark);
    line-height: 1.6;
}

p {
    margin: 0 0 var(--sc-space-2) 0;
}

a {
    color: var(--sc-color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--sc-color-primary);
}

a:focus-visible {
    outline: 2px solid var(--sc-color-accent);
    outline-offset: 2px;
}

small {
    font-size: var(--sc-font-size-sm);
    color: var(--sc-text-muted);
}
