/**********/
/* FOOTER */
/**********/

footer{    
    background-color: black;
    height: 315px;
    padding: 50px 100px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 15px solid green;
}
footer #footer-logo img{
    max-width: 250px;
}
footer #footer-redes{
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}
footer #footer-redes li{
    display: inline-flex;
    margin-left: 5px;
}
footer #footer-redes li img{
    max-width: 35px;
    opacity: 0.9;
    transition: 0.2s;
}
footer #footer-redes li img:hover{
    opacity: 1;
}
footer #footer-redes .linha-linha {
    display: block;
    color: #FFF;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 10px;
}
footer #footer-redes .copyright{
    display: block;
    color: #FFF;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 12px;
}
footer #mapa{
    position: absolute;
    right: 0;
    z-index: 1;
    bottom: 30px;
    right: 30px;
}
footer #mapa img{
    opacity: 0.3;
    max-width: 650px;
}

@media screen and (min-width: 550px) and (max-width: 767px){
    footer{
        height: 500px;
    }
}

@media screen and (max-width: 767px){ 
    footer{
        text-align: center;
        padding: 60px 0;
        background-size: 80%;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("../../../img/mapa-mundi-claro.png");
    }
    footer #footer-logo img{
        max-width: 200px;
    }
    footer #footer-redes {
        text-align: center;
        justify-content: center;
        margin-top: 50px;
    }
    footer #footer-redes li img {
        max-width: 30px;
    }
    footer #footer-redes li:last-of-type {
        font-size: 12px;
    }
    footer #mapa {
        display: none;
    }
}

@media screen and (min-width: 1500px) {   
    footer {
        height: 450px;
    }
    footer #mapa {
        bottom: 50px;
        right: 50px;
    }
    footer #mapa img {
        max-width: 950px;
    }
    footer #footer-logo img {
        max-width: 350px;
    }
    footer #footer-redes li {
        margin-left: 12px;
    }
    footer #footer-redes li img {
        max-width: 55px;
    }
    footer #footer-redes .linha-linha {
        font-size: 23px;
    }
    footer #footer-redes .copyright {
        font-size: 15px;
    }   
}