

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
}

.step span {
    display: inline-block;
    background-color: var(--cinza-medio-2);
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.step.active span {
    background-color: var(--verde-escuro);
}

.step.active span i {
    line-height: 40px;
}

.step.atual span {
    background-color: var(--verde-claro);
}




.step p {
    font-size: 14px;
    color: #333;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.btn.azul {
    background-color: #007bff;
}

.btn.verde {
    background-color: #28a745;
}

.btn:hover {
    background-color: #0056b3;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.prev-btn {
    background-color: #6c757d !important;
}

.prev-btn:hover {
    background-color: #5a6268 !important;
}


.file-upload-wrapper {
    flex: calc(33% - 22px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* background-color: #f1f1f1; */
    background-color: white;
    border-radius: 10px;
    padding: 10px 20px;
    width: fit-content;
    /* min-width: 220px; */
    height: auto;
    min-height: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 12px;
}

@media (0 < width < 720px)
{
    .file-upload-wrapper {
        flex: calc(100%);
        margin: 12px 0;
    }
}

.custom-file-upload {
    width: 100%;
    height: 44px;
    background-color: var(--verde-claro);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    margin: 8px auto;
    text-align: center;
}

.custom-file-previw
{
    width: 100%;
    height: 44px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 8px auto;
    text-align: center;
    background-color: var(--azul-medio);
    color: white;
    outline: none;
}

.custom-file-previw.active
{
    display: flex;
}

.custom-file-previw:hover
{
    background-color: var(--azul-medio-hover);

}

.custom-file-upload:hover {
    background-color: var(--verde-escuro);
}

.custom-file-upload:focus {
    outline: none;
    background-color: var(--verde-escuro);
}

.file-upload-wrapper p
{
    text-align: center;
}

.custom-file-upload i {
    margin-right: 5px;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-name {
    font-size: 14px;
    color: #666;
}