/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --brand:      #FCA311;
  --brand-dk:   #e09200;
  --brand-bg:   rgba(252,163,17,.12);
  --brand-glow: rgba(252,163,17,.25);

  --green:      #22c55e;  --green-bg:  rgba(34,197,94,.1);
  --red:        #ef4444;  --red-bg:    rgba(239,68,68,.1);
  --blue:       #3b82f6;  --blue-bg:   rgba(59,130,246,.1);
  --purple:     #a855f7;  --purple-bg: rgba(168,85,247,.1);
  --amber:      #f59e0b;  --amber-bg:  rgba(245,158,11,.1);

  --bg:       #0b0e18;
  --bg2:      #0f1220;
  --surface:  #151929;
  --surface2: #1c2138;
  --surface3: #232840;
  --border:   #252c47;
  --border2:  #1e243c;
  --text:     #eceef5;
  --text2:    #8b93b0;
  --text3:    #454e6e;

  --radius: 16px;  --radius-sm: 12px;  --radius-xs: 8px;
  --shadow:       0 2px 16px rgba(0,0,0,.45);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.6);
  --shadow-brand: 0 4px 20px rgba(252,163,17,.25);
  --nav-h: 68px;
  --max-w: 520px;
}
[data-theme="light"] {
  --bg: #f2f4fb; --bg2: #eaecf5;
  --surface: #fff; --surface2: #f5f6fc; --surface3: #eceef8;
  --border: #dde0f0; --border2: #e8eaf5;
  --text: #0f1523; --text2: #4b5578; --text3: #9aa0bc;
  --shadow: 0 2px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; overflow: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: transparent; }
textarea { resize: vertical; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.screen { display: none; flex-direction: column; height: 100vh; overflow: hidden; background: var(--bg); }
.screen.active { display: flex; }
.screen-body {
  flex: 1; overflow-y: auto;
  padding: 16px 16px calc(var(--nav-h) + 20px);
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  align-self: stretch;
}

/* ═══════════════════════════════════════
   LOGIN
═══════════════════════════════════════ */
.login-wrap {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 100vh; padding: 28px 20px;
  background: var(--bg);
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(252,163,17,.08) 0%, transparent 70%);
}
.login-wrap.active { display: flex; }
.login-logo { text-align: center; margin-bottom: 40px; }
.login-logo-text { font-family: 'Syne', sans-serif; font-size: 2.6rem; font-weight: 800; letter-spacing: -2px; }
.login-logo-text span { color: var(--brand); }
.login-tagline { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 3px; margin-top: 8px; }
.login-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.login-title { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.login-sub { font-size: 12px; color: var(--text3); margin-bottom: 28px; }
.login-field { margin-bottom: 16px; }
.login-field label { display: block; font-size: 11px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.login-field input { width: 100%; background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 14px; color: var(--text); font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
.login-field input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-bg); }
.login-btn { display: block; width: 100%; background: var(--brand); color: #000; border: none; border-radius: var(--radius-sm); padding: 14px; font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; margin-top: 8px; transition: all .15s; box-shadow: var(--shadow-brand); }
.login-btn:hover { background: var(--brand-dk); }
.login-btn:active { transform: scale(.98); }
.login-loading, .login-error { font-size: 12px; text-align: center; margin-top: 12px; display: none; }
.login-loading { color: var(--text3); } .login-error { color: var(--red); }
.login-divider { height: 1px; background: var(--border); margin: 20px 0; }
.login-footer { font-size: 11px; color: var(--text3); text-align: center; line-height: 1.7; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
  padding: 16px 20px 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.logo { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--brand); }
.h-row { display: flex; align-items: center; justify-content: space-between; }
.h-title { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; }
.h-sub { font-size: 12px; color: var(--text3); margin-top: 2px; }
.h-greeting { font-size: 17px; font-weight: 700; }
.h-time { font-family: 'DM Mono', monospace; font-size: 1.4rem; font-weight: 500; color: var(--brand); letter-spacing: -1px; }

.loja-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--surface2); border: 1px solid var(--border); border-radius: 50px; padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--text2); cursor: pointer; margin-top: 12px; transition: all .2s; }
.loja-pill:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-bg); }
.store-dropdown { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-top: 8px; box-shadow: var(--shadow-lg); }
.store-option { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--border2); cursor: pointer; transition: background .15s; }
.store-option:last-child { border-bottom: none; }
.store-option:hover { background: var(--surface2); }
.store-option.active { background: var(--brand-bg); color: var(--brand); font-weight: 600; }

.theme-btn { display: flex; align-items: center; gap: 6px; background: var(--surface2); border: 1px solid var(--border); border-radius: 50px; padding: 6px 12px; font-size: 11px; font-weight: 700; color: var(--text2); }
.tog-track { width: 30px; height: 16px; background: var(--border); border-radius: 16px; position: relative; transition: background .25s; }
.tog-track.on { background: var(--brand); }
.tog-thumb { width: 12px; height: 12px; background: #fff; border-radius: 50%; position: absolute; top: 2px; left: 2px; transition: left .25s; }
.tog-track.on .tog-thumb { left: 16px; }

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; box-shadow: var(--shadow); }
.card:last-child { margin-bottom: 0; }
.ct { font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); margin: 18px 0 8px; }

.metrics { display: grid; gap: 10px; }
.m2 { grid-template-columns: 1fr 1fr; }
.m4 { grid-template-columns: repeat(4, 1fr); }
.metric { background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; }
.metric-n { font-family: 'DM Mono', monospace; font-size: 1.15rem; font-weight: 700; line-height: 1.1; margin-bottom: 5px; }
.metric-l { font-size: 9.5px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }

.pbar { height: 6px; background: var(--surface3); border-radius: 3px; overflow: hidden; }
.pfill { height: 100%; border-radius: 3px; transition: width .5s cubic-bezier(.4,0,.2,1); }
.meta-bar-wrap { margin: 10px 0; }
.meta-lbl { display: flex; justify-content: space-between; font-size: 11px; color: var(--text3); margin-bottom: 6px; }
.meta-bar { height: 8px; background: var(--surface3); border-radius: 4px; overflow: hidden; }
.meta-fill { height: 100%; border-radius: 4px; transition: width .5s cubic-bezier(.4,0,.2,1); }

/* ═══════════════════════════════════════
   RES CARDS (dashboard)
═══════════════════════════════════════ */
.res-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; box-shadow: var(--shadow); transition: border-color .2s; }
.res-card:hover { border-color: var(--border); }
.res-card-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid var(--border2); cursor: pointer; transition: background .15s; }
.res-card-head:hover { background: var(--surface2); }
.res-card-title { font-size: 13px; font-weight: 700; }
.res-card-body { padding: 13px 16px; }

/* ═══════════════════════════════════════
   FORMS
═══════════════════════════════════════ */
.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-size: 11px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 13px; color: var(--text); font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-bg); }
.field textarea { min-height: 76px; }
.field select option { background: var(--surface); color: var(--text); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn { display: block; width: 100%; padding: 13px; border-radius: var(--radius-sm); font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 700; letter-spacing: .3px; transition: all .15s; text-align: center; }
.btn:active { transform: scale(.98); }
.btn-p { background: var(--brand); color: #000; box-shadow: 0 2px 12px rgba(252,163,17,.3); }
.btn-p:hover { background: var(--brand-dk); }
.btn-o { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-o:hover { background: var(--brand-bg); }
.btn-ghost { background: var(--surface2); color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-danger { background: var(--red-bg); color: var(--red); border: 1px solid var(--red); }
.btn-sm { padding: 7px 13px; font-size: .78rem; width: auto; }

/* ═══════════════════════════════════════
   BADGES & INFO BOXES
═══════════════════════════════════════ */
.badge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 50px; font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.b-green  { background: var(--green-bg);  color: var(--green);  }
.b-red    { background: var(--red-bg);    color: var(--red);    }
.b-brand  { background: var(--brand-bg);  color: var(--brand);  }
.b-neutral{ background: var(--surface2);  color: var(--text2);  border: 1px solid var(--border); }

.ibox { border-radius: var(--radius-sm); padding: 11px 13px; font-size: 12px; line-height: 1.55; margin-bottom: 12px; }
.ibox-blue   { background: var(--blue-bg);   border: 1px solid rgba(59,130,246,.2);  color: var(--blue);   }
.ibox-amber  { background: var(--amber-bg);  border: 1px solid rgba(245,158,11,.2);  color: var(--amber);  }
.ibox-green  { background: var(--green-bg);  border: 1px solid rgba(34,197,94,.2);   color: var(--green);  }
.ibox-red    { background: var(--red-bg);    border: 1px solid rgba(239,68,68,.2);   color: var(--red);    }

/* ═══════════════════════════════════════
   CHECKLIST / RING
═══════════════════════════════════════ */
.ci { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border2); cursor: pointer; user-select: none; transition: opacity .2s; }
.ci:last-child { border-bottom: none; }
.ci.done { opacity: .5; }
.ci.done .ci-label { text-decoration: line-through; color: var(--text3); }
.cb { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; background: var(--surface2); }
.ci.done .cb { background: var(--brand); border-color: var(--brand); }
.ci.done .cb::after { content: '✓'; font-size: 12px; color: #000; font-weight: 800; }
.ci-label { font-size: 13px; flex: 1; }

.ring-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.ring { width: 68px; height: 68px; flex-shrink: 0; }
.ring-svg { transform: rotate(-90deg); }
.ring-bg   { fill: none; stroke: var(--border); stroke-width: 6; }
.ring-fill { fill: none; stroke: var(--brand); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset .6s cubic-bezier(.4,0,.2,1); }
.ring-text { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 700; fill: var(--brand); dominant-baseline: middle; text-anchor: middle; }
.ring-info { flex: 1; }
.ring-pct  { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.ring-lbl  { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ═══════════════════════════════════════
   PRODUCT ROW
═══════════════════════════════════════ */
.prod-row { background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 8px; }
.prod-row-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.prod-name { font-weight: 700; font-size: 13px; }
.prod-sku  { font-size: 10px; color: var(--text3); font-family: 'DM Mono', monospace; margin-top: 2px; }
.prod-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prod-input-wrap label { font-size: 10px; color: var(--text3); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .8px; }
.prod-input-wrap input { width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-xs); padding: 8px 10px; color: var(--text); font-family: 'DM Mono', monospace; font-size: 14px; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.prod-input-wrap input:focus { border-color: var(--brand); }
.stock-status { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 11px; }

/* ═══════════════════════════════════════
   GOAL / OP / AV CARDS
═══════════════════════════════════════ */
.goal-card { background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius); padding: 16px; margin-bottom: 10px; }
.goal-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.goal-name   { font-weight: 700; font-size: 14px; }
.goal-period { font-size: 11px; color: var(--text3); }
.goal-numbers { display: flex; gap: 8px; margin-bottom: 10px; }
.goal-num   { flex: 1; text-align: center; background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 10px; }
.goal-num-v { font-family: 'DM Mono', monospace; font-size: 14px; font-weight: 700; }
.goal-num-l { font-size: 10px; color: var(--text3); margin-top: 3px; }

.op-card { background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 13px; margin-bottom: 8px; }
.op-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.op-tipo { font-size: 12px; font-weight: 700; }
.op-desc { font-size: 12px; color: var(--text2); line-height: 1.5; }
.op-meta { font-size: 10px; color: var(--text3); margin-top: 6px; }

#av-prev img { width: 100%; max-height: 200px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.av-card { background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 13px; margin-bottom: 8px; }
.av-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.av-produto { font-size: 13px; font-weight: 700; }
.av-tipo    { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ═══════════════════════════════════════
   CONFIG ITEMS
═══════════════════════════════════════ */
.loja-item { background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 11px 13px; margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; }
.loja-item-info { flex: 1; }
.loja-item-name { font-size: 13px; font-weight: 600; }
.loja-item-meta { font-size: 11px; color: var(--text3); margin-top: 2px; }
.btn-del { width: 28px; height: 28px; border-radius: var(--radius-xs); background: var(--red-bg); color: var(--red); border: 1px solid var(--red); font-size: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.conc-row { background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 13px; margin-bottom: 8px; }
.conc-produto { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.conc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ═══════════════════════════════════════
   BOTTOM NAV
═══════════════════════════════════════ */
.nav { position: fixed; bottom: 0; left: 0; right: 0; height: var(--nav-h); background: var(--surface); border-top: 1px solid var(--border2); display: none; align-items: stretch; z-index: 200; box-shadow: 0 -8px 32px rgba(0,0,0,.35); }
.nav.visible { display: flex; }
.ni { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 4px 2px; color: var(--text3); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; border-right: 1px solid var(--border2); transition: color .15s, background .15s; position: relative; }
.ni:last-child { border-right: none; }
.ni.active { color: var(--brand); background: linear-gradient(180deg, var(--brand-bg) 0%, transparent 100%); }
.ni.active::after { content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px; background: var(--brand); border-radius: 3px 3px 0 0; box-shadow: 0 0 8px var(--brand-glow); }
.ni-icon { font-size: 18px; line-height: 1; }

/* ═══════════════════════════════════════
   TOAST / LOADING / ALERTS
═══════════════════════════════════════ */
#toast { position: fixed; bottom: calc(var(--nav-h) + 16px); left: 50%; transform: translateX(-50%) translateY(12px); background: var(--text); color: var(--bg); padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; opacity: 0; transition: all .25s; z-index: 9999; white-space: nowrap; box-shadow: var(--shadow-lg); pointer-events: none; }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

#overlay-loading { position: fixed; inset: 0; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9998; gap: 16px; }
.spin { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--brand); border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.alert-banner { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-radius: var(--radius-sm); padding: 11px 14px; margin-bottom: 12px; }
.alert-banner.amber { background: var(--amber-bg); border: 1.5px solid var(--amber); }
.alert-banner.green { background: var(--green-bg); border: 1.5px solid var(--green); }
@keyframes pulse-bdr { 0%,100% { box-shadow: 0 0 0 0 rgba(252,163,17,0); } 50% { box-shadow: 0 0 0 5px rgba(252,163,17,.15); } }
.pulse { animation: pulse-bdr 2.5s infinite; }

.supa-notice { background: var(--purple-bg); border: 1px solid rgba(168,85,247,.25); border-radius: var(--radius-sm); padding: 11px 13px; font-size: 12px; color: var(--purple); margin-bottom: 14px; line-height: 1.55; }

/* ═══════════════════════════════════════
   RANKING / GAMIFICAÇÃO
═══════════════════════════════════════ */
.rank-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border2); transition: background .15s; }
.rank-item:last-child { border-bottom: none; }
.rank-item.me { background: var(--brand-bg); }
.rank-item:hover { background: var(--surface2); }
.rank-pos { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 700; width: 26px; text-align: center; flex-shrink: 0; color: var(--text3); }
.rank-pos.gold { color: #FFD700; } .rank-pos.silver { color: #C0C0C0; } .rank-pos.bronze { color: #CD7F32; }
.rank-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; border: 2px solid var(--border); }
.rank-avatar.gold   { border-color: #FFD700; background: rgba(255,215,0,.1); }
.rank-avatar.silver { border-color: #C0C0C0; background: rgba(192,192,192,.1); }
.rank-avatar.bronze { border-color: #CD7F32; background: rgba(205,127,50,.1); }
.rank-info { flex: 1; min-width: 0; }
.rank-nome   { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-detalhe{ font-size: 10px; color: var(--text3); margin-top: 2px; }
.rank-pts    { font-family: 'DM Mono', monospace; font-size: 14px; font-weight: 700; color: var(--brand); text-align: right; flex-shrink: 0; }
.rank-pts-lbl{ font-size: 9px; color: var(--text3); text-align: right; }

.conquista { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 12px 6px; border-radius: var(--radius-sm); border: 1px solid var(--border2); background: var(--surface2); text-align: center; transition: all .2s; }
.conquista.unlocked { border-color: var(--brand); background: var(--brand-bg); box-shadow: 0 0 12px var(--brand-glow); }
.conquista.locked { opacity: .35; filter: grayscale(1); }
.conquista-icon { font-size: 24px; line-height: 1; }
.conquista-nome { font-size: 9px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; }

.pts-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid var(--border2); }
.pts-row:last-child { border-bottom: none; }
.pts-acao { font-size: 12px; color: var(--text2); }
.pts-val  { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 700; color: var(--green); }

.hist-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border2); }
.hist-item:last-child { border-bottom: none; }
.hist-dot  { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.hist-acao { font-size: 12px; flex: 1; }
.hist-pts  { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 700; }
