footer {
    background-color: #1B4A78;
    height: 100vh;
    width: 100%;
    color: #A5B4CB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    width: 90%;
    display: flex;
    flex-direction: column;
    height: 40%;
}

.logo-text img {
    width: 80px;
}

.logo-text p {
    font-size: 140%;
}

.site {
    height: 20%;
    width: 90%;
}

.title-footer {
    width: 100%;
    height: 40%;
    text-transform: uppercase;
    color: #fff;
}
.title-footer p {
    font-size: 160%;
}
.topic {
    width: 100%;
    height: 60%;
    display: flex;
    flex-wrap: wrap;
}

.topic p,
.contato p {
    width: 50%;
    font-size: 140%;
}

.contato {
    width: 90%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.redes {
    height: 20%;
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.redes img {
    width: 40px;
    height: 40px;
}

.copy {
    width: 90%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy p {
    text-align: center;
    font-size: 120%;
}
#cnpj {
    display: none;
}

@media (min-width: 840px) {
    footer {
        flex-direction: row;
        flex-wrap: wrap;
        height: 80vh;
        justify-content: center;
        padding-top: 6%;
        position: relative;
    }

    .logo-text {
        width: 30%;
        height: 60%;
        justify-content: start;
    }
    .logo-text img {
        width: 100px;
    }

    .site {
        width: 30%;
        height: 60%;
        justify-content: start;
    }

    .contato {
        width: 30%;
        height: 60%;
        justify-content: start;
    }

    .redes {
        width: 90%;
        height: 20%;
        justify-content: start;
    }

    .topic p,
    .contato p {
        width: 50%;
        font-size: 110%;
    }

    .topic {
        width: 100%;
        height: 30%;
        display: flex;
        flex-wrap: wrap;
    }

    .title-footer {
        width: 100%;
        height: 20%;
        color: #fff;
    }

    .logo-text p {
        font-size: 120%;
    }
    .redes img {
        width: 30px;
        height: 30px;
        margin-right: 1%;
    }
    .copy p {
        font-size: 100%;
    }
    #cnpj {
        display: block;
        font-size: 100%;
        position: absolute;
        right: 20%;
        bottom: 24%;
    }
}