/* #region parte_1 */
.footer .parte1 {
    /* background-color: orange !important; */
    background-color: #2A1856;
    display: flex;
    justify-content: center;
}

.footer .parte1 .wrap {
    /* background-color: orange; */
    color: var(--branco-alt);
    height: 17.5rem;
    width: 70vw;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer .parte1 .wrap .icones {
    /* background-color: orange; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer .parte1 .wrap .icones img {
    /* background-color: orange; */
    width: 1.25rem;
    height: auto;
    filter: brightness(0) invert(1);
    cursor: pointer;
    transition: transform ease 300ms;
}

.footer .parte1 .wrap .icones img:hover {
    transition: transform ease 300ms;
    transform: translate(0, -7.5px);
}

.footer .parte1 .imagem img {
    width: 10rem;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer .parte1 .wrap .ouvidoria {
    /* background-color: orange; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;

    text-transform: uppercase;
}

.footer .parte1 .wrap b {
    font-size: 1.25rem;
}

/* #endregion */

/* #region parte_2 */
.footer .parte2 {
    /* background-color: orange !important; */
    background-color: #0F0D0F;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 12.5rem;
    color: var(--branco-alt);
    font-size: 1.25rem;
    line-height: 2rem;
}

.footer .parte2 .infos {
    /* background-color: orange !important; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50vw;
    gap: 1rem;
}

.footer .parte2 .infos .info {
    /* background-color: orange !important; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    font-size: 1.5rem;
}

.footer .parte2 .infos .info span:nth-of-type(1) {
    font-weight: 600;
}

.footer .parte2 .infos .info span:nth-of-type(2) {
    /* background-color: orange; */
    font-weight: 400;
    font-size: 1.1rem;
}

/* #endregion */

/* #region parte_3 */
.footer .parte3 {
    /* background-color: orange !important */
    background-color: #ECDDEC;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 10rem;
}

.footer .parte3 .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.footer .parte3 .logos img {
    width: 7.5rem;
    height: auto;
}

/* #endregion */

/* #region parte_4 */
.footer .parte4 {
    /* background-color: orange !important */
    background-color: #2A1856;
    display: flex;
    justify-content: center;
    align-items: center;

    height: fit-content;
    padding-top: 3rem;
    padding-bottom: 3rem;

    color: var(--branco-alt);
}

.footer .parte4 .infos {
    /* background-color: orange; */
    width: 90vw;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer .parte4 .infos .opaco {
    /* background-color: orange !important; */
    opacity: 0.5;
}

.footer .parte4 .infos .direita {
    /* background-color: orange; */
    display: flex;
    gap: 2rem;
}

/* #endregion */

/* #region media_queries */
@media (max-width:1920px) {}

/* hi-res laptops and desktops */
@media (max-width:1281px) {
    .footer .parte1 .wrap {
        /* background-color: orange; */
        width: 100vw;
    }

    .footer .parte2 .infos {
        /* background-color: orange; */
        width: 75vw;
    }
}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {
    .footer .parte3 .logos {
        /* background-color: orange; */
        display: flex;
        flex-wrap: wrap;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .footer .parte4 .infos {
        /* background-color: orange; */
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
        text-align: center;
    }

    .footer .parte4 .infos .direita {
        /* background-color: orange; */
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 2rem;
    }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {
    .footer .parte1 .wrap {
        /* background-color: orange; */
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer .parte2 .infos {
        /* background-color: orange; */
        display: flex;
        flex-direction: column;
        width: 85vw;
        gap: 2rem;
        height: fit-content;
        margin-top: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .footer .parte3 {
        display: none;
    }
}

/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
@media (max-width:600px) {}

/* smartphones, Android phones, landscape iPhone */
@media (max-width:480px) {}

/* #endregion */