@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;1,300&display=swap');




footer {
    height: 100vh;
    background-color: var(--mydarkblue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}

footer .row{
    width: 70vw;
}

.col{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.uwDireita{
    display: flex;
    justify-content: end;
}

.uwDireita ul{
    align-items: end;
}

hr{
    width: 70vw;
    border: solid 1px ;
    color: var(--myred);
}

footer ul, .ulWrapper div{
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    text-align: start;
}

footer li{
    list-style-type: none;
    padding: 0;
}


.ulWrapper{
    width: 300px;
}


.redeFooter{
    margin: 0 0 0 15px;
}

footer a{
    text-decoration: none;
    color: white;
    width: fit-content;
    font-weight: 700;
}


.redirectIcon{
    transform: translateX(-20px);
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}

footer li:hover .redirectIcon{
    transform: translateX(20px);
    opacity: 1;
}


#redesFooter{
    font-size: 30px;
    justify-content: space-between;
}

#redesFooter li{
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70%;
    transition: all .2s ease;
}

.instagram:hover{
    color: rgb(224, 119, 154);
    background-color: white;
}

.linkedin:hover{
    color: rgb(49, 139, 241);
    background-color: white;

}
.github:hover{
    background-color: white;

    color: rgb(150, 62, 150);
}

@media screen and (max-width:500px) {
    footer .row{
        width: 90vw;
    }
}

@media screen and (max-width:320px) {
    footer .row{
        width: 100vw;
    }
}