:root{
  --bg:#f7f0e6;
  --card:#fffdf8;
  --ink:#302016;
  --muted:#806a5c;
  --primary:#3a2418;
  --gold:#c99b46;
  --gold2:#efd795;
  --line:#eadfce;
  --green:#16804a;
  --red:#b42318;
  --shadow:0 18px 45px rgba(58,36,24,.12);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:linear-gradient(180deg,#fff9ef,var(--bg));
  color:var(--ink);
}
button,input,textarea{font:inherit}
button{cursor:pointer}
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  background:rgba(58,36,24,.97);
  color:#fff;
  box-shadow:0 12px 35px rgba(0,0,0,.22);
}
.menu-btn,.icon-btn{
  width:44px;height:44px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:inherit;
  border-radius:14px;
  font-size:25px;
  font-weight:900;
}
.top-title{display:grid;gap:1px}
.top-title strong{text-transform:uppercase;letter-spacing:.5px}
.top-title span{font-size:12px;color:#f0dcae;font-weight:800;text-transform:uppercase}
.drawer{
  position:fixed;
  z-index:100;
  top:0;left:0;
  width:min(82vw,330px);
  height:100vh;
  background:#fffdf8;
  transform:translateX(-104%);
  transition:.24s ease;
  box-shadow:26px 0 60px rgba(0,0,0,.22);
  padding:16px;
}
.drawer.open{transform:translateX(0)}
.drawer-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.drawer-head strong{display:block;text-transform:uppercase;color:var(--primary)}
.drawer-head span{display:block;color:var(--muted);font-size:12px}
.drawer-head .icon-btn{color:var(--primary);background:#fff7e5;border-color:var(--line)}
.drawer-nav{display:grid;gap:10px;margin-top:16px}
.drawer-nav button{
  width:100%;
  text-align:left;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff8eb;
  color:var(--primary);
  padding:15px;
  font-weight:900;
}
.drawer-backdrop{
  position:fixed;inset:0;
  z-index:90;
  background:rgba(0,0,0,.42);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
.drawer-backdrop.show{opacity:1;pointer-events:auto}
.app{
  width:min(760px,100%);
  margin:0 auto;
  padding:16px 14px 100px;
}
.page{display:none}
.page.active{display:block;animation:fade .18s ease}
@keyframes fade{from{opacity:.35;transform:translateY(4px)}to{opacity:1;transform:none}}
.hero,.card,.client-card{
  background:rgba(255,253,248,.96);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.hero{
  padding:18px;
  background:linear-gradient(135deg,#fffdf8,#f6dfa9);
}
.hero p,.eyebrow{
  margin:0 0 5px;
  color:var(--gold);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1.3px;
  font-weight:900;
}
.hero h1{margin:0 0 14px;font-size:26px;line-height:1.05}
.hero-stats,.client-numbers{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.hero-stats div,.client-numbers div{
  padding:12px;
  border-radius:18px;
  background:#fff8ea;
  border:1px solid rgba(201,155,70,.35);
}
.hero-stats span,.client-numbers span{
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.hero-stats strong,.client-numbers b{
  display:block;
  margin-top:3px;
  font-size:20px;
  color:var(--primary);
}
.card{padding:16px;margin:14px 0}
.section-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}
.section-head h2,.card h2{margin:0;font-size:20px}
.input{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:13px 14px;
  background:#fff;
  outline:none;
  color:var(--ink);
}
.input:focus{border-color:var(--gold);box-shadow:0 0 0 4px rgba(201,155,70,.15)}
.form{display:grid;gap:12px}
label{display:grid;gap:7px;color:var(--muted);font-size:13px;font-weight:900}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.score-row input{text-align:center;font-size:26px;font-weight:900;color:var(--primary)}
.checkbox{display:flex;align-items:center;gap:10px;grid-template-columns:none;color:var(--ink)}
.checkbox input{width:22px;height:22px;accent-color:var(--primary)}
.primary,.secondary,.danger-btn{
  border:0;
  border-radius:16px;
  padding:13px 16px;
  min-height:48px;
  font-weight:900;
}
.primary{background:linear-gradient(135deg,var(--primary),#68402a);color:#fff}
.primary.small{min-height:38px;padding:9px 12px;border-radius:13px}
.secondary{display:grid;place-items:center;background:#fff6e2;color:var(--primary);border:1px solid rgba(201,155,70,.35)}
.danger-btn{background:#fff0ee;color:var(--red);border:1px solid #efb0a8}
.actions{display:grid;gap:10px}
.pill{
  display:inline-grid;
  place-items:center;
  min-width:34px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  font-size:13px;
}
.bolao-list,.simple-list{display:grid;gap:8px;margin-top:12px}
.bet-row{
  display:grid;
  grid-template-columns:42px 1fr auto;
  gap:10px;
  align-items:center;
  padding:11px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
}
.bet-number{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:12px;
  background:#f3dfac;
  color:var(--primary);
  font-weight:900;
}
.bet-name{min-width:0}
.bet-name strong{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bet-name span{display:block;color:var(--muted);font-size:12px;font-weight:800;margin-top:2px}
.score-pill{
  display:inline-grid;
  place-items:center;
  min-width:62px;
  padding:8px 10px;
  border-radius:999px;
  background:#fff4d9;
  color:var(--primary);
  font-weight:900;
  border:1px solid rgba(201,155,70,.32);
}
.row-actions{display:flex;gap:6px;margin-top:8px}
.small-btn{
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff8ea;
  color:var(--primary);
  padding:7px 10px;
  font-weight:900;
}
.empty{
  text-align:center;
  padding:18px;
  border:1px dashed var(--line);
  border-radius:18px;
  color:var(--muted);
  background:#fff9ed;
}
.switch{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:12px}
.switch-btn{
  border:1px solid var(--line);
  background:#fff8ea;
  color:var(--muted);
  border-radius:999px;
  padding:11px;
  font-weight:900;
}
.switch-btn.active{background:var(--primary);color:#fff;border-color:var(--primary)}
.score-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
.score-cell{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:6px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:10px;
  font-weight:900;
  font-size:13px;
}
.score-cell small{color:var(--muted)}
.score-cell.off{background:#f2ece3;color:#8c7b6f}
.client-card{
  text-align:center;
  padding:22px;
  background:linear-gradient(180deg,#fffdf8,#fff3d5);
  border:2px solid rgba(201,155,70,.45);
}
.client-card p{margin:0;color:var(--primary);font-size:24px;font-weight:900;text-transform:uppercase}
.client-card>span{display:block;color:var(--muted);font-size:12px;font-weight:900;letter-spacing:1.2px;margin-top:3px}
.client-card h2{margin:20px 0 6px;color:var(--gold);font-size:14px}
.client-card strong{display:block;font-size:28px;margin-bottom:16px;color:var(--primary)}
.muted{color:var(--muted);line-height:1.5}
.fab{
  position:fixed;
  right:18px;
  bottom:20px;
  z-index:60;
  width:62px;height:62px;
  border:0;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),#74472e);
  color:#fff;
  font-size:34px;
  font-weight:900;
  box-shadow:0 18px 36px rgba(58,36,24,.32);
}
.modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
  align-items:flex-end;
  justify-content:center;
  background:rgba(0,0,0,.45);
  padding:14px;
}
.modal.open{display:flex}
.modal-card{
  width:min(720px,100%);
  max-height:92vh;
  overflow:auto;
  background:#fffdf8;
  border-radius:26px;
  padding:16px;
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}
.modal-card .icon-btn{color:var(--primary);background:#fff7e5;border-color:var(--line)}
.toast{
  position:fixed;
  left:50%;
  bottom:95px;
  transform:translateX(-50%) translateY(18px);
  z-index:200;
  background:var(--primary);
  color:#fff;
  padding:12px 16px;
  border-radius:16px;
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
  font-weight:900;
  max-width:calc(100vw - 32px);
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
@media(min-width:660px){
  .actions{grid-template-columns:1fr 1fr}
  .score-grid{grid-template-columns:repeat(3,1fr)}
  .modal{align-items:center}
}
@media(max-width:420px){
  .row{grid-template-columns:1fr}
  .score-grid{grid-template-columns:1fr}
  .hero-stats,.client-numbers{grid-template-columns:1fr 1fr}
}


/* ===== v3: tabela profissional do bolão ===== */
.bolao-list{
  display:block;
  margin-top:12px;
  overflow-x:auto;
  border-radius:18px;
  border:1px solid #d8c8b5;
  background:#fff;
  box-shadow:0 10px 24px rgba(58,36,24,.08);
}
.bolao-table{
  width:100%;
  min-width:350px;
  overflow:hidden;
  border-radius:18px;
}
.bolao-head,
.bolao-row{
  display:grid;
  grid-template-columns:46px minmax(155px,1fr) 42px 44px 44px;
  align-items:stretch;
}
.bolao-head{
  background:#111;
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.4px;
  text-align:center;
  text-transform:uppercase;
}
.bolao-head div{
  padding:9px 6px;
  border-right:1px solid rgba(255,255,255,.18);
}
.bolao-head div:nth-child(4){
  grid-column:4 / span 2;
}
.bolao-head div:nth-child(5){
  display:none;
}
.bolao-row{
  background:#fffdf8;
  min-height:42px;
  border-bottom:1px solid #bfb5aa;
}
.bolao-row:nth-child(even){
  background:#f8f3eb;
}
.bolao-row:last-child{
  border-bottom:0;
}
.bolao-row .td{
  display:flex;
  align-items:center;
  border-right:1px solid #bfb5aa;
  min-width:0;
}
.bolao-row .td:last-child{
  border-right:0;
}
.bolao-row .item{
  justify-content:center;
  font-weight:900;
  font-size:13px;
  color:#111;
  background:rgba(255,255,255,.55);
}
.bolao-row .participante{
  padding:6px 10px;
  display:block;
}
.bolao-row .participante strong{
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:16px;
  line-height:1.1;
  color:#16110d;
  letter-spacing:.1px;
}
.bolao-row .pago{
  justify-content:center;
  font-size:16px;
  font-weight:900;
  color:#008a1e;
}
.bolao-row .score-num{
  justify-content:center;
  font-size:17px;
  font-weight:900;
  color:#111;
  background:#fff;
}
.bolao-row.editable{
  min-height:58px;
}
.bolao-row.editable .participante strong{
  margin-top:2px;
}
.bolao-row .row-actions{
  display:flex;
  gap:6px;
  margin-top:6px;
}
.bolao-row .small-btn{
  min-height:0;
  padding:5px 8px;
  font-size:11px;
  border-radius:9px;
}
.simple-list{
  display:block;
  overflow-x:auto;
  border-radius:18px;
  border:1px solid #d8c8b5;
  background:#fff;
}
.simple-list .bolao-table{
  border-radius:18px;
}
.compact-table .bolao-row{
  min-height:42px;
}
.compact-table .participante{
  display:flex;
  align-items:center;
}
@media(max-width:420px){
  .bolao-head,
  .bolao-row{
    grid-template-columns:40px minmax(138px,1fr) 36px 38px 38px;
  }
  .bolao-row .participante{
    padding:6px 8px;
  }
  .bolao-row .participante strong{
    font-size:14px;
  }
  .bolao-row .pago,
  .bolao-row .score-num{
    font-size:15px;
  }
}


/* ===== v4: início com botões e visual para print ===== */
.home-actions-card{
  margin-top:14px;
}
.home-button-grid{
  display:grid;
  gap:12px;
}
.info-button{
  width:100%;
  min-height:82px;
  border:1px solid rgba(201,155,70,.34);
  background:linear-gradient(135deg,#fffdf8,#fff2d4);
  color:var(--primary);
  border-radius:20px;
  display:grid;
  grid-template-columns:42px 1fr;
  grid-template-rows:auto auto;
  align-items:center;
  text-align:left;
  gap:0 12px;
  padding:14px;
  box-shadow:0 10px 22px rgba(58,36,24,.08);
}
.info-button span{
  grid-row:1 / span 2;
  width:42px;
  height:42px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:#3a2418;
  color:#fff;
  font-size:22px;
}
.info-button strong{
  font-size:16px;
  line-height:1.1;
}
.info-button small{
  color:var(--muted);
  font-weight:800;
}
.info-button.primary-info{
  background:linear-gradient(135deg,#3a2418,#70452d);
  color:#fff;
}
.info-button.primary-info span{
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.2);
}
.info-button.primary-info small{
  color:#efd795;
}
.list-modal{
  align-items:flex-end;
}
.list-modal-card{
  max-height:92vh;
}
.modal-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
}
.print-area{
  background:#fff;
  border:1px solid #d8c8b5;
  border-radius:20px;
  padding:12px;
  max-height:68vh;
  overflow:auto;
}
.print-header{
  text-align:center;
  padding:10px 6px 14px;
  border-bottom:2px solid #111;
  margin-bottom:10px;
}
.print-header h3{
  margin:0;
  font-size:22px;
  color:#3a2418;
  text-transform:uppercase;
}
.print-header p{
  margin:4px 0;
  color:#c99b46;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
}
.print-header strong{
  display:block;
  color:#111;
  text-transform:uppercase;
}
.print-two-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
}
.print-bet-row{
  display:grid;
  grid-template-columns:30px 1fr 46px;
  align-items:center;
  gap:6px;
  min-height:34px;
  border:1px solid #d8c8b5;
  background:#fffdf8;
  border-radius:10px;
  padding:6px;
}
.print-bet-row:nth-child(4n+1),
.print-bet-row:nth-child(4n+2){
  background:#f7f0e6;
}
.print-bet-row .print-item{
  display:grid;
  place-items:center;
  width:26px;
  height:24px;
  border-radius:7px;
  background:#111;
  color:#fff;
  font-size:12px;
  font-weight:900;
}
.print-bet-row strong{
  min-width:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:13px;
  color:#111;
}
.print-bet-row em{
  font-style:normal;
  text-align:center;
  background:#fff4d9;
  border-radius:999px;
  font-weight:900;
  color:#111;
  padding:4px 2px;
  font-size:12px;
}
.print-footer{
  margin-top:12px;
  text-align:center;
  color:#3a2418;
  font-weight:900;
  padding:10px;
  border-radius:14px;
  background:#fff8ea;
}
.score-only-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.score-only{
  min-height:38px;
  display:grid;
  place-items:center;
  text-align:center;
  border:1px solid #d8c8b5;
  background:#fffdf8;
  border-radius:12px;
  color:#111;
  font-weight:900;
  text-transform:uppercase;
}
.score-only:nth-child(4n+1),
.score-only:nth-child(4n+2){
  background:#f7f0e6;
}
@media(min-width:660px){
  .home-button-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
  .list-modal{
    align-items:center;
  }
}
@media(max-width:390px){
  .print-two-cols{
    grid-template-columns:1fr 1fr;
    gap:5px;
  }
  .print-bet-row{
    grid-template-columns:26px 1fr 40px;
    gap:4px;
    padding:5px;
  }
  .print-bet-row strong{
    font-size:12px;
  }
  .print-bet-row em{
    font-size:11px;
  }
  .score-only-grid{
    grid-template-columns:1fr;
  }
}


/* ===== v5: uploads de logo e bandeiras + imagem no modelo solicitado ===== */
.asset-block{
  display:grid;
  gap:12px;
}
.asset-upload{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fffaf1;
  padding:12px;
}
.asset-preview-wrap{
  margin-top:10px;
  min-height:92px;
  border:1px dashed #d8c8b5;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#fff;
}
.asset-preview-wrap.small{
  min-height:70px;
}
.asset-preview-wrap::before{
  content:"Sem imagem";
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}
.asset-preview-wrap.has-image::before{
  content:"";
}
.asset-preview{
  max-width:100%;
  max-height:80px;
  display:none;
}
.flag-preview{
  max-height:54px;
}
.print-header.refined{
  display:grid;
  gap:8px;
  justify-items:center;
  border-bottom:2px solid #111;
}
.print-logo{
  max-width:210px;
  max-height:72px;
  object-fit:contain;
}
.matchup-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  font-weight:900;
  color:#111;
  text-transform:uppercase;
}
.team-with-flag{
  display:flex;
  align-items:center;
  gap:8px;
}
.tiny-flag{
  width:28px;
  height:20px;
  object-fit:cover;
  border-radius:4px;
  border:1px solid #d8c8b5;
  background:#fff;
}
.x-divider{
  font-size:20px;
  color:#000;
}
.filled-items{
  font-size:13px;
  font-weight:900;
  letter-spacing:.7px;
  color:#6a4a2e;
  text-transform:uppercase;
}
@media(min-width:660px){
  .asset-block{
    grid-template-columns:1.25fr 1fr 1fr;
  }
}


/* ===== v6: preview de palpites em 3 colunas com slots vazios ===== */
.print-three-cols{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:7px;
}
.print-bet-row.paid{
  box-shadow:inset 5px 0 0 #16a34a;
}
.print-bet-row.empty-row{
  background:#fbf8f2;
}
.single-line{
  color:#c99b46;
}
.score-only-grid-3{
  grid-template-columns:1fr 1fr 1fr;
}
@media(max-width:520px){
  .print-three-cols{
    grid-template-columns:1fr 1fr 1fr;
    gap:5px;
  }
  .print-bet-row{
    grid-template-columns:24px 1fr 38px;
    gap:4px;
    padding:5px;
  }
  .print-bet-row strong{
    font-size:11px;
  }
  .print-bet-row em{
    font-size:10px;
  }
  .score-only-grid-3{
    grid-template-columns:1fr 1fr;
  }
}


/* ===== v7: botão Editar no modal de palpites e toggle pg ===== */
.pg-toggle{
  color:#6a4a2e;
}
.pg-toggle.is-paid{
  background:#e8f8ee;
  color:#11813f;
  border-color:#90d4aa;
}


/* ===== v8: cabeçalho textual, aviso e visual mais alto ===== */
.asset-block.flags-only{
  grid-template-columns:1fr 1fr;
}
.brand-text-block{
  text-align:center;
}
.brand-text-block h3{
  margin:0;
  color:#5d3c26;
  font-size:28px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.3px;
}
.brand-text-block p{
  margin:4px 0 0;
  color:#8b7867;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
}
.matchup-line.cleaned{
  gap:16px;
  justify-content:center;
  flex-wrap:nowrap;
}
.matchup-line.cleaned .team-with-flag{
  min-width:120px;
}
.matchup-line.cleaned .team-with-flag.left{
  justify-content:flex-start;
}
.matchup-line.cleaned .team-with-flag.right{
  justify-content:flex-end;
}
.print-three-cols.roomy .print-bet-row{
  min-height:40px;
}
.print-three-cols.roomy strong{
  font-size:14px;
}
.print-three-cols.roomy em{
  font-size:13px;
  min-width:48px;
}
.print-three-cols.roomy .print-item{
  width:28px;
  height:26px;
  font-size:13px;
}
.print-warning{
  margin-top:12px;
  text-align:center;
  color:#7f6c5c;
  font-size:12px;
  font-weight:700;
}
@media(max-width:560px){
  .brand-text-block h3{
    font-size:24px;
  }
  .matchup-line.cleaned{
    gap:10px;
  }
  .matchup-line.cleaned .team-with-flag{
    min-width:auto;
  }
}


/* ===== v9: preview com 2 colunas e aviso quebrando ===== */
.print-two-cols.roomy.bigger{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  min-height:44px;
  padding:7px;
  grid-template-columns:30px 1fr 52px;
}
.print-two-cols.roomy.bigger .print-item{
  width:28px;
  height:26px;
  font-size:13px;
}
.print-two-cols.roomy.bigger strong{
  font-size:15px;
  font-weight:900;
}
.print-two-cols.roomy.bigger em{
  font-size:14px;
  min-width:50px;
}
.wrap-warning{
  max-width:92%;
  margin-left:auto;
  margin-right:auto;
  line-height:1.35;
  white-space:normal;
  word-break:break-word;
}
@media(max-width:520px){
  .print-two-cols.roomy.bigger .print-bet-row{
    min-height:42px;
    grid-template-columns:28px 1fr 48px;
  }
  .print-two-cols.roomy.bigger strong{
    font-size:13px;
  }
  .print-two-cols.roomy.bigger em{
    font-size:12px;
  }
}


/* ===== v10: preview e geração em formato story com 2 colunas ===== */
.page-note{
  text-align:center;
  color:#8b7867;
  font-size:12px;
  font-weight:800;
  margin:6px 0 10px;
}
.print-two-cols.roomy.bigger{
  gap:9px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  min-height:50px;
  padding:8px;
  grid-template-columns:34px 1fr 56px;
  border-radius:12px;
}
.print-two-cols.roomy.bigger .print-item{
  width:30px;
  height:28px;
  font-size:14px;
}
.print-two-cols.roomy.bigger strong{
  font-size:16px;
}
.print-two-cols.roomy.bigger em{
  font-size:15px;
  min-width:54px;
}


/* ===== v11: prévia refinada ===== */
.header-meta-line{
  margin-top:2px;
  text-align:center;
  color:#6f6256;
  font-size:12px;
  font-weight:800;
}
.bet-tag-preview{
  display:inline-block;
  margin:6px auto 0;
  padding:6px 12px;
  border-radius:999px;
  background:#c79634;
  color:#fff;
  font-size:12px;
  font-weight:900;
}
.print-two-cols.roomy.bigger{
  gap:10px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  min-height:54px;
  padding:9px;
  grid-template-columns:34px 1fr 58px;
}
.print-two-cols.roomy.bigger .print-item{
  width:30px;
  height:29px;
  font-size:14px;
}
.print-two-cols.roomy.bigger strong{
  font-size:16px;
}
.print-two-cols.roomy.bigger em{
  font-size:15px;
  min-width:56px;
}
.score-only-grid-3{
  grid-template-columns:1fr 1fr 1fr;
}
.score-only-grid-3 .score-only{
  min-height:42px;
  font-size:14px;
}


/* ===== v12 ajustes finos ===== */
.bet-tag-preview.centered{
  display:block;
  width:max-content;
  margin:8px auto 0;
}
.print-warning.wrap-warning{
  max-width:92%;
  margin-left:auto;
  margin-right:auto;
  line-height:1.35;
  white-space:normal;
  word-break:break-word;
}
.score-only-grid.score-only-grid-3{
  gap:8px;
}
.score-only-grid.score-only-grid-3 .score-only{
  min-height:38px;
  font-size:14px;
}


/* ===== v13 ajustes finais ===== */
.bet-tag-preview.centered{
  display:block;
  width:max-content;
  margin:8px auto 0;
}
.print-warning,
.print-warning.wrap-warning{
  max-width:92%;
  margin:14px auto 0;
  line-height:1.35;
  white-space:normal;
  word-break:break-word;
}
.score-only-grid.score-only-grid-3{
  gap:8px;
}
.score-only-grid.score-only-grid-3 .score-only{
  min-height:38px;
  font-size:14px;
}


/* ===== v15 dashboard financeiro ===== */
.hero-stats strong{
  font-size:18px;
  line-height:1.1;
}
.hero-stats span{
  font-size:10px;
}


/* ===== v16 home cards ===== */
.hero-stats{
  grid-template-columns:1fr 1fr;
}
.hero-stats div{
  min-height:74px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-stats strong{
  font-size:17px;
}
.hero-stats span{
  font-size:10px;
  line-height:1.2;
}
@media(min-width:660px){
  .hero-stats{
    grid-template-columns:repeat(3,1fr);
  }
}


/* ===== v17 uppercase automático em campos de texto ===== */
input[type="text"],
input[type="search"],
textarea,
.input{
  text-transform:uppercase;
}


/* ===== v18 ajustes mobile: sem zoom e teclado numérico ===== */
input,
textarea,
select,
.input{
  font-size:16px;
}
.score-row input,
.live-score input,
.numeric-only{
  font-size:24px;
  inputmode:numeric;
}
html, body{
  touch-action:manipulation;
}


/* ===== v19 palpites em 3 colunas ===== */
.print-three-cols.roomy{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:8px;
}
.print-three-cols.roomy .print-bet-row{
  min-height:44px;
  padding:7px 8px;
  grid-template-columns:28px 1fr 50px;
  gap:6px;
}
.print-three-cols.roomy strong{
  font-size:14px;
  line-height:1.1;
}
.print-three-cols.roomy em{
  font-size:14px;
  min-width:50px;
}
.print-three-cols.roomy .print-item{
  width:28px;
  height:26px;
  font-size:13px;
}


/* ===== v20 mais itens por página + nome melhor aproveitado ===== */
.print-three-cols.roomy{
  gap:6px;
}
.print-three-cols.roomy .print-bet-row{
  min-height:40px;
  padding:6px 7px;
  grid-template-columns:26px 1fr 48px;
  gap:5px;
}
.print-three-cols.roomy strong{
  font-size:13px;
  line-height:1.05;
}
.print-three-cols.roomy em{
  font-size:13px;
  min-width:48px;
}
.print-three-cols.roomy .print-item{
  width:26px;
  height:24px;
  font-size:12px;
}


/* ===== v22 arte de palpites em 2 colunas, boxes maiores ===== */
.print-two-cols.roomy.bigger{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  min-height:52px;
  padding:8px 10px;
  grid-template-columns:34px 1fr 60px;
  gap:8px;
  border-radius:13px;
}
.print-two-cols.roomy.bigger .print-item{
  width:32px;
  height:30px;
  font-size:14px;
}
.print-two-cols.roomy.bigger strong{
  font-size:15px;
  font-weight:900;
  line-height:1.08;
}
.print-two-cols.roomy.bigger em{
  font-size:15px;
  min-width:58px;
}


/* ===== v23 referência visual: 2 colunas com 44 itens/página ===== */
.print-two-cols.roomy.bigger{
  gap:12px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  min-height:54px;
  padding:8px 10px;
  grid-template-columns:36px 1fr 62px;
  gap:8px;
  border-radius:14px;
}
.print-two-cols.roomy.bigger .print-item{
  width:34px;
  height:32px;
  font-size:15px;
}
.print-two-cols.roomy.bigger strong{
  font-size:16px;
  font-weight:900;
  line-height:1.08;
}
.print-two-cols.roomy.bigger em{
  font-size:16px;
  min-width:60px;
}


/* ===== v24 boxes mais estreitos nas artes de palpites ===== */
.print-two-cols.roomy.bigger{
  gap:14px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  width:92%;
  justify-self:center;
}


/* ===== v25 boxes ainda mais estreitos, como no anexo ===== */
.print-two-cols.roomy.bigger{
  gap:16px;
}
.print-two-cols.roomy.bigger .print-bet-row{
  width:84%;
  justify-self:center;
}


/* ===== v26 texto maior nos boxes ===== */
.print-two-cols.roomy.bigger .print-item{
  font-size:15px;
}
.print-two-cols.roomy.bigger strong{
  font-size:17px;
  line-height:1.04;
}
.print-two-cols.roomy.bigger em{
  font-size:17px;
  min-width:62px;
}


/* ===== v27 nome do participante e aviso final maiores ===== */
.print-two-cols.roomy.bigger strong{
  font-size:18px;
  line-height:1.03;
}
.print-warning{
  font-size:15px;
  line-height:1.35;
}


/* ===== v28 nome do participante ainda maior ===== */
.print-two-cols.roomy.bigger strong{
  font-size:19px;
  line-height:1.02;
}
