/* LeadBoard V2 — blocos novos (Tarefas do Dia, mensagens, alertas, limitações) */
.task-table { margin-top: 52px; border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden; background: #0F1117; box-shadow: 0 34px 90px -34px rgba(0,0,0,0.7); }
.task-table .tb { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: #181A20; border-bottom: 1px solid rgba(255,255,255,0.06); }
.task-table .tb .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.task-table .tb .lbl { margin-left: 8px; font-size: 12.5px; color: var(--text-2); font-family: var(--font-display); }
.task-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr auto; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.task-row:last-child { border-bottom: none; }
.task-row .nm { font-weight: 600; font-family: var(--font-display); font-size: 14.5px; }
.task-row .meta { font-size: 12.5px; color: var(--muted); }
.task-row .badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; font-family: var(--font-display); letter-spacing: 0.02em; justify-self: start; }
.task-row .badge.late { background: rgba(255,45,142,0.14); color: var(--magenta-2); }
.task-row .badge.today { background: rgba(244,191,80,0.15); color: #F4BF50; }
.task-row .badge.soon { background: var(--sheets-soft); color: var(--sheets-2); }
.task-row .call { display: inline-flex; align-items: center; gap: 7px; background: #25D366; color: #06301A; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; padding: 9px 16px; border-radius: 9px; justify-self: end; white-space: nowrap; }

.msg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.msg-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; transition: border-color .3s, transform .3s; }
.msg-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.msg-card .tag { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sheets-2); }
.msg-card p { font-size: 14px; color: var(--text-2); margin-top: 10px; line-height: 1.55; }

.alert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.alert-card { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: 14px; border: 1px solid var(--border); background: var(--panel); font-size: 14px; }
.alert-card .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.alert-card.c-late .dot { background: var(--magenta-2); box-shadow: 0 0 0 4px rgba(255,45,142,0.16); }
.alert-card.c-today .dot { background: #F4BF50; box-shadow: 0 0 0 4px rgba(244,191,80,0.16); }
.alert-card.c-soon .dot { background: var(--sheets-2); box-shadow: 0 0 0 4px rgba(37,195,111,0.16); }
.alert-card.c-missing .dot { background: var(--muted); box-shadow: 0 0 0 4px rgba(142,132,168,0.16); }

.limits-box { margin-top: 52px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--panel); padding: 34px 38px; }
.limits-box h4 { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em; margin-bottom: 14px; }
.limits-list { display: flex; flex-direction: column; gap: 10px; }
.limits-list li { list-style: none; display: flex; gap: 11px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.limits-list li .m { color: var(--muted); flex-shrink: 0; }

@media (max-width: 1000px) {
  .msg-grid, .alert-grid { grid-template-columns: 1fr 1fr; }
  .task-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .task-row .call, .task-row .badge { justify-self: start; }
}
@media (max-width: 680px) {
  .msg-grid, .alert-grid { grid-template-columns: 1fr; }
}

/* espaçamento entre seções mais compacto nesta página */
:root { --section-y: clamp(52px, 6.5vw, 92px); }
.lb-hero { padding-top: 130px; padding-bottom: 56px; }
.lb-hero h1 { font-size: clamp(38px, 5vw, 62px); line-height: 1.14; letter-spacing: -0.03em; text-wrap: balance; }

/* ---------- NAV mobile: compact CTA, no overflow ---------- */
.nav-cta .cta-short { display: none; }
@media (max-width: 680px) {
  .nav-inner { gap: 10px; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .nav-cta .btn-primary { padding: 11px 16px; font-size: 13.5px; white-space: nowrap; }
  .lb-logo .lb-name { font-size: 15px; }
}
@media (max-width: 380px) {
  .nav-cta .btn-primary { padding: 9px 12px; font-size: 12.5px; }
}

/* ---------- PREMIUM SCREENSHOT FRAMING (real captures) ---------- */
.shot-premium {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(155deg, #171022 0%, #0c0818 100%);
  border: 1px solid var(--border-2);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 14px;
}
.shot-premium::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg, rgba(124,92,255,0.45), transparent 40%, transparent 65%, rgba(255,45,142,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.shot-premium .shot-tb { display: flex; align-items: center; gap: 7px; padding: 10px 12px 14px; }
.shot-premium .shot-tb .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.shot-premium .shot-tb .shot-lbl { margin-left: 8px; font-size: 12px; color: var(--muted); font-family: var(--font-display); letter-spacing: 0.02em; }
.shot-premium .shot-inner { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 20px 46px -22px rgba(0,0,0,0.6); }
.shot-premium img { display: block; width: 100%; height: auto; }

.dd-shot .shot-premium { padding: 10px; }
.dd-shot .shot-premium .shot-inner { border-radius: 9px; }
.task-table.shot-premium { max-width: 780px; margin: 44px auto 0; }
