.reservar{
    width: 100%;
    min-height: 115vh;
    background-image: url("../../img/fondo_reservar.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.mascara_reservar{
    position: absolute;
    width: 100%;
    height: 115vh;
    top: 0;
    background-color: rgba(0,0,0,35%);
}

.contenedor_reservar{
    position: absolute;
    z-index: 1000;
    width: 85%;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
    margin: 75px 7.5%;
}

/*---------------------------------------------------------------*/

.contenedor_reservar h3{
    text-align: center;
    font-family: "Lora", sans-serif;
    color: #111;
    font-size: 35px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contenedor_reservar hr{
    display: block;
    width: 80px;
    border: 1px solid var(--main-color);
    margin: 8px auto;
    margin-bottom: 15px;
}

.contenedor_reservar p{
    text-align: center;
    font-weight: 400;
    color: #707070;
    margin-bottom: 60px;
}

.contenenedor_opciones_reserva{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.reserva-hospedaje{
    background-image: url("../../img/reserva_hospedaje.jpg");
}


.reserva-restaurante{
    background-image: url("../../img/reserva_restaurante.jpg");
}

.reserva{
    width: 40%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    box-shadow: 10px 10px 15px rgba(0,0,0,16%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.mascara_reserva{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51,51,51,40%);
    border-radius: 5px;
}

.reserva span{
    position: relative;
    z-index: 1000;
    color: #fff;
    font-family: "Lora", sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 300px;
}

/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {
    .reservar{
        min-height: auto;
        height: 100vh;
    }

    .mascara_reservar{
        height: 100vh;
    }

    .contenedor_reservar{
        padding: 50px;
        padding-bottom: 0px;
        margin: 59px 7.5%;
    }

    /*---------------------------------------------------------------*/

    .contenedor_reservar h3{
        font-size: 25px;
        letter-spacing: 0.5px;
    }

    .contenedor_reservar hr{
        width: 70px;
        height: 1px;
        border: none;
        background-color: var(--main-color);
        margin: 10px auto;
    }

    .contenedor_reservar p{
        margin-bottom: 30px;
        font-size: 13px;
    }

    .contenenedor_opciones_reserva{ 
        justify-content: center;
        margin-bottom: 30px;
    }

    .reserva{   
        width: 100%;
        height: 180px;
        margin-bottom: 25px;
    }

    .reserva span{
        font-size: 25px;
        letter-spacing: 1.2px;
    }

    .mascara_reserva{
        background-color: rgba(0,0,0,40%);
    }
}