/* Estilo compartilhado das páginas institucionais do Sobe Nota */
:root {
    --bg: #f7f2ea;
    --surface: #fffdf9;
    --ink: #1a1a1a;
    --ink-2: #5c6466;
    --ink-3: #8b9496;
    --accent: #0E9BA0;
    --rule: rgba(0,0,0,0.08);
    --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #12181a; --surface: #1a2224; --ink: #edf2f1;
        --ink-2: #aab6b7; --ink-3: #7e8b8c; --accent: #35d4d8;
        --rule: rgba(255,255,255,0.1);
    }
}
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--font); font-size: 16px; line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 32px 20px 80px; }
header.top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding-bottom: 24px; margin-bottom: 32px;
    border-bottom: 1px solid var(--rule); flex-wrap: wrap;
}
header.top a.back {
    font-size: 14px; font-weight: 600; color: var(--accent);
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
header.top a.back:hover { text-decoration: underline; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand img { height: 32px; width: auto; border-radius: 8px; }
h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.02em; }
h2 {
    font-size: 1.15rem; margin: 40px 0 12px; letter-spacing: -0.01em;
    padding-top: 20px; border-top: 1px solid var(--rule);
}
h3 { font-size: 1rem; margin: 24px 0 8px; }
p, li { color: var(--ink-2); margin: 0 0 14px; }
li { margin-bottom: 8px; }
ul, ol { padding-left: 22px; margin: 0 0 16px; }
strong { color: var(--ink); font-weight: 650; }
a { color: var(--accent); }
.updated { font-size: 13px; color: var(--ink-3); margin-bottom: 32px; }
.box {
    background: var(--surface); border: 1px solid var(--rule);
    border-radius: 14px; padding: 18px 20px; margin: 20px 0;
}
.box p:last-child, .box ul:last-child { margin-bottom: 0; }
.fill {
    background: rgba(242,106,64,0.14); color: #a8460f; font-weight: 700;
    padding: 1px 7px; border-radius: 6px; font-size: 0.92em;
}
@media (prefers-color-scheme: dark) { .fill { color: #ffb391; } }
table { border-collapse: collapse; width: 100%; margin: 0 0 18px; font-size: 0.94rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); font-weight: 600; }
td { color: var(--ink-2); }
footer {
    margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--rule);
    font-size: 13px; color: var(--ink-3); display: flex; gap: 18px; flex-wrap: wrap;
}
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
