/* Proceso de acreditación oficial y emisión de título */

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  margin: 55px auto;
}

.step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(50% + 25px);
  width: calc(100% - 50px);
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-blue-mid),
    #7ab8ee,
    transparent
  );
  z-index: 0;
}

.step:nth-child(2)::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #7ab8ee 30%,
    var(--color-blue-mid) 100%
  );
}

.step-circle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-blue-princial);
  border: 3px solid var(--color-blue-mid);
  color: var(--color-blue-mid);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(36, 129, 216, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-circle h2 {
  text-shadow: 0 4px 15px rgba(236, 236, 236, 0.65);
}

.step-circle::before {
  content: "";
  position: absolute;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(122, 184, 238, 0.35);
  z-index: -1;
}

.step-circle::after {
  content: "";
  position: absolute;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(122, 184, 238, 0.18);
  z-index: -2;
}

.step-circle:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(36, 129, 216, 0.28);
}

.step-content {
  margin-top: 15px;
  padding: 0 15px;
}
