.process-steps-container {
  max-width: 60%;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.steps-wrapper {
  margin-top: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.circle-icon {
  width: 120px;
  height: 120px;
  border: 14px solid #EB690B;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.circle-icon img {
  object-fit: contain;
}

.dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.dots span {
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
}

.step-number {
  font-size: clamp(10px, 2vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-title {
  font-size: clamp(0.9rem, 0.8vw, 1.05rem);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

.step-desc {
  font-size: clamp(0.75rem, 0.7vw, 0.9rem);
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
}

/* Responsivo */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
    padding: 12px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step, .step.step--lifted {
    display: block;
    position: relative;
    text-align: left;
    padding-left: 100px; /* Aumentado de 85px a 100px */
    min-height: 80px;
  }
  
  /* Ocultamos los puntos verticales */
  .dots {
    display: none;
  }
  
  /* Icono circular */
  .circle-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px; /* Ligeramente aumentado de 75px a 80px */
    height: 80px; /* Ligeramente aumentado de 75px a 80px */
    border-width: 6px;
    margin: 0;
  }
  
  .circle-icon img {
    width: 100%;
    margin: 0;
  }
  
  /* Número */
  .step-number {
    display: inline-block;
    font-size: clamp(0.9375rem, 1.5625vw, 1.5625rem);
    font-weight: 700;
    margin: 0;
    line-height: 1;
  }

  /* Botón full-width */
  .button-wrapper {
    margin-top: 30px;
  }
  
  .cta-button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
  }
  
  /* Eliminamos los espacios adicionales en los pasos elevados */
  .step.step--lifted br {
    display: none;
  }
}