/* ==========================================================================
   Saiu no Diário — design system
   Marca: tinta (ink) + carimbo âmbar sobre papel. Tokens primeiro, depois
   layout, depois componentes.
   ========================================================================== */

:root {
    /* Marca */
    --ink-950: #0a0e1a;
    --ink-900: #10162a;
    --ink-800: #1a2238;
    --ink-700: #273250;
    --ink-600: #3b4a6b;

    --amber-50: #fdf6e7;
    --amber-100: #fbe9c2;
    --amber-200: #f7d489;
    --amber-300: #f2bd4e;
    --amber-400: #e9a723;
    --amber-500: #d18f0c;
    --amber-600: #a86f08;
    --amber-700: #7d5206;

    /* Neutros com leve calor (papel de jornal) */
    --paper: #f5f4f1;
    --surface: #ffffff;
    --surface-2: #faf9f7;
    --line: #e6e3dc;
    --line-strong: #d5d1c8;
    --text: #171a21;
    --text-2: #4b5160;
    --text-3: #7b8090;
    --text-4: #a1a5b0;

    /* Semânticos */
    --green-bg: #e7f6ed;
    --green-fg: #10693c;
    --green-line: #b8e6ca;
    --red: #d92d20;
    --red-bg: #fdeceb;
    --red-fg: #a01b12;
    --red-line: #f7cdc9;
    --blue-bg: #e8f0fe;
    --blue-fg: #1a4fa0;

    --radius: 12px;
    --radius-lg: 16px;
    --radius-sm: 9px;
    --shadow-xs: 0 1px 2px rgba(16, 22, 42, .05);
    --shadow-sm: 0 1px 3px rgba(16, 22, 42, .06), 0 1px 2px rgba(16, 22, 42, .04);
    --shadow-md: 0 8px 24px rgba(16, 22, 42, .08);
    --shadow-lg: 0 24px 48px rgba(10, 14, 26, .18);
    --sidebar-w: 264px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --font-mono: 'SF Mono', 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    overflow-x: hidden;
    background: var(--paper);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv05' 1, 'ss01' 1;
}

a { color: var(--ink-800); text-decoration: none; }
a:hover { color: var(--ink-950); }

/* ── Marca ────────────────────────────────────────────────────────────── */

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    background: linear-gradient(150deg, var(--ink-700) 0%, var(--ink-950) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), var(--shadow-sm);
    position: relative;
}
.brand-mark svg { width: 21px; height: 21px; stroke: var(--amber-300); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark::after {
    content: ''; position: absolute; right: -2px; bottom: -2px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--amber-400); border: 2px solid var(--ink-950);
}
.brand-text { min-width: 0; }
.brand-name {
    font-family: var(--font-display); font-size: 21px; font-weight: 400;
    letter-spacing: -.01em; line-height: 1.1; color: #fff; white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--amber-300); }
.brand-tag {
    font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,.45);
    text-transform: uppercase; letter-spacing: .14em; margin-top: 3px; display: block;
}

/* ── Layout ───────────────────────────────────────────────────────────── */

.sidebar {
    position: fixed; inset: 0 auto 0 0; width: var(--sidebar-w); z-index: 50;
    background: var(--ink-950);
    background-image: radial-gradient(120% 60% at 0% 0%, rgba(233,167,35,.10) 0%, transparent 55%);
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex; flex-direction: column;
}
.sidebar-brand { padding: 20px 20px 18px; }
.sidebar-nav { flex: 1; padding: 4px 12px 16px; overflow-y: auto; }
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }

.nav-group + .nav-group { margin-top: 22px; }
.nav-label {
    font-size: 10px; font-weight: 700; color: rgba(255,255,255,.34);
    text-transform: uppercase; letter-spacing: .13em; padding: 0 12px; margin-bottom: 8px;
}
.nav-link {
    display: flex; align-items: center; gap: 11px; padding: 9px 12px; margin-bottom: 2px;
    border-radius: var(--radius-sm); color: rgba(255,255,255,.68); font-size: 13.5px;
    font-weight: 500; transition: background .15s, color .15s; position: relative;
}
.nav-link svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; opacity: .75; }
.nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-link:hover svg { opacity: 1; }
.nav-link.is-active { background: rgba(233,167,35,.13); color: #fff; font-weight: 600; }
.nav-link.is-active svg { color: var(--amber-300); opacity: 1; }
.nav-link.is-active::before {
    content: ''; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
    width: 3px; height: 18px; border-radius: 0 3px 3px 0; background: var(--amber-400);
}
.nav-link .nav-ext { margin-left: auto; opacity: .4; width: 13px; height: 13px; }

.sidebar-footer { padding: 14px 12px; border-top: 1px solid rgba(255,255,255,.07); }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 6px 8px 12px; }
.sidebar-user .avatar { box-shadow: none; }
.sidebar-user-info { min-width: 0; flex: 1; }
.sidebar-user-name { font-size: 12.5px; font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-user-role { font-size: 11px; color: rgba(255,255,255,.42); }
.nav-link.nav-logout { color: #f2a09a; }
.nav-link.nav-logout:hover { background: rgba(217,45,32,.16); color: #ffb4ad; }

.main { margin-left: var(--sidebar-w); min-height: 100vh; display: flex; flex-direction: column; }

.topbar {
    position: sticky; top: 0; z-index: 40;
    background: rgba(245,244,241,.82); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 0 28px; height: 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.topbar-title { font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-meta { font-size: 12.5px; color: var(--text-3); display: flex; align-items: center; gap: 7px; }
.topbar-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.avatar {
    width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(140deg, var(--amber-300), var(--amber-500));
    color: var(--ink-950); display: flex; align-items: center; justify-content: center;
    font-size: 12.5px; font-weight: 700;
}

.sidebar-toggle {
    display: none; background: none; border: 1px solid var(--line); cursor: pointer;
    padding: 6px; color: var(--text-2); border-radius: var(--radius-sm); line-height: 0;
}
.sidebar-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(10,14,26,.55); z-index: 45; }

.content { padding: 26px 28px 56px; width: 100%; max-width: 1180px; }
.content.content-narrow { max-width: 700px; }

/* ── Cabeçalho de página ──────────────────────────────────────────────── */

.page-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.page-header h1 { font-size: 23px; font-weight: 700; letter-spacing: -.03em; line-height: 1.2; }
.page-header .page-sub { font-size: 13.5px; color: var(--text-3); margin-top: 4px; }
.page-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.backlink { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text-3); font-weight: 500; margin-bottom: 10px; }
.backlink:hover { color: var(--text); }
.backlink svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Cards ────────────────────────────────────────────────────────────── */

.card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs); margin-bottom: 18px;
}
.card > .card-body, .card.card-pad { padding: 22px; }
.card-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 20px; border-bottom: 1px solid var(--line);
}
.card-head h2, .card-head h3 { font-size: 14px; font-weight: 650; letter-spacing: -.01em; }
.card-head .card-sub { font-size: 12.5px; color: var(--text-3); margin-top: 2px; font-weight: 400; }
.card-foot { padding: 14px 20px; border-top: 1px solid var(--line); background: var(--surface-2); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

/* ── Métricas ─────────────────────────────────────────────────────────── */

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(196px, 100%), 1fr)); gap: 14px; margin-bottom: 20px; }
.stat {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 18px 20px; box-shadow: var(--shadow-xs); position: relative; overflow: hidden;
}
.stat-icon {
    width: 30px; height: 30px; border-radius: 9px; background: var(--amber-50);
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.stat-icon svg { width: 16px; height: 16px; stroke: var(--amber-600); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.stat-icon.is-ink { background: var(--ink-950); }
.stat-icon.is-ink svg { stroke: var(--amber-300); }
.stat-label { font-size: 11.5px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; }
.stat-value { font-size: 30px; font-weight: 700; letter-spacing: -.035em; margin-top: 3px; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat-value small { font-size: 15px; font-weight: 500; color: var(--text-4); letter-spacing: 0; }
.stat-desc { font-size: 12.5px; color: var(--text-3); margin-top: 5px; }
.stat-bar { height: 5px; border-radius: 3px; background: var(--line); margin-top: 12px; overflow: hidden; }
.stat-bar > span { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--amber-400), var(--amber-500)); }
.stat-bar.is-full > span { background: var(--red); }

/* ── Tabelas ──────────────────────────────────────────────────────────── */

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.card > .table-wrap:first-child { border-radius: var(--radius-lg); }
table.data { width: 100%; border-collapse: separate; border-spacing: 0; }
table.data th {
    text-align: left; padding: 10px 16px; font-size: 10.5px; font-weight: 700;
    color: var(--text-3); text-transform: uppercase; letter-spacing: .08em;
    background: var(--surface-2); border-bottom: 1px solid var(--line); white-space: nowrap;
}
table.data td { padding: 12px 16px; font-size: 13.5px; color: var(--text-2); border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr { transition: background .12s; }
table.data tbody tr:hover td { background: var(--surface-2); }
table.data th:first-child, table.data td:first-child { padding-left: 20px; }
table.data th:last-child, table.data td:last-child { padding-right: 20px; }
.t-strong { font-weight: 600; color: var(--text); }
.t-mono { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-2); letter-spacing: -.02em; }
.t-num { font-variant-numeric: tabular-nums; }
.t-muted { color: var(--text-3); }
.t-right, td.t-right, th.t-right { text-align: right; }
.t-truncate { max-width: 280px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cell-actions { text-align: right; white-space: nowrap; }
.cell-actions .actions { display: inline-flex; gap: 6px; align-items: center; justify-content: flex-end; }
.cell-actions form { display: inline-flex; }

/* ── Badges ───────────────────────────────────────────────────────────── */

.badge {
    display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px;
    border-radius: 999px; font-size: 11.5px; font-weight: 600; line-height: 1.5; white-space: nowrap;
}
.badge-green { background: var(--green-bg); color: var(--green-fg); }
.badge-red { background: var(--red-bg); color: var(--red-fg); }
.badge-amber { background: var(--amber-50); color: var(--amber-700); }
.badge-blue { background: var(--blue-bg); color: var(--blue-fg); }
.badge-gray { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--line); }
.badge-uf { font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em; background: var(--ink-950); color: var(--amber-300); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Botões ───────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px 16px; border: 1px solid transparent; border-radius: var(--radius-sm);
    font-family: inherit; font-size: 13.5px; font-weight: 600; line-height: 1.2;
    cursor: pointer; transition: background .15s, border-color .15s, box-shadow .15s, transform .1s;
    white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(233,167,35,.45); }

.btn-primary { background: var(--ink-900); color: #fff; box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: var(--ink-700); color: #fff; }
.btn-accent { background: var(--amber-400); color: var(--ink-950); box-shadow: var(--shadow-xs); }
.btn-accent:hover { background: var(--amber-300); color: var(--ink-950); }
.btn-outline { background: var(--surface); color: var(--text-2); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-4); }
.btn-ghost { background: transparent; color: var(--text-3); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #b42318; color: #fff; }
.btn-danger-soft { background: var(--surface); color: var(--red-fg); border-color: var(--red-line); }
.btn-danger-soft:hover { background: var(--red-bg); color: var(--red-fg); }
.btn-sm { padding: 6px 11px; font-size: 12.5px; border-radius: 8px; gap: 5px; }
.btn-sm svg { width: 13px; height: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Formulários ──────────────────────────────────────────────────────── */

.form-group { margin-bottom: 17px; }
.form-group > label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input[type=text], .form-group input[type=email], .form-group input[type=password],
.form-group input[type=number], .form-group input[type=date], .form-group input[type=time],
.form-group select, .form-group textarea {
    width: 100%; padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 13.5px; color: var(--text); background: var(--surface);
    transition: border-color .15s, box-shadow .15s;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8090' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; padding-right: 32px; }
.form-group select[multiple] { background-image: none; padding-right: 12px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--amber-400); box-shadow: 0 0 0 3px rgba(233,167,35,.16);
}
.form-group input::placeholder { color: var(--text-4); }
.form-help { font-size: 12px; color: var(--text-3); margin-top: 6px; line-height: 1.5; }
.form-help code { font-family: var(--font-mono); font-size: 11.5px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 16px; }
.form-actions { display: flex; gap: 8px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }

.check {
    display: inline-flex; align-items: flex-start; gap: 9px; cursor: pointer;
    font-size: 13.5px; font-weight: 500; color: var(--text);
}
.check input[type=checkbox] { width: 16px; height: 16px; margin-top: 1px; accent-color: var(--amber-500); cursor: pointer; flex-shrink: 0; }
.check .check-desc { display: block; font-size: 12px; color: var(--text-3); font-weight: 400; margin-top: 2px; }

/* Seletor de dias em formato de "pílulas" */
.daypicker { display: flex; gap: 6px; flex-wrap: wrap; }
.daypicker input { position: absolute; opacity: 0; pointer-events: none; }
.daypicker label {
    display: inline-flex; align-items: center; justify-content: center; min-width: 48px;
    padding: 8px 10px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    font-size: 12.5px; font-weight: 600; color: var(--text-2); background: var(--surface);
    cursor: pointer; user-select: none; transition: all .15s;
}
.daypicker label:hover { border-color: var(--text-4); }
.daypicker input:checked + label { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.daypicker input:focus-visible + label { box-shadow: 0 0 0 3px rgba(233,167,35,.4); }

.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.toolbar .form-group { margin: 0; min-width: 150px; }

/* ── Alertas ──────────────────────────────────────────────────────────── */

.messages { margin-bottom: 18px; display: grid; gap: 8px; }
.alert {
    display: flex; align-items: flex-start; gap: 10px; padding: 12px 15px;
    border-radius: var(--radius); font-size: 13.5px; font-weight: 500; border: 1px solid;
}
.alert svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--green-bg); border-color: var(--green-line); color: var(--green-fg); }
.alert-error { background: var(--red-bg); border-color: var(--red-line); color: var(--red-fg); }
.alert-warning { background: var(--amber-50); border-color: var(--amber-200); color: var(--amber-700); }
.alert-info { background: var(--blue-bg); border-color: #c3d8fb; color: var(--blue-fg); }

/* ── Vazio ────────────────────────────────────────────────────────────── */

.empty { text-align: center; padding: 46px 24px; }
.empty-icon {
    width: 44px; height: 44px; border-radius: 13px; background: var(--surface-2);
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.empty-icon svg { width: 20px; height: 20px; stroke: var(--text-4); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.empty-title { font-size: 14px; font-weight: 600; color: var(--text); }
.empty-desc { font-size: 13px; color: var(--text-3); margin-top: 4px; }
.empty .btn { margin-top: 16px; }

/* ── Definições (chave/valor) ─────────────────────────────────────────── */

.deflist { display: grid; gap: 16px; }
.deflist dt { font-size: 10.5px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.deflist dd { font-size: 14px; color: var(--text); }

/* ── Utilitários ──────────────────────────────────────────────────────── */

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 18px; align-items: start; }
.stack { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.section-title { font-size: 12px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .09em; margin: 26px 0 12px; }
.hint { font-size: 12.5px; color: var(--text-3); line-height: 1.6; }
.kbd-time { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }

/* ── Responsivo ───────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .sidebar { transform: translateX(-100%); transition: transform .25s ease; }
    body.sidebar-open .sidebar { transform: translateX(0); box-shadow: var(--shadow-lg); }
    body.sidebar-open .sidebar-overlay { display: block; }
    .main { margin-left: 0; }
    .sidebar-toggle { display: inline-flex; }
    .topbar { padding: 0 16px; }
    .content { padding: 20px 16px 48px; }
    .page-header h1 { font-size: 20px; }
    .topbar-meta { display: none; }
    .stat-value { font-size: 26px; }
}

@media (max-width: 560px) {
    .page-header { flex-direction: column; align-items: stretch; }
    .page-actions .btn { flex: 1; }
    .form-actions .btn { flex: 1; }
}

/* ── Tráfego ────────────────────────────────────────────────────────────
   Gráfico sem biblioteca: são barras de altura relativa ao maior dia, que é
   tudo que a pergunta "está subindo?" precisa. Trazer uma lib de gráfico para
   isso custaria mais bytes que a página inteira. */

.trafego-serie { display: flex; align-items: flex-end; gap: 3px; height: 96px; }
.trafego-barra { flex: 1; height: 100%; display: flex; align-items: flex-end; min-width: 3px; }
.trafego-barra > span {
    width: 100%; min-height: 2px; border-radius: 3px 3px 0 0;
    background: var(--ink-700); position: relative;
}
.trafego-barra:hover > span { background: var(--ink-950); }
/* A faixa âmbar no topo marca o dia que rendeu lead. */
.trafego-barra > span > i { position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: 3px 3px 0 0; background: var(--amber-400); }

.trafego-degrau + .trafego-degrau { margin-top: 14px; }
.trafego-degrau-topo { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.trafego-degrau-topo strong { color: var(--text); font-weight: 650; font-variant-numeric: tabular-nums; }
.trafego-degrau-topo small { font-size: 12px; font-weight: 500; color: var(--text-3); }

.trafego-dispositivos { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
