.footerPage {
    display: inline-block;
    width: 100%;
    padding: 50px 0 20px 0;
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    z-index: 9999999;
    position: relative;
}

.footerPage .footerInterno {
    max-width: 2000px;
    width: 100%;
}

/* Box Cima */

.footerPage .boxCima {
    float: left;
    width: 100%;
    padding: 0 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footerPage .boxCima .boxFooter .boxTexto {
    float: left;
    width: 100%;
    margin: 40px 0;
}

.footerPage .boxCima .boxFooter .boxTexto p {
    color: #999999;
    font-size: 13px;
    margin: 0;
    line-height: 22px;
}

.footerPage .boxCima .boxFooter .redesSociais {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footerPage .boxCima .boxFooter .redesSociais a {
    display: inline-block;
}

.footerPage .boxCima .boxFooter .redesSociais a + a {
    margin-left: 5px;
}

.footerPage .boxCima .boxFooter .tituloRodape {
    float: left;
    width: 100%;
    color: #444444;
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.footerPage .boxCima .boxFooter .menuRodape {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footerPage .boxCima .boxFooter .menuRodape li {
    float: left;
    width: 100%;
    list-style: none;
}

.footerPage .boxCima .boxFooter .menuRodape li + li {
    margin-top: 7px;
}

.footerPage .boxCima .boxFooter .menuRodape li a {
    color: #999;
    text-decoration: none;
}

.footerPage .boxCima .boxFooter .menuRodape li a:hover {
    color: #444444;
}

/* Box Baixo */

.footerPage .boxBaixo {
    margin-top: 40px;
    background: #FAFAFA;
    padding: 20px 100px;
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerPage .boxBaixo .formasDePagamento {
    display: flex;
    align-items: center;
}

.footerPage .boxBaixo .formasDePagamento span {
    font-weight: 600;
    margin-right: 20px;
}

.footerPage .boxBaixo .formasDePagamento .listaFormas {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footerPage .boxBaixo .formasDePagamento .listaFormas img + img {
    margin-left: 10px;
}

.footerPage .boxBaixo .boxSelos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footerPage .boxBaixo .boxSelos img + img {
    margin-left: 10px;
}

@media only screen and (max-width: 1200px) {

    .footerPage .boxCima {
        padding: 0 20px;
        gap: 30px;
    }

    .footerPage .boxBaixo {
        padding: 30px 20px;
    }

}

@media only screen and (max-width: 950px) {

    .footerPage .boxCima {
        grid-template-columns: repeat(2, 1fr);
    }

    .footerPage .boxBaixo {
        flex-direction: column;
    }

    .footerPage .boxBaixo .formasDePagamento {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footerPage .boxBaixo .formasDePagamento span {
        margin-right: 0;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 650px) {

    .footerPage .boxCima {
        grid-template-columns: repeat(1, 1fr);
    }

    .footerPage .boxBaixo .formasDePagamento .listaFormas {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footerPage .boxBaixo .formasDePagamento .listaFormas img {
        margin-bottom: 10px;
    }

}