/* Dashboard, hub de automações e configurações (sem sombras, como manda a regra) */

/* ---------- Checklist "Comece por aqui" ---------- */
.checklist { display: flex; flex-direction: column; }
.checklist__item { display: flex; align-items: center; gap: 14px; padding: 12px 2px; }
.checklist__item + .checklist__item { border-top: 1px solid var(--border); }
.checklist__body { flex: 1; min-width: 0; }
.checklist__title { font-weight: 650; }
.checklist__sub { font-size: 13px; color: var(--text-2); }
.checklist__icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-full);
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
}
.checklist__icon svg { width: 16px; height: 16px; }
.checklist__icon--done { background: var(--green); color: #fff; }
.checklist__icon--todo { border: 2px solid var(--border-strong); color: var(--text-3); }

/* ---------- Bolinha de tipo da automação ---------- */
.kind-bubble {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--text-2);
}
.kind-bubble svg { width: 20px; height: 20px; }
.kind-bubble--comment_reply { background: var(--primary-tonal); color: var(--primary); }
.kind-bubble--story_mention { background: var(--orange-tonal); color: var(--orange); }
.kind-bubble--chatbot { background: #f1e9fd; color: var(--purple); }

/* ---------- Cards de modelo (galeria e dashboard) ---------- */
.template-card { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.template-card h3 { margin: 0; }
.template-card p { margin: 0; }
.template-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 650;
  color: var(--text-2);
}
.ig-tag svg { width: 14px; height: 14px; }
