:root {
  --bg: #eef3f6;
  --surface: #ffffff;
  --text: #17202a;
  --muted: #607080;
  --line: #d8e0e8;
  --brand: #005a8d;
  --brand-strong: #003f64;
  --accent: #2f8f5b;
  --info: #346bb4;
  --warn: #b7791f;
  --danger: #a33a3a;
  --soft-blue: #e7f0f7;
  --soft-green: #e8f5ee;
  --soft-red: #f9eaea;
  --soft-warn: #fff7e6;
  --shadow: 0 14px 38px rgba(20, 42, 64, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: var(--brand); text-decoration: none; }
.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(20, 42, 64, 0.04);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand-strong);
}
.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 176px;
  object-fit: contain;
}
.brand-product {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--brand-strong);
  font-size: 1rem;
}
.topbar nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.inline-form { display: inline; }
button, input, textarea, select { font: inherit; }
.inline-form button {
  background: transparent;
  color: var(--brand);
  border: 0;
  cursor: pointer;
  padding: 0;
}
.page { width: min(1220px, calc(100% - 32px)); margin: 28px auto 56px; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}
h1, h2, h3 { margin: 0 0 8px; letter-spacing: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.05rem; }
p { margin: 0 0 12px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card, .panel, .auth-box, .metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.card { padding: 18px; }
.card.flat { margin-bottom: 12px; }
.panel, .auth-box {
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.readable { max-width: 820px; }
.row { display: flex; gap: 12px; align-items: center; }
.between { justify-content: space-between; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: var(--surface);
  cursor: pointer;
  font-weight: 600;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--brand); color: white; box-shadow: 0 10px 24px rgba(0, 90, 141, 0.18); }
.button.danger {
  border-color: var(--danger);
  color: var(--danger);
  background: #fff;
}
.button.danger:hover {
  background: var(--soft-red);
}
.badge, .status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e9f2f7;
  color: var(--brand-strong);
  font-size: 0.9rem;
}

.workspace-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #eef7fb 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.workspace-head.public-hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,245,238,0.88)),
    linear-gradient(45deg, #e8f2f8, #f7fbfd);
}
.how-hero {
  position: relative;
  overflow: hidden;
}
.how-hero > * {
  position: relative;
  z-index: 1;
}
.how-hero::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 220px;
  height: 74px;
  border: 1px solid rgba(0, 90, 141, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 90, 141, 0.10) 0 18%, transparent 18% 100%),
    linear-gradient(#dce9f1 0 0) 18px 18px / 74% 8px no-repeat,
    linear-gradient(#e7f0f7 0 0) 18px 40px / 58% 8px no-repeat,
    rgba(255,255,255,0.44);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.workspace-head p { max-width: 680px; color: var(--muted); }
.eyebrow {
  margin-bottom: 8px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.head-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.kpi {
  min-height: 126px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.kpi::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px auto;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.22;
}
.kpi span { display: block; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.kpi strong { display: block; font-size: 2rem; line-height: 1; color: var(--text); }
.kpi small { display: block; color: var(--muted); margin-top: 8px; }
.kpi.ok { color: var(--accent); background: var(--soft-green); }
.kpi.info { color: var(--info); background: var(--soft-blue); }
.kpi.warn { color: var(--warn); background: var(--soft-warn); }
.kpi.danger { color: var(--danger); background: var(--soft-red); }
.public-summary-kpis {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.public-summary-kpis .kpi {
  min-height: 86px;
  padding: 12px 14px;
  box-shadow: none;
}
.public-summary-kpis .kpi::after {
  width: 34px;
  height: 4px;
  right: 12px;
  bottom: 10px;
  opacity: 0.22;
}
.public-summary-kpis .kpi span {
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.public-summary-kpis .kpi strong {
  font-size: 1.45rem;
  line-height: 1.05;
}
.public-summary-kpis .kpi small {
  margin-top: 5px;
  font-size: 0.82rem;
}
.public-summary-kpis .summary-prize {
  background: var(--surface);
  color: var(--muted);
}
.public-summary-kpis .summary-prize strong {
  font-size: 1.2rem;
  color: var(--text);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: start;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ops-column {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 14px;
}
.panel-title p { color: var(--muted); margin: 0; }
.flow-list, .status-board, .bolao-list {
  display: grid;
  gap: 12px;
}
.flow-item, .task-line, .bolao-row {
  display: grid;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.flow-item {
  grid-template-columns: auto 1fr auto;
  color: var(--text);
}
.flow-item small, .task-line small, .bolao-row p {
  display: block;
  color: var(--muted);
  margin: 0;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--muted);
}
.status-dot.active { background: var(--accent); box-shadow: 0 0 0 5px rgba(47, 143, 91, 0.12); }
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #f7fafc;
  border: 1px solid var(--line);
}
.task-line {
  color: var(--text);
  margin-top: 10px;
}
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2f5;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.tag.active, .tag.info { background: var(--soft-blue); color: var(--brand-strong); }
.tag.warn { background: var(--soft-warn); color: var(--warn); }
.tag.danger { background: var(--soft-red); color: var(--danger); }

.how-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.how-step {
  min-height: 192px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.how-step::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 6px;
  border-radius: 999px;
  background: #d9e7ef;
}
.how-step:nth-child(2)::after { background: #dcebdd; }
.how-step:nth-child(3)::after { background: #fff0c7; }
.how-step:nth-child(4)::after { background: #e4eaf3; }
.how-step:nth-child(5)::after { background: #d7eee3; }
.how-step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
}
.how-step h2 { font-size: 1.05rem; }
.how-step p { color: var(--muted); margin-bottom: 20px; }
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.how-confirmation {
  padding: 4px 0;
}
.confirmation-map {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.confirmation-card {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.confirmation-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.confirmation-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.05;
}
.confirmation-card small {
  display: block;
  color: var(--muted);
  margin-top: 12px;
}
.confirmation-card.strong {
  background: var(--soft-green);
  border-color: rgba(47, 143, 91, 0.28);
}
.how-rule-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.how-rule-card .facts {
  margin-bottom: 0;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.role-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.role-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: var(--soft-blue);
  border: 1px solid #c9dce9;
  position: relative;
}
.role-icon::before,
.role-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
}
.role-icon.participant { color: var(--brand); }
.role-icon.participant::before {
  width: 12px;
  height: 12px;
  top: 8px;
  left: 13px;
}
.role-icon.participant::after {
  width: 20px;
  height: 10px;
  left: 9px;
  bottom: 8px;
}
.role-icon.operator {
  color: var(--warn);
  background: var(--soft-warn);
  border-color: #ead7aa;
}
.role-icon.operator::before {
  width: 18px;
  height: 18px;
  top: 9px;
  left: 9px;
  box-shadow: 0 0 0 4px rgba(183, 121, 31, 0.16);
}
.role-icon.operator::after {
  width: 24px;
  height: 4px;
  left: 7px;
  bottom: 8px;
}
.role-icon.transparency {
  color: var(--accent);
  background: var(--soft-green);
  border-color: #c6e2d2;
}
.role-icon.transparency::before {
  width: 20px;
  height: 20px;
  top: 9px;
  left: 9px;
}
.role-icon.transparency::after {
  width: 10px;
  height: 10px;
  top: 14px;
  left: 14px;
  background: white;
}
.visual-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.visual-list li {
  padding-left: 20px;
  color: var(--muted);
  position: relative;
}
.visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.caution-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: center;
}
.caution-panel .notice {
  margin: 0;
  border-left: 5px solid var(--warn);
}

.segmented {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.segmented a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
}
.segmented a.selected {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}
.bolao-row {
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto) auto;
  box-shadow: var(--shadow);
}
.compact-list .bolao-row { box-shadow: none; }
.bolao-main h2, .bolao-main h3 { margin-top: 8px; }
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 10px;
}
.public-metrics {
  min-width: min(480px, 100%);
  grid-template-columns: repeat(4, minmax(90px, 1fr));
}
.mini-metrics div, .plan-summary div, .purchase-summary div {
  padding: 10px;
  border-radius: 8px;
  background: #f7fafc;
  border: 1px solid var(--line);
}
.mini-metrics span, .plan-summary span, .purchase-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.mini-metrics strong, .plan-summary strong, .purchase-summary strong { display: block; margin-top: 4px; }
.mini-metrics .bolao-prize-metric {
  background: #fff7e6;
  border-color: #e5bd74;
  box-shadow: inset 0 0 0 1px rgba(183, 121, 31, 0.12);
}
.mini-metrics .bolao-prize-metric span {
  color: #6f4a0b;
}
.mini-metrics .bolao-prize-metric strong {
  color: #102033;
  font-size: 1.18rem;
  line-height: 1.08;
}

.pix-payment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbddeb;
  background: var(--soft-blue);
}
.pix-payment-card span, .pix-copy-box label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}
.pix-payment-card strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-strong);
  font-size: 1.35rem;
}
.pix-payment-card small, .pix-copy-box small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.pix-payment-card img {
  width: 116px;
  height: 116px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: white;
}
.pix-copy-box {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.pix-copy-box textarea {
  min-height: 92px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.86rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.timeline-step {
  min-height: 86px;
  padding: 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.timeline-step span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #cad4de;
  margin-bottom: 10px;
}
.timeline-step.done { border-color: rgba(47, 143, 91, 0.38); background: var(--soft-green); }
.timeline-step.done span { background: var(--accent); }
.action-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.action-strip form .button { margin: 0; }
.plan-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.person-chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 11px;
  border-radius: 999px;
  background: #f7fafc;
  border: 1px solid var(--line);
}
.participation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.payment-card-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.payment-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0 12px;
}
.payment-card-actions form .button,
.payment-card-actions .button {
  margin-top: 0;
}
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.table-actions .button {
  min-height: 34px;
  margin-top: 0;
  padding: 6px 10px;
}
.table-action-form {
  display: inline;
}
.table-action-form .button {
  min-height: 34px;
  margin-top: 0;
  padding: 6px 10px;
}
.payment-head {
  align-items: center;
}
.payment-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}
.payment-main {
  margin-bottom: 0;
}
.payment-total {
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #c6e2d2;
  background: var(--soft-green);
}
.payment-total span {
  display: block;
  color: #175b38;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.payment-total strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-strong);
  font-size: 2.35rem;
  line-height: 1;
}
.payment-total small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.payment-pix-card {
  margin-top: 0;
}
.payment-pix-card img {
  width: 154px;
  height: 154px;
}
.payment-confirm-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  margin-top: 14px;
  border-radius: 8px;
  border: 1px solid #c6e2d2;
  background: var(--soft-green);
}
.payment-confirm-box form .button {
  margin-top: 0;
}
.payment-confirm-box small {
  display: block;
  color: var(--muted);
}
.payment-confirm-box strong {
  color: #175b38;
}
.receipt-option-form {
  display: grid;
  gap: 14px;
}
.receipt-option-form .errorlist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  color: var(--danger);
  font-weight: 700;
}
.receipt-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.receipt-actions .button {
  margin-top: 0;
}
.payment-side h2,
.payment-side h3 {
  margin-top: 0;
}
.payment-steps {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0 0 18px;
  color: var(--muted);
}
.payment-steps li {
  padding-left: 4px;
}
.payment-numbers {
  display: grid;
  gap: 8px;
}
.payment-numbers div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
}
.payment-numbers span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}
.payment-numbers strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
}
.purchase-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.purchase-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.purchase-summary h2 { margin-top: 12px; }
.purchase-summary > div { margin-bottom: 10px; }
.compact-head {
  padding: 22px 24px;
  align-items: center;
}
.compact-head h1 {
  font-size: 2rem;
  line-height: 1.08;
}
.purchase-flow {
  display: grid;
  gap: 14px;
}
.purchase-flow .button,
.purchase-flow form .button {
  margin-top: 0;
}
.purchase-flow .errorlist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: var(--danger);
  font-weight: 700;
}
.purchase-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.purchase-strip div {
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f7fafc;
  border: 1px solid var(--line);
}
.purchase-strip div:last-child {
  background: var(--soft-green);
  border-color: #c6e2d2;
}
.purchase-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.purchase-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.25rem;
}
.purchase-picker {
  padding: 16px;
}
.picker-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}
.picker-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.quota-stepper {
  display: grid;
  grid-template-columns: auto minmax(194px, auto);
  gap: 10px;
  align-items: center;
}
.quota-stepper label {
  margin: 0;
  color: var(--muted);
}
.quota-control {
  display: grid;
  grid-template-columns: 54px 76px 54px;
  gap: 8px;
  align-items: center;
}
.quota-control button {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 90, 141, 0.16);
}
.quota-control button:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}
.quota-stepper input {
  min-height: 54px;
  padding: 8px 8px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
}
.mode-switch {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
}
.mode-switch button {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.mode-switch button.selected {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 90, 141, 0.16);
}
.purchase-notice {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #cbddeb;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--text);
}
.purchase-notice strong {
  font-size: 0.98rem;
}
.purchase-notice span {
  color: var(--muted);
  line-height: 1.45;
}
.volante-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  overflow: hidden;
}
.volante-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.quota-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.quota-tabs button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.quota-tabs button.selected {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.quota-tabs button[data-complete="true"] {
  border-color: #9fd0b4;
}
.quota-tabs button[data-complete="true"]::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 999px;
  background: var(--accent);
}
.quota-tabs button.selected[data-complete="true"]::after {
  background: #fff;
}
.volante-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.volante-actions .button {
  min-height: 32px;
  padding: 6px 9px;
}
.volante-status {
  min-height: 36px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}
.volante-status[data-tone="ok"] {
  color: var(--accent);
  background: var(--soft-green);
}
.volante-status[data-tone="warn"] {
  color: var(--warn);
  background: var(--soft-warn);
}
.volante-status[data-tone="danger"] {
  color: var(--danger);
  background: var(--soft-red);
}
.volante-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(30px, 36px));
  justify-content: center;
  gap: 4px;
  padding: 10px;
}
.number-cell {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  border: 1px solid #c9d6e1;
  border-radius: 4px;
  background: #fff;
  color: var(--brand-strong);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}
.number-cell:hover {
  border-color: var(--brand);
  background: var(--soft-blue);
}
.number-cell[aria-pressed="true"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.24);
}
.selected-numbers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  min-height: 48px;
  padding: 0 10px 10px;
}
.selected-numbers span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--soft-green);
  color: #175b38;
  border: 1px solid #b7dcc7;
  font-weight: 900;
}
.selected-numbers small {
  color: var(--muted);
  font-weight: 700;
}
.purchase-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.create-bolao-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}
.form-wide { grid-column: 1 / -1; }
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.form-panel-title {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}
.form-panel-title p {
  margin: 0;
  color: var(--muted);
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  flex: 0 0 auto;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three { grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.8fr) minmax(220px, 1fr); }
.field-block { margin-bottom: 14px; }
.field-block label {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
}
.label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 6px;
}
.label-row label { margin: 0; }
.text-action {
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}
.text-action[disabled] {
  color: var(--muted);
  cursor: wait;
}
.field-block small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.field-block .errorlist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  color: var(--danger);
  font-weight: 700;
}
.sticky-panel {
  position: sticky;
  top: 88px;
}
.submit-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft-blue);
  border: 1px solid #cbddeb;
}
.submit-card p {
  margin: 12px 0 0;
  color: var(--muted);
}
.caixa-suggestion {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #cbddeb;
  background: linear-gradient(135deg, #f7fbfd, var(--soft-blue));
}
.caixa-suggestion[hidden] { display: none; }
.caixa-suggestion.loading {
  opacity: 0.82;
}
.caixa-suggestion.warn {
  border-color: #ead7aa;
  background: var(--soft-warn);
}
.caixa-suggestion strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}
.caixa-suggestion p {
  margin: 6px 0 0;
  color: var(--muted);
}
.suggestion-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.suggestion-metrics div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.suggestion-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.suggestion-metrics strong {
  margin-top: 3px;
  font-size: 0.98rem;
}
.facts {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
}
.facts div { display: flex; justify-content: space-between; gap: 12px; }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 700; }
.prize-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  margin: 0 0 18px;
  border-radius: 8px;
  border: 1px solid #e4c470;
  border-left: 8px solid #d69e2e;
  background: linear-gradient(135deg, #fff8e8 0%, #ffffff 58%, #e7f0f7 100%);
  box-shadow: 0 18px 42px rgba(90, 72, 22, 0.13);
}
.prize-highlight span {
  display: block;
  color: #75530f;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.prize-highlight strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-strong);
  font-size: 2.8rem;
  line-height: 1;
}
.prize-highlight small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.prize-highlight-note {
  min-width: 190px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 158, 46, 0.32);
}
.prize-highlight-note strong {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--text);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.metric { padding: 16px; }
.metric span { display: block; color: var(--muted); margin-bottom: 6px; }
.metric strong { font-size: 1.45rem; }
.metric small { display: block; color: var(--muted); margin-top: 4px; }
.compact .metric strong { font-size: 1.15rem; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-weight: 700; }
.statement-panel { margin-bottom: 18px; }
.statement-upload {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbddeb;
  background: var(--soft-blue);
  margin-bottom: 16px;
}
.statement-upload .button { margin-top: 0; }
.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}
.statement-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.empty, .notice {
  padding: 12px;
  border-radius: 6px;
  background: #fff7e6;
  color: #5f4500;
}
.message { padding: 12px; border-radius: 6px; background: #e9f6ec; }
.message.error { background: #fdeeee; color: var(--danger); }
.form-errors {
  padding: 12px;
  border-radius: 6px;
  background: #fdeeee;
  color: var(--danger);
  border: 1px solid #efb7b7;
  margin-bottom: 14px;
}
.form-errors p { margin: 0; }
.auth-box { width: min(460px, 100%); margin: 48px auto; }
.auth-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 0 0 22px;
}
.login-label-row {
  align-items: center;
  margin: 14px 0 6px;
}
.login-label-row label {
  margin: 0;
}
.login-help {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--brand);
  cursor: help;
  outline: none;
}
.password-help-link {
  cursor: pointer;
  text-decoration: none;
}
.password-help-link[aria-disabled="true"] {
  cursor: not-allowed;
  pointer-events: none;
}
.password-help-link .login-help-icon {
  background: var(--soft-green);
  border-color: var(--accent);
  color: var(--accent);
}
.password-help-link[aria-disabled="true"] .login-help-icon {
  background: #eef2f4;
  border-color: #aab7c2;
  color: #8795a1;
  box-shadow: none;
}
.password-help-link:hover .login-help-icon,
.password-help-link:focus .login-help-icon {
  background: #dff0e7;
  box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.14);
}
.login-help-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--soft-blue);
  font-weight: 900;
  line-height: 1;
}
.login-help-text {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: none;
  width: min(360px, calc(100vw - 48px));
  padding: 12px 14px;
  border: 1px solid #cbddeb;
  border-left: 5px solid var(--brand);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}
.login-help-title {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-strong);
}
.login-help:hover .login-help-text,
.login-help:focus .login-help-text,
.login-help:focus-within .login-help-text {
  display: block;
}
label { display: block; margin: 14px 0 6px; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: white;
}
form .button { margin-top: 16px; }
.number-list { display: grid; gap: 8px; padding-left: 0; list-style: none; }
.mobile-login, .mobile-only, .participant-display-login { display: none; }
.participant-name-meter {
  --participation-width: 0%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex-direction: column;
  min-width: 190px;
  max-width: 100%;
  padding: 8px 10px;
  overflow: hidden;
  border-radius: 6px;
  color: var(--text);
}
.participant-name-meter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: var(--participation-width);
  min-width: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(47, 143, 91, 0.24), rgba(0, 90, 141, 0.12));
  transition: width 0.25s ease;
}
.participant-name-meter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(0, 90, 141, 0.08);
  border-radius: inherit;
}
.participant-display-name,
.participant-display-login {
  position: relative;
  z-index: 1;
}
.participant-share-list {
  display: grid;
  gap: 8px;
}
.participant-share-row {
  --participation-width: 0%;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(140px, auto);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}
.participant-share-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -2;
  width: var(--participation-width);
  min-width: 5px;
  background: linear-gradient(90deg, rgba(47, 143, 91, 0.30), rgba(0, 90, 141, 0.16));
  transition: width 0.25s ease;
}
.participant-share-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.82) 72%);
}
.participant-share-main {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.participant-share-main strong {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.participant-share-main small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.1;
}
.participant-share-stats {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}
.participant-share-stats span {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}
.participant-share-note {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.15;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .topbar { align-items: flex-start; flex-direction: column; padding: 14px 16px; }
  .topbar nav {
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .topbar nav a,
  .topbar nav button {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    white-space: nowrap;
  }
  .brand-logo { height: 32px; max-width: 146px; }
  .brand-product { font-size: 0.95rem; padding-left: 10px; }
  .page { width: min(100% - 20px, 1180px); margin-top: 18px; }
  .section-head, .workspace-head { align-items: stretch; flex-direction: column; padding: 20px; }
  .public-hero {
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: none;
  }
  .public-hero .eyebrow {
    margin-bottom: 4px;
    font-size: 0.72rem;
  }
  .public-hero h1 {
    font-size: 1.55rem;
    line-height: 1.1;
  }
  .public-hero p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  .public-summary-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }
  .public-summary-kpis .kpi {
    min-height: 74px;
    padding: 9px 10px;
  }
  .public-summary-kpis .kpi::after {
    display: none;
  }
  .public-summary-kpis .kpi span {
    margin-bottom: 4px;
    font-size: 0.76rem;
  }
  .public-summary-kpis .kpi strong {
    font-size: 1.14rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .public-summary-kpis .summary-prize strong {
    font-size: 0.95rem;
  }
  .public-summary-kpis .kpi small {
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.2;
  }
  .head-actions { justify-content: stretch; }
  .button { width: 100%; }
  .compact-head h1 { font-size: 1.7rem; }
  .purchase-strip { grid-template-columns: 1fr; }
  .picker-head {
    align-items: stretch;
    flex-direction: column;
  }
  .quota-stepper { grid-template-columns: 1fr; }
  .quota-control { grid-template-columns: 60px minmax(78px, 1fr) 60px; }
  .mode-switch {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .volante-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .volante-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .volante-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 2px;
    padding: 8px;
  }
  .number-cell { font-size: 0.74rem; }
  .purchase-submit { justify-content: stretch; }
  .dashboard-grid, .ops-grid, .purchase-layout, .create-bolao-layout, .how-grid, .role-grid, .caution-panel { grid-template-columns: 1fr; }
  .how-hero::after { opacity: 0.28; right: 16px; bottom: 16px; }
  .how-flow { grid-template-columns: 1fr; }
  .how-step { min-height: auto; padding-bottom: 34px; }
  .confirmation-map { grid-template-columns: 1fr; }
  .caixa-suggestion, .suggestion-metrics { grid-template-columns: 1fr; }
  .form-grid.two, .form-grid.three, .statement-grid { grid-template-columns: 1fr; }
  .sticky-panel { position: static; }
  .prize-highlight {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }
  .prize-highlight strong { font-size: 2.1rem; }
  .prize-highlight-note { min-width: 0; }
  .bolao-list { gap: 10px; }
  .bolao-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .bolao-main h2 {
    font-size: 1.12rem;
    line-height: 1.18;
  }
  .mini-metrics { grid-template-columns: 1fr 1fr; }
  .mini-metrics div {
    padding: 9px;
  }
  .mini-metrics .bolao-prize-metric {
    grid-column: 1 / -1;
    padding: 12px;
  }
  .mini-metrics span {
    font-size: 0.72rem;
  }
  .mini-metrics strong {
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }
  .mini-metrics .bolao-prize-metric strong {
    font-size: 1.28rem;
  }
  .public-metrics { min-width: 0; }
  .pix-payment-card { grid-template-columns: 1fr; }
  .pix-payment-card img { width: 132px; height: 132px; }
  .payment-page { grid-template-columns: 1fr; }
  .payment-pix-card img { width: 148px; height: 148px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .desktop-name { display: none; }
  .mobile-login { display: inline; }
  .mobile-only { display: table-cell; }
  th, td { padding: 9px 8px; }
  .bolao-detail-head {
    gap: 8px;
    margin-bottom: 10px;
    padding: 0;
  }
  .bolao-detail-head h1 {
    font-size: 1.35rem;
    line-height: 1.15;
  }
  .bolao-detail-head p {
    font-size: 0.86rem;
    margin-bottom: 0;
  }
  .bolao-detail-head .button {
    width: 100%;
    min-height: 38px;
  }
  .bolao-detail-prize {
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 14px;
    border-left-width: 5px;
    box-shadow: none;
  }
  .bolao-detail-prize span { font-size: 0.72rem; }
  .bolao-detail-prize strong {
    font-size: 1.45rem;
    line-height: 1.1;
  }
  .bolao-detail-prize small {
    margin-top: 4px;
    font-size: 0.78rem;
  }
  .bolao-detail-prize .prize-highlight-note { display: none; }
  .participant-list-panel {
    margin-bottom: 10px;
    padding: 14px;
    box-shadow: none;
  }
  .participant-list-panel h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  .participant-list-panel .notice {
    padding: 10px;
    font-size: 0.82rem;
  }
  .participant-share-list { gap: 6px; }
  .participant-share-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 8px;
    min-height: 38px;
    padding: 7px 8px;
  }
  .participant-share-row::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.74) 82%);
  }
  .participant-share-main strong { font-size: 0.86rem; }
  .participant-share-main small { display: none; }
  .participant-share-stats {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    font-size: 0.76rem;
    line-height: 1.1;
  }
  .participant-share-stats span {
    padding: 0;
    background: transparent;
  }
  .participant-share-note {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    line-height: 1.15;
    text-align: left;
    white-space: normal;
  }
  .participant-table-wrap { overflow: visible; }
  .participant-table,
  .participant-table tbody,
  .participant-table tr,
  .participant-table td {
    display: block;
    width: 100%;
  }
  .participant-table thead { display: none; }
  .participant-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .participant-table tr:last-child { border-bottom: 0; }
  .participant-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 0;
    text-align: right;
    font-size: 0.9rem;
  }
  .participant-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 700;
    text-align: left;
  }
  .participant-table td[data-label="Participante"] {
    display: block;
    padding-top: 0;
    text-align: left;
    font-weight: 700;
  }
  .participant-table td[data-label="Participante"]::before { display: none; }
  .participant-table .mobile-only { display: none; }
  .participant-table .participant-display-name {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .participant-table .participant-name-meter {
    width: 100%;
    min-width: 0;
  }
  .participant-table .participant-display-login {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .bolao-detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 8px 0 12px;
  }
  .bolao-detail-metrics .metric {
    padding: 10px;
    box-shadow: none;
  }
  .bolao-detail-metrics .metric span { font-size: 0.72rem; }
  .bolao-detail-metrics .metric strong { font-size: 1rem; }
  .bolao-detail-metrics .metric small { font-size: 0.72rem; }
}
