/* ─── PROCESSO STEPS ─── */
.processo-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { color: var(--green-deep); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); max-width: none; }
.step-arrow {
  font-size: 1.8rem;
  color: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .step-arrow { display: none; }
  .step { max-width: 100%; }
}
