html, body{
    height: 100%;
}

section{
    padding-top: 90px;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}

section .texto{
    padding: 50px 6vw 0 6vw;
    width: 70%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}

/* .texto .imaxeMobil{
    display: none;
}
.texto img{
    width: 60%;
    align-self: center;
    margin-bottom: 30px;
} */

.texto h1{
    color: #DC3534;
    font-weight: 850;
    font-size: 1.8vw;
    margin-bottom: 2vw;
}
.texto h2{
    color: #DC3534;
    font-weight: 500;
    font-size: 1.3vw;
    margin-bottom: 2vw;
}
.texto h3{
    margin-bottom: 4vw;
    margin-top: 2vw;
    font-size: 1.3vw;
}
.texto p{
    font-size: 1vw;
    margin-bottom: 30px;
    text-align: justify;
}
.texto p i, .texto p b{
    font-size: inherit;
}




@media (max-width: 800px) or (orientation: portrait){
    section{
        flex-flow: column wrap;
        align-items: center;
    }
    section .imaxe{
        display: none;
    }
    section .texto{
        width: 80%;
        padding: 50px 0 0 0;
        align-items: start;
    }
    /* .texto .imaxeMobil{
        display: block;
        width: 100%;
        object-fit: cover;
        overflow: hidden;
        margin-bottom: 50px;
    }
    .texto img{
        width: 80%;
    } */
    .texto h1{
        font-size: 5vw;
        margin-bottom: 4vw;
    }
    .texto h2{
        font-size: 4vw;
        margin-bottom: 6vw;
    }
    .texto h3{
        margin-bottom: 6vw;
        font-size: 4vw;
    }
    .texto p{
        font-size: 3vw;
        margin-bottom: 20px;
    }
}