/* =====================================================================
   IGSA · BACK OFFICE — Estética empresarial tipo SAP Fiori
   Paleta corporativa azul, densidad profesional, precisión utilitaria.
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* Salvaguarda: ningún SVG puede crecer más allá de su contenedor */
svg { max-width: 100%; max-height: 100%; }
.nav-item svg, .sidenav svg, .shell svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn svg { width: 15px; height: 15px; flex: 0 0 auto; }
.tile__icon svg { width: 20px; height: 20px; }


:root {
    /* Marca / acción — Tropical Blue + gris */
    --brand:        #0095c8;   /* tropical blue */
    --brand-dark:   #007aa6;
    --brand-darker: #006285;
    --brand-soft:   #e3f4fa;
    --brand-line:   #b9e3f0;

    /* Barra superior (shell) — gris pizarra */
    --shell:        #2f3a44;   /* gris corporativo */
    --shell-dark:   #252e36;
    --shell-text:   #d5dbe0;

    /* Superficies */
    --bg:           #f5f6f7;
    --surface:      #ffffff;
    --surface-2:    #fafbfc;
    --tile:         #ffffff;

    /* Texto */
    --text:         #32363a;
    --text-soft:    #6a6d70;
    --text-faint:   #8c8f93;

    /* Bordes */
    --border:       #e4e7ea;
    --border-strong:#c6cacd;

    /* Semánticos */
    --positive:     #107e3e;
    --positive-bg:  #e6f3ec;
    --critical:     #df6e0c;
    --critical-bg:  #fbf0e3;
    --negative:     #bb0000;
    --negative-bg:  #ffeaea;
    --info:         #0095c8;
    --info-bg:      #e8f1fb;
    --neutral:      #6a6d70;
    --neutral-bg:   #eef0f1;

    --radius:       6px;
    --radius-sm:    4px;
    --shadow-1:     0 0 0 1px rgba(53,74,95,.05), 0 1px 2px rgba(53,74,95,.08);
    --shadow-2:     0 1px 4px rgba(53,74,95,.10), 0 4px 12px rgba(53,74,95,.08);
    --shadow-pop:   0 8px 28px rgba(53,74,95,.18);

    --shell-h:      48px;
    --side-w:       240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-weight: 600; color: var(--text); letter-spacing: -.01em; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===================== SHELL BAR (barra superior) ===================== */
.shell {
    height: var(--shell-h);
    background: var(--shell);
    color: var(--shell-text);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    box-shadow: 0 1px 3px rgba(0,0,0,.18);
}
.shell__logo {
    font-weight: 700; font-size: 15px; color: #fff; letter-spacing: .5px;
    display: flex; align-items: center; gap: 9px; padding-right: 18px;
}
.shell__logo .mark {
    width: 26px; height: 26px; border-radius: 5px;
    background: linear-gradient(135deg, var(--brand), #3ec6e8);
    display: grid; place-items: center; font-size: 12px; color: #fff; font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.shell__title { font-size: 13px; color: var(--shell-text); font-weight: 500; opacity: .9; }
.shell__sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); margin: 0 14px; }
.shell__spacer { flex: 1; }
.shell__user {
    display: flex; align-items: center; gap: 9px; font-size: 12.5px;
    padding: 6px 10px; border-radius: var(--radius-sm); cursor: default;
}
.shell__avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--brand); color: #fff; display: grid; place-items: center;
    font-size: 12px; font-weight: 600;
}
.shell__logout { color: var(--shell-text); opacity: .85; font-size: 12.5px; margin-left: 6px; }
.shell__logout:hover { opacity: 1; color: #fff; text-decoration: none; }

/* ===================== LAYOUT ===================== */
.layout { display: flex; padding-top: var(--shell-h); min-height: 100vh; }

.sidenav {
    width: var(--side-w);
    background: var(--surface);
    border-right: 1px solid var(--border);
    position: fixed; top: var(--shell-h); bottom: 0; left: 0;
    overflow-y: auto; padding: 10px 8px;
    z-index: 100;
}
.sidenav__group { font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-faint); padding: 12px 12px 6px; font-weight: 600; }
.nav-item {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 12px; border-radius: var(--radius-sm);
    color: var(--text); font-weight: 500; font-size: 13.5px;
    margin-bottom: 1px; position: relative; transition: background .12s;
}
.nav-item:hover { background: var(--surface-2); text-decoration: none; }
.nav-item.active { background: var(--brand-soft); color: var(--brand-dark); font-weight: 600; }
.nav-item.active::before { content:''; position:absolute; left:0; top:6px; bottom:6px; width:3px; background:var(--brand); border-radius:0 3px 3px 0; }
.nav-item svg { width: 17px; height: 17px; flex-shrink: 0; opacity: .85; }
.nav-item.active svg { opacity: 1; }

.main { flex: 1; margin-left: var(--side-w); display: flex; flex-direction: column; min-width: 0; }

/* Page header con breadcrumb + título + acciones */
.page-head {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px 16px;
    position: sticky; top: var(--shell-h); z-index: 50;
}
.breadcrumb { font-size: 12px; color: var(--text-soft); margin-bottom: 5px; display: flex; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--border-strong); }
.page-head__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.page-head h1 { font-size: 20px; font-weight: 600; }
.page-head__actions { display: flex; gap: 8px; align-items: center; }

.content { padding: 22px 32px 48px; max-width: 100%; width: 100%; }

/* ===================== BOTONES ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: var(--radius-sm);
    border: 1px solid transparent; font-family: inherit; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all .12s; text-decoration: none; line-height: 1.3; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--primary:active { background: var(--brand-darker); }
.btn--ghost { background: var(--surface); color: var(--brand); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--brand-soft); border-color: var(--brand-line); }
.btn--subtle { background: transparent; color: var(--brand); border-color: transparent; }
.btn--subtle:hover { background: var(--brand-soft); }
.btn--danger { background: var(--surface); color: var(--negative); border-color: #e8b4b4; }
.btn--danger:hover { background: var(--negative-bg); }
.btn--sm { padding: 5px 10px; font-size: 12.5px; }
.btn svg { width: 15px; height: 15px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ===================== TILES (launchpad inicio) ===================== */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.tile {
    background: var(--tile); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px 16px 14px; min-height: 120px; box-shadow: var(--shadow-1);
    display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s, border-color .15s;
    position: relative; overflow: hidden;
}
.tile:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); border-color: var(--brand-line); text-decoration: none; }
.tile__icon { width: 34px; height: 34px; border-radius: 8px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 12px; }
.tile__icon svg { width: 19px; height: 19px; }
.tile__title { font-size: 14.5px; font-weight: 600; color: var(--text); }
.tile__desc { font-size: 12px; color: var(--text-soft); margin-top: 2px; flex: 1; }
.tile__kpi { font-size: 26px; font-weight: 700; color: var(--brand-dark); font-family: 'IBM Plex Sans'; letter-spacing: -.02em; margin-top: 6px; }
.tile__kpi-label { font-size: 11.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; }

/* KPIs horizontales */
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 12px; margin-bottom: 18px; }
.kpi {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px 16px; box-shadow: var(--shadow-1); border-left: 3px solid var(--brand);
}
.kpi__num { font-size: 23px; font-weight: 700; letter-spacing: -.02em; }
.kpi__label { font-size: 11.5px; color: var(--text-soft); text-transform: uppercase; letter-spacing: .04em; margin-top: 1px; }
.kpi--positive { border-left-color: var(--positive); } .kpi--positive .kpi__num { color: var(--positive); }
.kpi--critical { border-left-color: var(--critical); } .kpi--critical .kpi__num { color: var(--critical); }
.kpi--negative { border-left-color: var(--negative); } .kpi--negative .kpi__num { color: var(--negative); }

/* ===================== PANELES / CARDS ===================== */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-1); margin-bottom: 18px; }
.panel__head { padding: 13px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.panel__head h2 { font-size: 14.5px; font-weight: 600; }
.panel__head .sub { font-size: 12px; color: var(--text-soft); font-weight: 400; }
.panel__body { padding: 18px; }
/* compat con clases viejas */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-1); margin-bottom: 18px; }
.card__head { padding: 13px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__head h2 { font-size: 14.5px; }
.card__body { padding: 18px; }

/* ===================== TABLAS (densas, profesionales) ===================== */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 13px; }
table.data th, table.data td { padding: 9px 14px; text-align: left; border-bottom: 1px solid var(--border); }
table.data thead th {
    font-weight: 600; color: var(--text-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
    background: var(--surface-2); border-bottom: 1px solid var(--border-strong); white-space: nowrap; position: sticky; top: 0;
}
table.data tbody tr { transition: background .1s; }
table.data tbody tr:hover td { background: var(--brand-soft); }
table.data tr:last-child td { border-bottom: none; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.mono { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; }

/* ===================== FORMULARIOS ===================== */
.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 500; margin-bottom: 5px; font-size: 12.5px; color: var(--text-soft); }
.field input[type=text], .field input[type=email], .field input[type=password],
.field input[type=number], .field input[type=date], .field input[type=file], .field select, .field textarea {
    width: 100%; padding: 8px 11px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 13.5px; background: var(--surface); color: var(--text); transition: border .12s, box-shadow .12s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft);
}
.field input:disabled, .field select:disabled { background: var(--surface-2); color: var(--text-faint); cursor: not-allowed; }
.field textarea { resize: vertical; min-height: 64px; }
.field .hint { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 18px; }
@media (max-width: 680px){ .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Matriz de permisos */
.perm-table { width: 100%; border-collapse: collapse; }
.perm-table th, .perm-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); text-align: center; }
.perm-table thead th { background: var(--surface-2); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-soft); }
.perm-table th:first-child, .perm-table td:first-child { text-align: left; font-weight: 500; }
.perm-table input[type=checkbox] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--brand); }

/* ===================== BADGES (object status) ===================== */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 2px 9px; border-radius: 11px; font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.badge::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge--green { background: var(--positive-bg); color: var(--positive); }
.badge--gray  { background: var(--neutral-bg);  color: var(--neutral); }
.badge--blue  { background: var(--info-bg);     color: var(--info); }
.badge--amber { background: var(--critical-bg); color: var(--critical); }
.badge--red   { background: var(--negative-bg); color: var(--negative); }

/* ===================== ALERTAS (message strip) ===================== */
.alert { padding: 10px 15px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 500; font-size: 13px; display: flex; align-items: center; gap: 9px; border: 1px solid transparent; }
.alert::before { font-size: 14px; }
.alert--success { background: var(--positive-bg); color: #0a6b34; border-color: #b8dcc6; }
.alert--success::before { content: '✓'; }
.alert--error   { background: var(--negative-bg); color: #9a0000; border-color: #f0c0c0; }
.alert--error::before { content: '!'; font-weight: 700; }

/* ===================== LOGIN ===================== */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px;
    background: linear-gradient(135deg, #2f3a44 0%, #0095c8 100%); position: relative; overflow: hidden; }
.login-wrap::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,255,255,.06) 0, transparent 35%); }
.login-card { background: var(--surface); border-radius: 10px; padding: 36px 34px; width: 100%; max-width: 380px; box-shadow: var(--shadow-pop); position: relative; }
.login-card .brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; }
.login-card .mark { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(135deg, var(--brand), #3ec6e8); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 16px; }
.login-card h1 { font-size: 19px; } .login-card .brand-row .tag { font-size: 12px; color: var(--text-faint); }
.login-card .sub { color: var(--text-soft); margin-bottom: 22px; font-size: 13px; }
.login-card .btn { width: 100%; justify-content: center; padding: 10px; margin-top: 4px; }

/* ===================== MISC ===================== */
.muted { color: var(--text-soft); }
.toolbar { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar .spacer { flex: 1; }
.empty { text-align: center; padding: 46px 20px; color: var(--text-soft); }
.empty svg { width: 42px; height: 42px; opacity: .3; margin-bottom: 10px; }
.actions-cell { display: flex; gap: 5px; }
.crumb { font-size: 12px; color: var(--text-soft); margin-bottom: 12px; }
.crumb a { color: var(--text-soft); } .crumb a:hover { color: var(--brand); }
.inline-check { font-weight: 400 !important; display: flex; align-items: center; gap: 8px; color: var(--text) !important; font-size: 13.5px !important; }
.inline-check input { width: 16px; height: 16px; accent-color: var(--brand); }

/* Filtros (filter bar tipo Fiori) */
.filterbar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 16px; box-shadow: var(--shadow-1); }
.filterbar form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; margin: 0; }
.filterbar .field { margin: 0; }

/* Sub-tabs (icon tab bar) */
.tabbar { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.tabbar a { padding: 9px 16px; font-size: 13.5px; font-weight: 600; color: var(--text-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabbar a:hover { color: var(--brand); text-decoration: none; }
.tabbar a.active { color: var(--brand-dark); border-bottom-color: var(--brand); }

/* ===================== MODAL ===================== */
.modal-bg { position: fixed; inset: 0; background: rgba(53,74,95,.45); display: none; align-items: center; justify-content: center; z-index: 300; padding: 20px; backdrop-filter: blur(1px); }
.modal-bg.open { display: flex; }
.modal { background: var(--surface); border-radius: 8px; width: 100%; max-width: 540px; box-shadow: var(--shadow-pop); max-height: 90vh; overflow-y: auto; }
.modal__head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal__head h3 { font-size: 15.5px; }
.modal__body { padding: 20px; }
.modal__foot { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; gap: 9px; justify-content: flex-end; background: var(--surface-2); }
.modal__close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-soft); line-height: 1; }
.modal__close:hover { color: var(--text); }

/* ===================== COTIZACIÓN: líneas ===================== */
.lineas { width: 100%; border-collapse: collapse; }
.lineas thead th { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-soft); padding: 8px; text-align: left; border-bottom: 2px solid var(--border-strong); background: var(--surface-2); white-space: nowrap; }
.lineas td { padding: 5px 6px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.lineas input { width: 100%; padding: 7px 8px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); font-size: 13px; font-family: inherit; }
.lineas input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft); }
.lineas .col-cant { width: 84px; } .lineas .col-precio { width: 118px; } .lineas .col-desc-pct { width: 70px; } .lineas .col-total { width: 120px; } .lineas .col-acc { width: 40px; text-align: center; }
.lineas .cel-total { font-weight: 600; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; }
.btn-del-row { background: var(--negative-bg); color: var(--negative); border: none; border-radius: var(--radius-sm); width: 28px; height: 28px; cursor: pointer; font-size: 15px; line-height: 1; }
.btn-del-row:hover { background: var(--negative); color: #fff; }

.totales { margin-top: 16px; margin-left: auto; max-width: 340px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }
.totales .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13.5px; }
.totales .row span:last-child { font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
.totales .row.grand { border-top: 1px solid var(--border-strong); margin-top: 6px; padding-top: 11px; font-weight: 700; font-size: 18px; }
.totales .row.grand span { color: var(--brand-dark); }
.totales .row.desc span:last-child { color: var(--critical); }

/* ===================== DOCUMENTO (vista cotización) ===================== */
.doc { max-width: 820px; margin: 0 auto; background: #fff; padding: 36px; }
.doc__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid var(--brand); }
.doc__empresa h2 { font-size: 22px; color: var(--brand-dark); }
.doc__empresa p { font-size: 12.5px; color: var(--text-soft); margin-top: 3px; }
.doc__folio { text-align: right; }
.doc__folio .label { font-size: 11px; text-transform: uppercase; color: var(--text-faint); letter-spacing: .06em; }
.doc__folio .num { font-family: 'IBM Plex Mono', monospace; font-size: 20px; font-weight: 700; }
.doc__cliente { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 22px; font-size: 13px; }

@media (max-width: 760px){
    :root { --side-w: 0px; }
    .sidenav { display: none; }
    .main { margin-left: 0; }
}

/* ===================== MENÚ COLAPSABLE ===================== */
.shell__burger {
    background: none; border: none; cursor: pointer; color: var(--shell-text);
    width: 34px; height: 34px; border-radius: var(--radius-sm); display: grid; place-items: center;
    margin-right: 6px; transition: background .12s;
}
.shell__burger:hover { background: rgba(255,255,255,.12); }
.shell__burger svg { width: 20px; height: 20px; }

/* Estado colapsado: el sidebar se encoge a solo íconos */
body.nav-collapsed .sidenav { width: 60px; }
body.nav-collapsed .sidenav .sidenav__group { display: none; }
body.nav-collapsed .sidenav .nav-item { justify-content: center; padding: 11px 0; }
body.nav-collapsed .sidenav .nav-item span { display: none; }
body.nav-collapsed .main { margin-left: 60px; }
body.nav-collapsed .page-head { /* nada extra */ }
.sidenav { transition: width .18s ease; }
.main { transition: margin-left .18s ease; }

/* Tooltip al pasar el mouse cuando está colapsado */
body.nav-collapsed .nav-item { position: relative; }
body.nav-collapsed .nav-item:hover::after {
    content: attr(data-label); position: absolute; left: 64px; top: 50%; transform: translateY(-50%);
    background: var(--shell); color: #fff; padding: 5px 10px; border-radius: var(--radius-sm);
    font-size: 12.5px; white-space: nowrap; z-index: 300; box-shadow: var(--shadow-2);
}

/* ===================== BARRA DE INDICADORES (UF/UTM/Dólar) ===================== */
.indicadores {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.ind-card {
    flex: 1; min-width: 180px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-1); padding: 14px 18px; display: flex; align-items: center; gap: 14px;
    position: relative; overflow: hidden;
}
.ind-card::before { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--brand); }
.ind-card__icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-dark);
    display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: 0 0 auto;
}
.ind-card__body { flex: 1; min-width: 0; }
.ind-card__label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); font-weight: 600; }
.ind-card__value { font-size: 21px; font-weight: 700; color: var(--text); letter-spacing: -.01em; font-family: 'IBM Plex Sans'; }
.ind-card__date { font-size: 11px; color: var(--text-faint); margin-top: 1px; }
.ind-card--uf::before { background: #0095c8; }
.ind-card--utm::before { background: #00a78e; }
.ind-card--dolar::before { background: #4a7a3a; }
.indicadores__note { width: 100%; font-size: 11.5px; color: var(--text-faint); margin-top: -8px; margin-bottom: 14px; }
