html, body{
    height: 100%;
}

section{
    padding-top: 90px;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

section .imaxe{
    width: 50%;
    height: 100%;
}
section .imaxe img{
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
}

section .texto{
    padding: 50px 6vw 0 6vw;
    width: 37%;
    display: flex;
    flex-flow: column wrap;
}
.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: 4vw;
}
.texto p{
    font-size: 1vw;
    margin-bottom: 30px;
    text-align: justify;
}


@media (max-width: 800px) or (orientation: portrait){
    section{
        flex-flow: column wrap;
        align-items: center;
    }
    section .imaxe{
        display: none;
    }
    section .texto{
        width: 75%;
        padding: 50px 0 0 0;
    }
    .texto .imaxeMobil{
        display: block;
        width: 100%;
        object-fit: cover;
        overflow: hidden;
        margin-bottom: 50px;
    }
    .texto img{
        width: 80%;
    }
    .texto h1{
        font-size: 4vw;
        margin-bottom: 4vw;
    }
    .texto h2{
        font-size: 3vw;
        margin-bottom: 6vw;
    }
    .texto p{
        font-size: 2.5vw;
        margin-bottom: 20px;
    }
}