body {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header.vest-site-header {
    background: white;
    border-bottom: 1px solid #eaeaea;
    padding: .75rem 1rem;
}

header.vest-site-header .vest-site-header__logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

header.vest-site-header .vest-site-header__titulo {
    min-width: 0;
}

main {
    flex: 1;
    padding: 1rem 0;
}

.card-panel {
    margin-top: 20px;
}

.btn-primary {
    color: #FFF !important
}

@media (max-width: 768px) {
    .card-panel {
        padding: 1rem;
    }
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step-indicator-container {
    display: flex;
    justify-content: space-around;
    /* Ou space-between, ajuste conforme preferir */
    align-items: flex-start;
    /* Alinha os itens ao topo para que os labels fiquem abaixo dos círculos */
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    /* Impede que os itens quebrem linha em telas menores, pode precisar de ajuste */
}

.step-indicator {
    display: flex;
    flex-direction: column;
    /* Coloca o círculo acima do label */
    align-items: center;
    text-align: center;
    position: relative;
    flex-grow: 1;
    /* Faz com que cada step-indicator ocupe espaço igual */
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    /* Cinza para etapas pendentes */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    /* Espaço entre o círculo e o label */
    z-index: 2;
    position: relative;
    /* Para a linha ficar atrás */
}

.step-indicator.active .step-circle {
    background-color: #007bff;
    /* Azul para etapa ativa */
}

.step-indicator.completed .step-circle {
    background-color: #28a745;
    /* Verde para etapas completas */
}

.step-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.step-indicator.active .step-label,
.step-indicator.completed .step-label {
    color: #000;
    /* Cor mais escura para label ativo/completo */
    font-weight: bold;
}

.step-line {
    position: absolute;
    top: 15px;
    /* Metade da altura do círculo */
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #e0e0e0;
    /* Cor da linha */
    z-index: 1;
    /* Atrás do círculo */
}

.step-indicator:first-child .step-line {
    left: 50%;
    /* Linha começa no meio do primeiro círculo */
}

.step-indicator:last-child .step-line {
    display: none;
    /* Sem linha depois do último círculo */
}

.step-indicator.completed .step-line {
    background-color: #28a745;
    /* Linha verde para etapas completas */
}

.input-valor-negociado {
    background-color: #e9ecef !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}


/* intl-tel-input */
.iti {
    width: 100%;
}

.iti__flag-container {
    padding: 0 !important;
}

.iti__country-list {
    z-index: 3 !important;
}