.how{
  padding: 100px 20px;
  background: white;
  text-align: center;
}

/* TITULO */
.section-title{
  font-size: 32px;
  margin-bottom: 50px;
  color: #0a1f44 !important; /* 🔵 azul forzado */
}

/* CONTENEDOR */
.steps-pro{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* STEP */
.step{
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

/* HOVER */
.step:hover{
  transform: translateY(-5px);
}

/* CÍRCULO */
.circle{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #eaf1ff;
  color: #0a1f44;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

/* ACTIVO 🔥 */
.step.active .circle{
  background: #0a1f44;
  color: white;
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(10,31,68,0.3);
}

/* TEXTO STEP */
.step p{
  margin-top: 10px;
  font-weight: 600;
  color: #0a1f44;
}

/* LINEA */
.line{
  width: 80px;
  height: 2px;
  background: linear-gradient(to right,#0a1f44,#ccc);
}

/* CONTENIDO */
.step-content{
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  transition: 0.3s;
}