/* "Como funciona em 5 passos" */
.passos {
  padding: 96px 40px;
  background: white;
}

.passos-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.passos-head {
  text-align: center;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.passos-head .eyebrow-line { justify-content: center; }
.passos-head h2 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -1.8px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
}
.passos-head h2 em { color: var(--green); font-style: italic; font-weight: 700; }
.passos-head .passos-sub {
  font-size: 14.5px;
  color: var(--ink2);
  margin-top: 12px;
  line-height: 1.5;
}

.passos-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.passos-wrap .line {
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 6px, transparent 6px 12px);
  opacity: .35;
}

.passos-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.passo { text-align: center; padding: 0 8px; }
.passo .n {
  width: 56px; height: 56px;
  border-radius: 28px;
  background: var(--green);
  color: white;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  border: 4px solid white;
  box-shadow: 0 0 0 1px rgba(0,169,79,.2);
  transition: transform var(--transition-fast);
}
.passo:hover .n { transform: scale(1.08); }

.passo .t {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.passo .d {
  font-size: 13px;
  color: var(--ink2);
  margin: 6px auto 0;
  line-height: 1.5;
  max-width: 200px;
}
.passo .d a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}
.passo .d a:hover { color: var(--green-hover); }

.passos-cta-wrap {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.passos-cta-wrap .note {
  font-size: 13px;
  color: var(--ink2);
}
