/* FOOTER */
*{
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding:0;
    font-family: 'Roboto', sans-serif;
}
#footer{
    width: 100%;
    background: #141414;
    font-weight: 400;
    font-size: 0.8em;
}

#footer h2{
    display: flex;
    justify-content: center;
    color: #696969;
    padding: 45px 0 25px;
}

#blockFooter{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 50px 0;
}

/* FORMAS DE PAGAMENTO */

#pagForm{
    display: flex;
    justify-content: center;
    padding: 10px;
}

#pagForm img{
    height: 25px;
    padding: 0 5px;
    object-fit: contain;
}

/* REDES SOCIAIS */


#redesSociais{
    display: flex;
    justify-content: center;
}

#redesSociais a{
    display: flex;
    align-items: center;
    color: white;
    padding: 0 0 0 20px;
}

#redesSociais img{
    width: 30px;
    padding: 0 5px;
}


/* LOJAS */

#listLojas{
    width: 100%;
    padding: 15px 0 0;
    
}

#listLojas ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#listLojas li{
    color: white;
    margin: 10px 30px 5px;
    padding: 0 0 10px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid darkgray;
}

#listLojas li a{
    display: flex;
    align-items: center;
    padding: 5px;
    color: white;
}

#listLojas li a:hover{
    color: lawngreen;
}

#listLojas img{
    width: 30px;
    padding: 0 10px 0 0;
}

/* COOKIES & DIREITOS */

#infoFooter{
    width: 100%;
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0 15px;
}

#infoFooter a{
    color: white;
}

#infoFooter a:hover{
    color: darkgray;
}

#infoFooter p{
    color: #696969;
    padding: 5px 0 0 5px;
}

/* MEDIA TYPES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


@media screen and (max-width: 700px){

/* LOJAS */

#listLojas li{
    margin: 10px 0 5px;
}
    
/* FORMAS DE PAGAMENTO */

#pagForm{
    flex-direction: column;
}

#pagForm img{
    height: 50px;
    padding: 5px 5px;
}

/* REDES SOCIAIS */


#redesSociais{
    flex-direction: column;
    align-items: center;
}

#redesSociais a{
    padding: 10px 0 0 0px;
}

    
}