.contenedor2{
    width: 100%;
    height: 35rem;
    display: flex;
    flex-direction: row;
}

.imagen2{
    width: 50%;
    height: 100%;
    background-color: #FFF0E2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.imagen2 img{
    width: 90%;
    height: 80%;
    position: absolute;
    z-index: 1;
}

.texto4{
    width: 50%;
    height: 100%;
    background-color: #FFF0E2;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
}

.texto4 h2{
    width: 80%;
    margin-top: 15%;
    font-family: 'Heebo';
    font-weight: 200;
    color: #B78010;
    margin-bottom: 1rem;
}

.texto4 hr{
    width:80%;
    border: solid 1px #B78010;
    margin-right: 20%;
    margin-bottom: 1rem;
}

.texto4 p{
    width: 90%;
    font-size: 16px;
    font-family: 'Heebo';
    margin-bottom: 1rem;
}

.texto4 button{
    width: 30%;
    background-color: #B78010;
    color: aliceblue;
    border-radius: 15px;
    height: 2rem;
    border-style: none;
    cursor: pointer;
}

@media (max-width:600px){
    .imagen2{
        display:none
    }

    .texto4{
        width: 100%;
        padding-left: 10%;
        overflow: hidden;
    }

    .texto4 h2{
        font-size: 20px;
    }

    .texto4 p{
        font-size: 14px;
    }

    .texto4 button{
        width: 60%;
    }
}