/* empezar section */
.empezar-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media(max-width: 780px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  background: linear-gradient(160deg, var(--panel), #0e0b07);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1206;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -6px var(--gold);
}
.step h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 6px 0 6px;
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}
