/* Á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); }
