/* ExcFlow Projeção de Carteira v2.5 — CSS */

/* ─── Barra de sincronização (topo do kanban) ────────────────────────── */
.proj-v25-barra-sync .proj-v25-divergentes {
  background: rgba(212,176,98,0.15);
  color: #e9c478;
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 11px;
}
.proj-v25-barra-sync button:hover {
  background: rgba(245,241,232,0.16) !important;
  color: rgba(245,241,232,1) !important;
  border-color: rgba(196,113,74,0.4) !important;
}

/* ─── Card com status divergente do real ─────────────────────────────── */
.kb-card.proj-v25-diverge {
  position: relative;
  border: 1px solid rgba(212,176,98,0.35);
  box-shadow: 0 0 0 1px rgba(212,176,98,0.15);
}
.kb-card.proj-v25-diverge::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #d4b062, rgba(212,176,98,0.3));
  pointer-events: none;
}
.proj-v25-badge {
  position: absolute;
  top: 6px; right: 8px;
  background: rgba(212,176,98,0.25);
  color: #e9c478;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  cursor: help;
}

/* ─── Linha "📊 projeção: NOME · DD/MM" no card ──────────────────────── */
.proj-v25-meta {
  margin-top: 4px;
  font-size: 9px;
  color: rgba(245,241,232,0.4);
  font-style: italic;
  border-top: 1px dashed rgba(245,241,232,0.08);
  padding-top: 3px;
}
