*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    /*Cores do header*/
    --cor-primaria: #0578A6;
    --cor-secundaria: #022E40;
    --cor-About: #022E40;
    /*Fonte principal*/
    --fonte-principal: "Merriweather Sans";
}
.content-footer{
    background-color: #001C27;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px;
    transition: .4s ease-in-out;
}
.listFooter{
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.link{
    align-items: center;
}
.listFooter li{
    list-style: none;
}
.contact{
    order: 1;
}
.linesDetails{
    order: 2;
}
.img{
    order: 3;
}
.txt{
    width: 50%;
}
.link li{
    width: 100%;
}
.link li a{
    color: white;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    transition: .3s ease-in-out;
}
.link li a:hover{
    background-color: white;
    border-radius: 10px;
    color: black;
}
.footer-option{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
}
.linesDetails{
    border-right: 1px solid white;
    border-left: 1px solid white;
}
.localLine{
    display: flex;
    height: 230px;
}
.lineFooter{
    background-color: white;
    width: 1px;
    height: 100%;
}
.dev{
    font-size: 18px;
    color: white;
    text-align: center;
    padding: 10px;
    border: 1px solid #005679;
    background-color: #001C27;
    font-family: var(--fonte-principal);
}
.dev .link{
    text-decoration: none;
    color: white;
    transition: .2s ease-in-out;
    border: 1px solid transparent;
    border-bottom: 1px solid #0ea9e6;
}
.dev .link:hover{
    color: #0ea9e6;
    border: 1px solid #0c9dd6;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
}
@media(max-width: 768px){
    .link li a:active{
        background-color: white;
        border-radius: 10px;
        color: black;
    }
    .txt{
        width: 100%;
    }
    .contact{
        order: 2;
        border-top: 1px solid white;
        border-bottom: 1px solid white;
        padding: 20px 0px;
        text-align: center;
    }
    .contact .listFooter{
        align-items: center;
    }
    .linesDetails{
        order: 1;
        border-left: none;
        border-right: none;
    }
    .img{
        order: 3;
    }
    .content-footer{
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}