#sectionImpulsionar {
    height: 50vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e6bac;
    flex-wrap: wrap;
    position: relative;
}

#divSvg {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}




#divConteudo {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#impulsionarTitle {
    font-size: 40px;
    font-weight: bolder;
    text-align: center;
    text-transform: uppercase;
    width: 80%;
}

#impulsionarP {
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px;
    width: 72%;
}

#euQueroBtn {
    width: 170px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-top: 35px;
    background-color: rgba(37, 126, 201, 1);
}

#euQueroBtn:hover {
    background-color: rgb(32, 108, 171);
}

svg {
    width: 160px;
    transform: rotate(35deg);
    margin-left: 110px;
}



@media screen and (max-width: 900px) and (orientation: portrait) {
    svg {
        width: 200px;
        transform: rotate(35deg);
        margin-left: 0px;
    }

    #sectionImpulsionar {
        height: auto;
        padding: 20px 0;
    }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
    #divSvg {
        display: none;
    }

    #divConteudo {
        width: 100%;
    }

    #impulsionarTitle {
        font-size: 36px;
    }

    #sectionImpulsionar {
        height: auto;
        padding: 20px 0;
    }

    #impulsionarP {
        font-size: 20px;
    }
}


@media screen and (max-width: 370px) and (orientation: portrait) {
    #impulsionarP {
        width: 80%;
    }
}


@media screen and (max-width: 340px) and (orientation: portrait) {
    #impulsionarTitle {
        font-size: 30px;
    }

    #impulsionarP {
        font-size: 18px;
    }

    #euQueroBtn {
        width: 160px;
    }
}