/* Meu Progresso */
.level-card {
  background: linear-gradient(135deg, var(--surface), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.level-card::after { content: ''; position: absolute; top: -30%; right: -20%; width: 200px; height: 200px; background: var(--gold-muted); border-radius: 50%; pointer-events: none; }
.level-icon-wrap {
  width: 64px; height: 64px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--gold);
  position: relative; z-index: 1;
}
.level-icon-wrap .icon-svg { width: 32px; height: 32px; }
.level-name { font-size: 1.5rem; font-weight: 800; color: var(--gold); position: relative; z-index: 1; }
.level-points { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.375rem; position: relative; z-index: 1; }
.level-progress { margin-top: 1.25rem; position: relative; z-index: 1; }
.level-progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.streak-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.5rem; }
.streak-numbers { display: flex; gap: 1rem; margin-top: 1rem; }
.streak-num { flex: 1; text-align: center; }
.streak-num .num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.streak-num .lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.streak-flame { font-size: 2.5rem; }

.identity-chart { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.5rem; }
.identity-bars { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.identity-bar-item { display: flex; align-items: center; gap: 0.75rem; }
.identity-bar-label { font-size: 0.8rem; min-width: 100px; color: var(--text-secondary); }
.identity-bar-wrap { flex: 1; background: var(--surface-3); border-radius: 4px; height: 8px; }
.identity-bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.bar-protagonist { background: var(--gold); }
.bar-disciplined { background: var(--success); }
.bar-automatic { background: var(--text-muted); }
.bar-victim { background: var(--danger); }
.identity-bar-count { font-size: 0.75rem; color: var(--text-muted); min-width: 24px; text-align: right; }

.history-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.875rem; background: var(--surface); border-radius: var(--radius-md); margin-bottom: 0.5rem; }
.history-icon {
  width: 36px; height: 36px;
  background: var(--surface-3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.history-content { flex: 1; }
.history-title { font-size: 0.875rem; font-weight: 600; }
.history-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
