footer {
    background: url(../img/bg-footer.jpg) center center var(--azul);
    background-size:cover;
    color:#fff;
}

footer .container {
    padding:100px 15px;
}

/* Sobre */
footer .about {
    display: flex;
    gap: 50px;
    align-items: center;
    color:#fff;
}

footer .about h3 {
    font-size:24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

footer .about p {
    line-height: 30px;
}

footer .mainmenu_logo h1 {
    margin: 0;
}

footer .local {
    margin: 30px 0;
    color:#8991d6;
    font-size:12px;
    text-align: right;
}

footer .local i {
    margin-left: 20px;
    margin-right: 5px;
    font-size:13px
}

footer .local a {
    color:#8991d6;
    font-weight: bold;
}

/* Menu */
footer .menu {
    border-top: 1px #525ba6 solid;
    border-bottom: 1px #525ba6 solid;
    display: flex;
    align-items: center;
}

footer .menu ul {
    flex: 1;
    display: flex;
}

footer .menu ul a {
    color:#a7b0ff;
    font-weight: bold;
    font-size:14px;
    text-transform: uppercase;
    padding: 30px 10px;
    display: block;
}

footer .menu ul a:hover {
    color:#fff;
}

footer .superbar_social a i {
    background: #fff;
    color:var(--azul);
    width:30px;
    height:30px;
    line-height: 30px;
    font-size:16px;
}

/* Copyright */
footer .copyright {
    display: flex;
    align-items: center;
    padding:30px 0;
}

footer .copyright p {
    flex:1;
    font-size:12px;
    color:var(--branco);
}


@media (max-width:768px) {
    footer .about {
        flex-direction: column;
    }

    footer .local p span {
        display: block;
        line-height: 24px;
    }
}