footer {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    background-color: var(--footer-background);
    margin-top: 200px;
    display: flex;

}

footer *{
    transition: all .1s;

}

footer {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    background-color: var(--color-7);
    margin-top: 200px;
    display: flex;

}

footer .item {
    width: 100%;
}

footer .item:not(:first-child) {
    border-left: 2px solid #aaa;
}

footer .item-logo {
    color: #585858;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .item-logo h3 img {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    filter: drop-shadow(0px 0px var(--color-8));
}

footer .item-logo p {
    margin-top: 10px;
    width: 60%;
    white-space: wrap;
    text-align: center;
    color: var(--color-8);
    font-style: italic;
    font-weight: 600;
}

footer .formas-pagamento-footer {
    text-align: center;
    color: #585858;
}

footer .formas-pagamento-footer ul {
    width: 50%;
    margin-top: 30px;
    margin-left: 30px;
    text-align: left;
}

footer .formas-pagamento-footer ul li {
    margin-top: 5px;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
}

footer .menu-footer {
    text-align: center;
    color: #585858;
}

footer .menu-footer ul {
    width: auto;
    margin-top: 10px;
    margin-left: 30px;
    text-align: left;
}

footer .menu-footer ul li {
    width: 200px;
    border-radius: 5px;
    padding: 10px;
    border-bottom: 1px solid transparent;
}

footer .menu-footer ul li a {
    text-decoration: underline transparent 2px;
    color: #585858;
    font-size: 1rem;
}

footer .menu-footer ul li:hover{
    border-color: black;
}


.copyright {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    text-align: center;
    border-top: 1px solid var(--color-8);
    background-color: var(--color-7);
    color: var(--color-8);
}

@media screen and (max-width: 850px){
    footer {
        flex-direction: column;    
    }

    footer .item{
        border-left: none;
    }

    footer .menu-footer h3{
        margin-top: 10px;
    }

    footer .menu-footer ul li{
        padding: 4px;
    }

    .copyright {
        font-size: .8rem;
    }
}