.footer {
    background-color: var(--fundo-escuro);
    padding: 4rem 1rem 0 1rem;
}

.footer__columns {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.footer__columns--logo img {
    display: block;
    width: 70%;
    margin: auto;  
}

.footer__columns--logo p {
    display: block;
    width: 80%;
    margin: auto;
    font-size: 1.3rem;
    color: white;
    text-align: center;
    padding: 1rem .5rem;
}

.footer__columns--contatos {
    padding: 0 .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}

.footer__columns--contatos a:hover {
    color: var(--azul--claro);
}

.footer--link {
    color: white;
    font-size: 1.2rem;
}

.footer__sociais {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.footer__sociais a {
    color: white;
    font-size: 2rem;
    padding: .2rem .2rem;
}

/* =============== */

.footer__map {
    max-width: 1200px;
    margin: auto;
    padding: 1.5rem 1rem 1rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer__map--barra {
    display: block;
    width: 2px;
    height: 1.1rem;
    background-color: var(--azul--claro);
}

.footer__map a {
    padding: 0 1rem;
    color: white;
}

.footer__dadosEmpresa {
    margin: 0;
    padding: 0 .5rem .3rem .5rem;
    text-align: center;
    font-size: .7rem;
}

@media screen and (max-width:762px) {
    .footer__columns--logo p {
        display: none;
    }

    .footer--link {
        font-size: 1rem;
    }

    .footer__sociais {
        width: 40%;
    }

    .footer__sociais a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:562px) {
    .footer__columns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer__columns--logo img {
        width: 100%;
        margin: auto;  
    }

    .footer--link {
        font-size: 1.2rem;
    }

    .footer__sociais a {
        font-size: 1.8rem;
    }
    
}