footer{
    background-color: var(--cor-azul-principal);
    flex-shrink: 0;
    display: flex;
    justify-content: end;
    gap: 1%;
    padding: 15px 20px;
}
footer p{
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--cor-branco);
}
footer img{
    width: 190px;
}

@media only screen and (max-width: 780px) {
    footer{
        align-items: center;
        margin-top: 10px;
        flex-direction: column;
    }

    footer p{
        font-size: 10px;
    }

    footer img{
        height: 80px;
    }
}
