/* =========================================================
   STEPS — passo a passo
   ========================================================= */
.steps {
  padding-block: var(--gap-section);
  background: var(--color-bg);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding-inline: 16px;
}

.step::after {
  content: "";
  position: absolute;
  top: 46px;
  left: calc(50% + 56px);
  width: calc(100% - 112px);
  border-top: 2px dashed var(--color-border);
}
.step:last-child::after { display: none; }

.step-badge {
  width: 26px;
  height: 26px;
  margin-inline: auto 0;
  margin-bottom: -13px;
  margin-left: calc(50% + 26px);
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 92px;
  height: 92px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform var(--t-med) var(--ease);
}
.step:hover .step-icon { transform: translateY(-4px); }

.step h3 {
  margin-top: 20px;
  font-size: 16px;
}

.step p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
