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

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

.img-txt-ajuste .img-empresas-box, .txt-empresas-box{
    width: 50%;
}

.img-empresas-box img{
    width: 100%;
}

.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: #FC6703;
    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%;
    }
}