body {
    background-color: #ffe5b442;
}

#container-area {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    min-width: 60%;
}

h4{
    color: var(--heading-color);
}


.fa-solid {
    color: #85370d;
}

.btn-custom {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #85370d;
}

.btn-custom:hover,
.btn-custom:hover i,
.btn-gerar-boleto:hover {
    color: #fff;
    background-color: #85370d;
    transform: scale(1.05);
}

.btn-custom.active {
    background-color: #85370d;
    /* cor ativa */
    color: white;
}

.btn-custom:focus {
    box-shadow: none;
}

.card-parcela {
    background-color: #ffbc9a11;
    /*  1:#ffbc9a2d
            2:#f5e6c85e
            3:#ffe5b442
            4:#fff1e042
        */
}

.modal-body ul li {
    list-style: none;
}

.modal-body ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    #container-area {
        min-width: 100%;
    }

    #info-cliente p {
        font-size: 16px;
    }

    #botoes-info-contrato {
        margin-top: 10px;
        gap: 5px;
    }

    #info-contrato {
        display: flex;
        flex-direction: column;
    }

    .modal-header,
    .modal-body {
        font-size: 12px;
    }



}

@media (min-width: 769px) and (max-width: 992px) {
    #container-area {
        min-width: 100%;
    }

    #botoes-info-contrato {
        margin-top: 10px;
        gap: 5px;
        flex-direction: row;
    }


}

@media (min-width: 993px) and (max-width: 1600px) {
    #container-area {
        min-width: 75%;
    }

    #botoes-info-contrato {
        margin-top: 10px;
        gap: 5px;
        flex-direction: row;
    }
}