.how-it-works .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.steps-container {
  margin-top: 2.5rem;
}

.step-item {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.step-content p,
.step-content ul {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.step-content li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
  margin-left: 1.5rem;
}

.step-highlight {
  background-color: rgba(212, 166, 91, 0.12);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  margin-top: 1rem;
}

.step-highlight i {
  color: var(--accent-color-dark);
  margin-right: 0.5rem;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
  .step-item {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 1rem;
  }
}
