.box h3 {
  font-size: 2rem;
}

.box * {
  font-family: 'Source Sans Pro', sans-serif;
}

.box {
  font-family: 'Source Sans Pro', sans-serif;
  width:  340px;
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  margin-top: 40px;
  border: 1px solid #d7dee9;
}

.step-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 100px;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1400px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 60px;
}

.reversed {
  flex-direction: column-reverse;
}

.circle {
  width: 150px;
  height: 150px;
  background-color: #b3d9ff;
  color: #0059b8;
  font-weight: bold;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: relative;

  overflow: visible;
}

/* Ondas suaves animadas desde el círculo */
.circle::after,
.circle::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(0, 89, 184, 0.15);
  animation: ripple-soft 4s infinite ease-out;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.5;
	border: 1px solid #0059b8
}

.circle::before {
  animation-delay: 2s;
	opacity: 0.75
}

.circle .ripple-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(0, 89, 184, 0.15);
  animation: ripple-soft 4s infinite ease-out;
  z-index: 0;
}

.circle .ripple-ring.delay {
  animation-delay: 2s;
}

@keyframes ripple-soft {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .step-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .reversed {
    flex-direction: column !important;
  }

  .step {
    align-items: flex-start;
    gap: 0;
  }

  .circle {
    width: 40px !important;
    height: 40px !important;
    margin-left: -20px;
  }

  .circle *,
  .circle::after,
  .circle::before {
    width: 40px !important;
    height: 40px !important;
  }

  .box {
    margin-top: -20px;
  }

  canvas.leader-line {
    display: none !important;
  }
	    .circle {
        padding-left: 10px;
    }
}
}

.circle::markerline {
  content: '';
  position: absolute;
  top: 100%; /* justo debajo del círculo */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background-color: #0059b8;
  animation: grow-line 2s infinite ease-out;
  z-index: 0;
  opacity: 1;
}

 

.circle::after,
.circle::before {

  animation-delay: 1s; /* <--- NUEVO */

}

.circle::before {
  animation-delay: 3s; /* <--- se suma al delay anterior para escalonar */
}



@media (max-width: 1100px) {
    .circle {
        padding-left: 14px;
			
	
    font-size: 24px;


    }
}

