footer{
    border-top: 1px solid var(--azul_claro);
    padding: 64px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    iframe{
        height: 300px;
        width: 40%;
    }
}

.footerMenu{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    color: var(--azul);
    a{
        color: var(--azul);
        text-decoration: unset;
    }
}

@media(max-width:800px)
{
    footer{
        gap: 64px;
        flex-direction: column-reverse;
        iframe{
            width: 90%;
        }
    }

    .footerMenu{
        align-items: center;
    }
}