footer {
    background: var(--azul);
    margin-top: 120px;
    padding: 60px 0;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}

footer a {
    color: #fff;
}

footer strong {
    font-weight: bold;
}

footer .logo {
    position: relative;
    display: table;
}

footer .logo::after {
    content:'';
    width: 77.906px;
    height: 4.516px;
    display: block;
    border-radius: 5px;
    position: absolute;
    bottom: -16px;
    left: 0;
    background: #fff;
}

footer .colunas {
    margin: 32px 0;
    padding-top: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .links {
    min-width: 120px;
}

footer .links a {
    display: block;
    border: 1px #dedede solid;
    border-radius: 3px;
    padding: 8px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 8px;
    font-weight: bold;
    transition: all .5s;
}

footer .links a:hover {
    background: var(--laranja);
    border-color: var(--laranja);
}

footer .contato {
    min-width: 240px;
    max-width: 240px;
}

footer .sobre {
    max-width: 235px;
}

footer .social ul {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-top: 16px;
}

footer .social svg path {
    transition: all .5s;
}

footer .social svg:hover path {
    fill: var(--laranja);
}

footer .copy {
    text-align: center;
    font-weight: bold;
}