
/* 🔵 Progresso da compra */
.progresso {
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
}

.progresso progress {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    appearance: none;
}

progress::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
}

progress::-webkit-progress-value {
    background-color: #007bff;
    border-radius: 10px;
}

.etapas {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #888;
}

.etapas span.ativo {
    color: #007bff;
    font-weight: bold;
}
