/* ═══════════════ DORES (identificação) ═══════════════ */
.dores { background: var(--bg-elev); }
.dores-lista {
  max-width: 640px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dor-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.dor-item:hover { border-color: var(--green); transform: translateX(4px); }
.dor-bullet {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.dor-item p { color: var(--ink); font-size: 1.02rem; margin: 0; }

.dores-fechamento { text-align: center; }
