section.text-empresas {
    padding: 50px 0;
}

.img-txt-ajuste {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 90px;
    padding: 80px 0;
}

.img-txt-ajuste .img-empresas-box,
.txt-empresas-box {
    width: 50%;
    text-align: justify;
    font-size: 18px;
}

.img-empresas-box img {
    width: 100%;
    border-radius: 20px;
}

.txt-empresas-box p {
    font-size: 22px;
}

.btn-contato-empresas {
    width: 100%;
    text-align: center;
}

.btn-contato-empresas button {
    width: 280px;
    height: 60px;
    font-size: 22px;
    background-color: #00D3EE;
    color: #fff;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background-color: #000;
}

@media screen and (max-width: 980px) {

    section.text-empresas {
        padding: 120px 0;
    }

    .img-txt-ajuste {
        flex-direction: column;
        gap: 50px;
    }

    .img-txt-ajuste .img-empresas-box,
    .txt-empresas-box {
        width: 100%;
        padding: 0 8%;
    }
}