/* bolinhas herdando a cor do texto do <ul> (text-live-blue / text-gold) */
.pretty-list{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pretty-list li{
    position: relative;
    padding-left: 1em;
    margin-bottom: 10px;
    line-height: 1.45;
}

.pretty-list li:last-child{
    margin-bottom: 0;
}

.pretty-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: currentColor; 
}

/* Card com borda esquerda colorida (reaproveitando seu padrão) */
.special-border-left{
  /* border: 1px solid var(--card-border, var(--live-blue));    */
  border: 1px solid #D9E7F8;        
  border-left: 4px solid var(--accent, var(--live-blue));
  border-radius: 16px;
  background: #fff;
}

.accent-purple{ --accent: var(--purple); }
.accent-live-blue{ --accent: var(--live-blue); }
.accent-green{ --accent: var(--green)}

.border-light-green-var{ --card-border: var(--light-green); }
.border-light-blue-var{ --card-border: var(--light-blue); }
.border-light-gray-var{ --card-border: var(--light-gray); }


/* Ícone + linha vertical */
.phase-rail{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.phase-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.phase-icon i{
  font-size: 20px;
}

/* linha vertical (cor via classe Bootstrap bg-light-purple) */
.phase-line{
  width: 3px;
  border-radius: 99px;
  flex: 1 1 auto;
  margin-top: 10px;
}

.pretty-list.no-markers li::before{
  content: none !important;
}

/* fundo do quadro (diagonal green -> light-blue) */
.bg-diag-green-lightblue{
  background: linear-gradient(135deg, var(--light-green-2) 50%, var(--light-blue) 100%);
}

.bg-gradient-liveblue-purple{
  background: linear-gradient(to right, var(--live-blue), var(--blue-purple));
}

/* bolinha com “check” em gradiente (opcional, mas igual da imagem) */
.icon-gradient-green-blue{
  background: linear-gradient(135deg, var(--green) 0%, var(--live-blue) 100%);
}

/* badge “Finalização” com gradiente (opcional, igual da imagem) */
.badge-gradient-green-blue{
  background: linear-gradient(90deg, var(--green) 0%, var(--live-blue) 100%);
  color: #fff;
}

/* bolinha perfeita (nunca vira oval) */
.step-bubble{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700; /* fw-bold */
}

/* mobile menor */
@media (max-width: 767.98px){
  .step-bubble{
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}
