#sectionAnuncie {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

#divConteudoContainer {
    width: 50%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#conteudoAnuncie {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-left: 25%;
}


#containerChamada {
    width: 280px;
    height: 36px;
    background-color: rgba(30, 107, 172, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 3px;
}

#chamadaP {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

#anuncieTitle {
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 15px;
}

#anuncieP {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    width: 70%;
}

.anuncieBtn {
    width: 200px;
    height: 51px;
    background-color: #1e6BAC;
    font-size: 23px;
    font-weight: 600;
    border-radius: 3px;
    border-width: 0;
    transition: all 0.5s;
}

.anuncieBtn:hover {
    background-color: #31408b;
}

.anuncieBtn:active {
    scale: 0.9;
}




#containerImagemAnuncie {
    width: 50%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#containerImagemAnuncie img {
    margin-right: 25%;
    width: 454px;
    height: 600px;
    object-fit: cover;
    overflow: hidden;
}

.anuncieA {
    margin-top: 0;
    margin-bottom: 0;
}



@media screen and (max-width: 900px) and (orientation: portrait) {
    #anuncieTitle {
        font-size: 50px;
        width: 100%;
    }

    #anuncieP {
        width: 90%;
    }

    #containerImagemAnuncie {
        justify-content: flex-start;
    }

    #conteudoAnuncie {
        margin-left: 0;
    }

    #containerImagemAnuncie {
        min-height: 0;
    }

    #containerImagemAnuncie img {
        margin-right: 0;
        width: 350px;
        height: 570px;
    }

    #divConteudoContainer {
        min-height: 0;
    }

    #sectionAnuncie {
        margin-bottom: 50px;
    }
}



@media screen and (max-width: 790px) and (orientation: portrait) {
    #conteudoAnuncie {
        width: 80%;;
    }
    #containerImagemAnuncie img {
        width: 350px;
        height: 500px;
    }
}


@media screen and (max-width: 500px) and (orientation: portrait) {
    #sectionAnuncie {
        flex-direction: column;
        margin-top: 150px;
    }

    #divConteudoContainer {
        width: 100%;
        min-height: 0;
        margin-bottom: 50px;
    }

    #containerImagemAnuncie {
        width: 100%;
        min-height: 0;
        justify-content: center;
    }

    #chamadaP {
        font-size: 22px;
        font-weight: bolder;
    }

    .anuncieBtn {
        width: 250px;
    }

    #containerChamada {
        width: 290px;
    }
}

@media screen and (max-width: 350px) and (orientation: portrait) {
    #chamadaP {
        font-size: 18px;
    }

    #containerChamada {
        width: 230px;
    }

    #containerImagemAnuncie img {
        margin-right: 0;
        width: 280px;
        height: 456px;
    }

}

