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

:root {
  --bg0: #030614;
  --bg1: #060b22;
  --panel: rgba(13, 22, 51, 0.72);
  --panel-2: rgba(20, 32, 72, 0.55);
  --line: rgba(80, 130, 255, 0.18);
  --line-strong: rgba(120, 170, 255, 0.38);

  --ink: #f2f6ff;
  --ink-2: #9fb2d9;
  --ink-3: #5e6f99;

  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --blue-glow: rgba(59, 130, 246, 0.5);
  --green: #22c55e;
  --green-2: #4ade80;
  --gold: #f6c945;
  --silver: #cdd6e4;
  --bronze: #e8863a;
  --flame: #fbbf24;
  --danger: #f87171;
}

html { color-scheme: dark; }

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1000px 520px at 12% -8%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(29, 78, 216, 0.16), transparent 50%),
    radial-gradient(800px 500px at 85% 100%, rgba(30, 64, 175, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #04081c);
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(120, 170, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(1000px 700px at 50% 0%, #000 25%, transparent 80%);
}

code { background: var(--panel-2); padding: 2px 6px; border-radius: 6px; font-size: 0.92em; }
.muted { color: var(--ink-2); }
.error { color: var(--danger); margin-bottom: 12px; font-size: 14px; }

.frame { max-width: 1560px; margin: 0 auto; padding: 18px 26px 14px; }

.panel {
  background: linear-gradient(180deg, rgba(30, 48, 105, 0.35), rgba(10, 17, 42, 0.55));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(150, 190, 255, 0.08), 0 14px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

/* ============================= login / seletor ========================== */
.center-page { display: flex; align-items: center; justify-content: center; padding: 24px; min-height: 100vh; }
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(30, 48, 105, 0.4), rgba(10, 17, 42, 0.7));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.15), 0 30px 80px rgba(0, 0, 0, 0.55);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
}
.card h1 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 4px; }
.card p { margin-bottom: 8px; color: var(--ink-2); font-size: 14px; }
.card form { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.card label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.card input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25); }
.picker { display: flex; gap: 12px; margin-top: 8px; }
.picker .btn { flex: 1; }

/* ---- login redesenhado ---- */
.login-card { max-width: 420px; text-align: center; padding: 44px 40px 32px; }
.login-logo {
  width: 96px; height: 96px;
  border-radius: 24px;
  margin: -76px auto 14px;
  display: block;
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.55), 0 14px 34px rgba(0, 0, 0, 0.6);
  animation: logofloat 5s ease-in-out infinite;
}
@keyframes logofloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.login-brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 30%, #b9c8e8 75%, #8fa6d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.login-account {
  display: inline-block;
  margin: 8px 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-2);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 16px;
}
.muted.center { text-align: center; }
.login-card form { text-align: left; }
.login-card .error {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 10px;
  padding: 9px 12px;
  margin: 10px 0 0;
}
.field { position: relative; display: block; }
.field .f-ico {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.7;
  pointer-events: none;
}
.field input { width: 100%; padding-left: 40px; }
.field .peek {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ink-3);
  font-size: 15px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.field .peek:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.login-card .btn { width: 100%; padding: 13px 18px; font-size: 15px; margin-top: 4px; }
.login-card .btn:disabled { opacity: 0.7; cursor: wait; }
.login-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
}
.shake { animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(7px); }
  75% { transform: translateX(-4px); }
}

/* ---- seletor de contas ---- */
.acc-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.acc-card {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
  text-align: left;
}
.acc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
  transform: translateY(-1px);
}
.acc-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), #2563eb);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.4);
}
.acc-info { display: flex; flex-direction: column; line-height: 1.25; }
.acc-info b { font-size: 16px; }
.acc-info small { color: var(--ink-3); font-size: 12px; }
.acc-go { margin-left: auto; font-size: 18px; color: var(--blue-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--blue-2), #2563eb);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s, filter 0.15s, box-shadow 0.15s;
}
.btn:hover { filter: brightness(1.1); box-shadow: 0 6px 24px var(--blue-glow); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: var(--panel-2); border: 1px solid var(--line); color: var(--ink-2); font-weight: 600; }
.btn.ghost:hover { color: var(--ink); border-color: var(--line-strong); box-shadow: none; }

/* =============================== cabeçalho ============================== */
header.top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 6px 4px 16px;
  flex-wrap: wrap;
}

.trophy-art {
  width: 104px; height: 104px;
  border-radius: 24px;
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand h1 {
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 30%, #b9c8e8 70%, #8fa6d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.6));
  line-height: 1.05;
}
.brand .subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-2);
  letter-spacing: 0.01em;
}
.brand .tagline {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: #dbe6ff;
}
.spacer { flex: 1; }

.head-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.chips-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 12px;
  font-variant-numeric: tabular-nums;
}
.chip .ico { font-size: 13px; }
.account-chip { color: var(--blue-2); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }
.chip.conn { border-radius: 999px; color: var(--ink-2); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); }
.dot.on { background: var(--green); box-shadow: 0 0 8px var(--green); }
.mini {
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.mini:hover { color: var(--ink); border-color: var(--line-strong); }

.kpi-cards { display: flex; gap: 12px; }
.kpi {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 48, 105, 0.5), rgba(10, 17, 42, 0.6));
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(150, 190, 255, 0.1);
  min-width: 230px;
}
.kpi-ico { font-size: 26px; filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6)); }
.kpi-ico.flame { filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.7)); }
.kpi-txt { display: flex; flex-direction: column; line-height: 1.15; }
.kpi-label { font-size: 12px; font-weight: 700; }
.kpi-value { font-size: 13px; color: var(--ink-2); }
.kpi-value b { font-size: 22px; color: var(--ink); font-weight: 800; margin-right: 4px; font-variant-numeric: tabular-nums; }
.kpi-sub { font-size: 11px; color: var(--ink-2); }

.ring { width: 58px; height: 58px; transform: rotate(-90deg); margin-left: 6px; }
.ring-bg { fill: none; stroke: rgba(80, 130, 255, 0.18); stroke-width: 7; }
.ring-fg {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 150.8; /* 2πr, r=24 */
  stroke-dashoffset: 150.8;
  filter: drop-shadow(0 0 6px var(--blue-glow));
  transition: stroke-dashoffset 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.ring-label {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translate(50%, -50%);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.legend { display: flex; gap: 18px; font-size: 12px; font-weight: 600; color: var(--ink); }
.legend span { display: inline-flex; align-items: center; gap: 7px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; }
.dot-blue, .dot-green { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-blue { background: var(--blue-2); box-shadow: 0 0 8px var(--blue-glow); }
.dot-green { background: var(--green); box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }

/* ================================ layout ================================ */
main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}

/* ============================= tabela/placar ============================ */
.board { padding: 10px 14px 14px; }

.board-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 4px;
}
.month-nav { display: flex; align-items: center; gap: 6px; }
.month-nav .mini:disabled { opacity: 0.3; cursor: default; }
#month-label {
  min-width: 150px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  text-transform: capitalize;
  font-variant-numeric: tabular-nums;
}
.mode-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  color: #06240f;
  background: var(--green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}
.mode-badge.hist {
  color: #241a02;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(246, 201, 69, 0.4);
}
#month-now { font-size: 11px; }

.thead {
  display: grid;
  grid-template-columns: 74px 210px minmax(0, 1fr) 92px 118px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.th-axis { position: relative; height: 18px; }
.th-axis .tick {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-variant-numeric: tabular-nums;
}
.th-meta { text-align: right; white-space: nowrap; }
.th-meta b { color: var(--gold); }

ul.rows { list-style: none; display: flex; flex-direction: column; gap: 9px; padding-top: 10px; }

.row {
  display: grid;
  grid-template-columns: 74px 210px minmax(0, 1fr) 92px 118px;
  gap: 12px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(30, 48, 105, 0.35), rgba(10, 17, 42, 0.4));
  will-change: transform;
  transition: border-color 0.2s;
}
.row.zero { opacity: 0.45; }
.row.bump { animation: bump 1s ease; }
@keyframes bump {
  0% { background: rgba(59, 130, 246, 0.25); }
  100% { background: linear-gradient(90deg, rgba(30, 48, 105, 0.35), rgba(10, 17, 42, 0.4)); }
}

.row.r1 { border-color: var(--gold); box-shadow: 0 0 22px rgba(246, 201, 69, 0.28), inset 0 0 18px rgba(246, 201, 69, 0.07); }
.row.r2 { border-color: var(--silver); box-shadow: 0 0 18px rgba(205, 214, 228, 0.2), inset 0 0 16px rgba(205, 214, 228, 0.05); }
.row.r3 { border-color: var(--bronze); box-shadow: 0 0 18px rgba(232, 134, 58, 0.25), inset 0 0 16px rgba(232, 134, 58, 0.06); }

.pos { display: flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; }
.pos .crown { font-size: 15px; }
.row.r2 .crown { filter: grayscale(1) brightness(1.5); }
.row.r3 .crown { filter: sepia(1) saturate(3) hue-rotate(-18deg); }

.who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35), inset 0 -3px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.who .name { font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.bars { position: relative; display: flex; flex-direction: column; gap: 7px; padding: 3px 0; }
.bars .grid-line {
  position: absolute; top: -6px; bottom: -6px;
  width: 1px;
  background: rgba(120, 170, 255, 0.12);
}
.bar { position: relative; height: 12px; }
.bar i {
  position: absolute; inset: 0 auto 0 0;
  border-radius: 999px;
  min-width: 4px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar.agendadas i {
  background: linear-gradient(180deg, var(--blue-2), #2563eb);
  box-shadow: 0 0 10px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.bar.realizadas i {
  background: linear-gradient(180deg, var(--green-2), #16a34a);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.bar .val {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.bar.agendadas .val { color: #cfe2ff; }
.bar.realizadas .val { color: #b8f4ce; }
.bar .rocket { position: absolute; top: 50%; transform: translateY(-50%); margin-left: 28px; font-size: 14px; }

.nums { text-align: right; line-height: 1.3; font-variant-numeric: tabular-nums; white-space: nowrap; }
.nums .a { color: var(--blue-2); font-weight: 800; font-size: 13px; }
.nums .r { color: var(--green-2); font-weight: 800; font-size: 13px; }
.nums small { color: var(--ink-3); font-weight: 600; font-size: 10px; }

.streak {
  display: flex; align-items: center; gap: 6px;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 700;
  color: var(--flame);
  line-height: 1.1;
  text-align: left;
}
.streak .fire { font-size: 14px; filter: drop-shadow(0 0 6px rgba(251, 146, 60, 0.7)); }
.streak.off { color: var(--ink-3); }
.streak.off .fire { filter: grayscale(1) opacity(0.4); }
.streak b { display: block; }
.streak small { display: block; font-weight: 600; font-size: 10px; }

.empty { color: var(--ink-2); padding: 36px 20px; text-align: center; font-size: 14px; }

/* ================================ sidebar =============================== */
.side { display: flex; flex-direction: column; gap: 16px; }
.side-card { padding: 20px; }

.bora { display: flex; align-items: center; gap: 16px; }
.bora .rocket {
  font-size: 44px;
  filter: drop-shadow(0 0 16px rgba(96, 165, 250, 0.8));
  transform: rotate(-20deg);
}
.bora-title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.bora-sub { font-size: 13px; font-style: italic; font-weight: 600; color: var(--blue-2); line-height: 1.25; }

.resume-head { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.resume-head .ico { color: var(--blue-2); }
.resume-row {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
}
.resume-row b { margin-left: auto; font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; }
.resume-row b.green { color: var(--green-2); }
.resume-row b.blue { color: var(--blue-2); }

.podium-card { text-align: center; }
.podium-art { position: relative; padding-top: 6px; }
.pod-trophy {
  font-size: 40px;
  filter: drop-shadow(0 0 18px rgba(246, 201, 69, 0.75));
  margin-bottom: -6px;
}
.pod-steps { display: flex; align-items: flex-end; justify-content: center; gap: 4px; }
.pod {
  width: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  border-radius: 6px 6px 0 0;
  color: #0a1128;
}
.pod.p1 { height: 62px; background: linear-gradient(180deg, #ffe08a, var(--gold)); box-shadow: 0 0 22px rgba(246, 201, 69, 0.45); }
.pod.p2 { height: 44px; background: linear-gradient(180deg, #e6ecf6, #aab7cc); }
.pod.p3 { height: 34px; background: linear-gradient(180deg, #f3a45f, #cf6f28); }
.quote { margin-top: 14px; font-size: 13px; color: var(--ink); line-height: 1.4; }
.quote b { color: var(--blue-2); }

/* ================================ rodapé ================================ */
.foot { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 0 10px; }
.foot-credit { font-size: 11px; color: var(--ink-3); }
.foot-credit a { color: var(--blue-2); font-weight: 700; text-decoration: none; }
.foot-credit a:hover { text-decoration: underline; text-shadow: 0 0 12px var(--blue-glow); }
.foot-chips {
  display: flex; align-items: center; gap: 0;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px;
  font-size: 12px;
  font-weight: 700;
}
.foot-chips span { padding: 2px 16px; border-left: 1px solid var(--line); color: var(--ink); }
.foot-chips span:first-child { border-left: none; }
.foot-chips .foot-main { color: var(--gold); }

/* =============================== alerta ================================= */
#alert-overlay {
  position: fixed; inset: 0;
  background: rgba(2, 4, 12, 0.84);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 50;
}
#alert-overlay.show { display: flex; }
.alert-box {
  position: relative;
  background: linear-gradient(180deg, #0c1430, #070d22);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 44px 52px 40px;
  text-align: center;
  max-width: 560px;
  width: calc(100% - 32px);
  animation: alertpulse 1.6s ease-in-out infinite;
}
@keyframes alertpulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.3), 0 0 70px rgba(59, 130, 246, 0.2), 0 40px 90px rgba(0, 0, 0, 0.6); }
  50% { box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.55), 0 0 130px rgba(59, 130, 246, 0.4), 0 40px 90px rgba(0, 0, 0, 0.6); }
}
.alert-box .kicker {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue-2);
}
.alert-box h2 { font-size: 26px; letter-spacing: -0.02em; margin: 8px 0 20px; }
.alert-box .alert-avatar { margin: 0 auto 12px; width: 72px; height: 72px; font-size: 24px; }
.alert-box .lead { font-size: 19px; font-weight: 700; }
.alert-box .broker { color: var(--ink-2); font-size: 13px; margin: 4px 0 6px; }
.alert-box .tally { color: var(--gold); font-weight: 700; font-size: 13px; margin-bottom: 24px; }
.alert-box .btn { min-width: 170px; }

/* ============================== responsivo ============================== */
@media (max-width: 1180px) {
  main { grid-template-columns: 1fr; }
  .side { flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1; min-width: 240px; }
}
@media (max-width: 860px) {
  .brand h1 { font-size: 30px; }
  .brand .subtitle { font-size: 17px; }
  .trophy-art { width: 76px; height: 76px; font-size: 44px; }
  .thead { display: none; }
  .row { grid-template-columns: 48px minmax(0, 1fr) 80px; }
  .who { grid-column: 2; }
  .bars { grid-column: 1 / -1; grid-row: 2; }
  .nums { grid-column: 3; }
  .streak { display: none; }
  .head-right { align-items: stretch; }
  .kpi-cards { flex-wrap: wrap; }
  .alert-box { padding: 32px 22px 28px; }
}
