.como-funciona {
  padding: var(--section-py) var(--section-px);
  position: relative; z-index: 1;
}
.cf-container { max-width: 960px; margin: 0 auto; text-align: center; }
.cf-container .section-title { text-align: center; }
.cf-sub {
  font-size: 16px; color: var(--gray); text-align: center;
  margin: 0 auto 56px; max-width: 480px;
}

/* ── Steps row ── */
.cf-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.cf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.cf-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(73,36,245,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  background: rgba(73,36,245,0.06);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.cf-step-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cf-step-text {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 14px);
  color: var(--gray);
  line-height: 1.75;
}

/* Connector line between steps */
.cf-step-connector {
  align-self: 28px;
  margin-top: 28px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(73,36,245,0.3), rgba(73,36,245,0.1));
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cf-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cf-step-connector {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(73,36,245,0.3), rgba(73,36,245,0.1));
  }
  .cf-step { padding: 0; }
}
