/* Área da Mente */
.mind-hero { background: linear-gradient(135deg, var(--navy), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.mind-hero-icon {
  width: 64px; height: 64px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.mind-hero-icon .icon-svg { width: 32px; height: 32px; }
.mind-hero h2 { color: var(--gold); margin-bottom: 0.5rem; }
.mind-hero p { color: var(--text-secondary); font-size: 0.9rem; }

.mind-topics { display: flex; flex-direction: column; gap: 0.75rem; }
.topic-card { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 1.25rem; cursor: pointer; transition: var(--transition); }
.topic-card:hover { border-color: var(--gold); }
.topic-header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.5rem; }
.topic-icon-wrap {
  width: 40px; height: 40px;
  background: var(--gold-muted);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.topic-title { font-weight: 700; }
.topic-desc { font-size: 0.85rem; color: var(--text-muted); }

/* ── Reescrita de Crenças ───────────────────────────────────────── */
.belief-tool-card {
  background: linear-gradient(135deg, var(--surface), color-mix(in srgb, #ce93d8 8%, var(--surface)));
  border: 1px solid color-mix(in srgb, #ce93d8 30%, var(--border));
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.belief-tool-header { display: flex; gap: 1rem; align-items: flex-start; }
.belief-tool-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: color-mix(in srgb, #ce93d8 15%, var(--surface));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #ce93d8;
}
.belief-tool-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.belief-tool-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.beliefs-history { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem 1.25rem; }
.belief-history-item { padding: 0.75rem 0; border-bottom: 1px solid var(--border-subtle); position: relative; }
.belief-history-item:last-child { border-bottom: none; }
.belief-limiting, .belief-empowering { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.375rem; color: var(--text-secondary); }
.belief-arrow { color: var(--text-muted); display: flex; justify-content: flex-start; padding: 0.25rem 0; }
.belief-arrow .icon-svg { width: 14px; height: 14px; }
.belief-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem; border-radius: 4px; flex-shrink: 0; margin-top: 1px;
}
.belief-tag.limiting   { background: #ef9a9a22; color: #ef9a9a; }
.belief-tag.empowering { background: #a5d6a722; color: #a5d6a7; }
.belief-delete-btn { position: absolute; top: 0.75rem; right: 0; background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 0.25rem; opacity: 0; transition: opacity 0.2s; }
.belief-history-item:hover .belief-delete-btn { opacity: 1; }
