.step-item.completed .circle{
    background:#198754;
    color:#fff;
}

.step-item.completed .circle::after{
    content:"✓";
}

.step {
    display: none;
  }
  
  .step.active {
    display: block;
  }
  
  .booking-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:40px;
    gap:10px;
  }
  
  .step-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    position:relative;
  }
  
  .circle{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#ddd;
    color:#666;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
  }
  
  .step-item.active .circle{
    background:#0d6efd;
    color:#fff;
  }
  
  .step-item.completed .circle{
    background:#198754;
    color:#fff;
  }
  
  .line{
    width:80px;
    height:3px;
    background:#ddd;
  }

  .step-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-top:35px;
}

.btn-step{
  border:none;
  border-radius:14px;
  padding:14px 24px;
  font-size:15px;
  font-weight:600;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:10px;
  cursor:pointer;
  transition:all .25s ease;
}

.btn-step span{
  pointer-events:none;
}


/* BOTON ATRAS */
.btn-prev{
    background:#f1f3f5;
    color:#495057;
}

.btn-prev:hover{
    background:#e9ecef;
    transform:translateY(-2px);
}

/* BOTON CONTINUAR */
.btn-next{
    background:#0d6efd;
    color:#fff;
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.btn-next:hover{
    background:#0b5ed7;
    transform:translateY(-2px);
}

/* ICONOS */
.btn-step .icon{
    font-size:18px;
}