/* ============================================================
   KANBAN BOARD — colunas por equipe
   ============================================================ */

.kanban-board {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 20px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.kanban-col {
  width: var(--col-width);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-col);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-height: calc(100vh - var(--header-height) - 60px - 36px);
  overflow: hidden;
  transition: opacity var(--duration);
}

.kanban-col.col-inativa {
  opacity: 0.5;
  min-height: 80px;
  max-height: 90px;
}

.col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 8px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.col-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.eq-avatar {
  width: 26px; height: 26px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white;
  flex-shrink: 0;
}

.col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.col-count {
  font-size: 11px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0 7px;
  height: 18px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.col-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.col-toggle-btn {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: all var(--duration);
  color: var(--text-muted);
  cursor: pointer;
  border: none; background: transparent;
}
.col-toggle-btn:hover { background: var(--border); }
.col-toggle-btn.inativa { color: var(--status-cancelada); }

.col-add-btn {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 16px;
  transition: all var(--duration);
  border: none; background: transparent; cursor: pointer;
}
.col-add-btn:hover { background: var(--border); color: var(--text-primary); }

.col-cards {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.col-cards-hidden { display: none; }

.col-inativa-label {
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.kanban-col.drag-over {
  background: rgba(200, 75, 17, 0.05);
  border-color: var(--brand-light);
}
