/* Radar de Dopamina */
.dopamine-intro { background: linear-gradient(135deg, var(--surface), var(--navy-light)); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.dopamine-intro-icon {
  width: 48px; height: 48px;
  background: var(--gold-muted);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.dopamine-intro-icon .icon-svg { width: 24px; height: 24px; }
.dopamine-intro-title { font-weight: 700; margin-bottom: 0.375rem; }
.dopamine-intro-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.dopamine-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.dopamine-slider-row { margin-bottom: 1.25rem; }
.dopamine-slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.dopamine-slider-label { font-size: 0.875rem; font-weight: 600; }
.dopamine-slider-value { font-size: 1.1rem; font-weight: 800; color: var(--gold); }

.dopamine-chart { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.chart-bars { display: flex; gap: 0.375rem; align-items: flex-end; height: 120px; margin-top: 1rem; }
.chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.375rem; height: 100%; justify-content: flex-end; }
.chart-bar { width: 100%; background: var(--gold-muted); border-radius: 4px 4px 0 0; min-height: 4px; transition: height 0.6s ease; border: 1px solid var(--border); }
.chart-bar.social { background: rgba(33,150,243,0.3); border-color: rgba(33,150,243,0.5); }
.chart-bar.games { background: rgba(156,39,176,0.3); border-color: rgba(156,39,176,0.5); }
.chart-bar-date { font-size: 0.6rem; color: var(--text-muted); white-space: nowrap; }

.dopamine-bool-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem; background: var(--surface-2); border-radius: var(--radius-md); margin-bottom: 0.75rem; }
.dopamine-bool-label { font-size: 0.875rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }

.urgency-counter { display: flex; align-items: center; gap: 1rem; }
.counter-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface-3); color: var(--text-primary); font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.counter-btn:hover { border-color: var(--gold); color: var(--gold); }
.counter-value { font-size: 1.5rem; font-weight: 800; min-width: 40px; text-align: center; }
