.descuentos{
    width: 100%;
    min-height: 100vh;
    padding: 100px 120px;
    display: none;
}

.descuentos h3{
    font-family: "Lora", sans-serif;
    text-transform: uppercase;
    font-size: 35px;
    text-align: center;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.descuentos hr{
    border: 1px solid var(--main-color);
    width: 75px;
    margin: 10px auto;
    margin-bottom: 70px;
}

/*----------------------------------------------------------------*/

.contenedor_descuentos{
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


.habitacion_descuento{
    width: 27%;
    position: relative;
}

.etiqueta_descuento{
    position: absolute;
    left: 0;
    top: 35px;
    width: 30%;
    background-image: url("../../img/etiqueta_descuento.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Lora", sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 300;
    padding: 8px 10px;
}

.img_habitacion_descuento{
    width: 100%;
    height: 280px;
    border-radius: 3px;
    background-image: url("../../img/descuento.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.descripcion{
    display: block;
    font-family: "Lora", sans-serif;
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
}

.precio{
    display: block;
    font-family: "Lora", sans-serif;
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 6px;
}

.precio_anterior{
    display: block;
    font-family: "Lora", sans-serif;
    font-size: 12px;
    color: #707070;
    margin-bottom: 30px;
    text-decoration: line-through;
}

.link_masInfo{
    display: block;
    width: 100%;
    background-color: var(--main-color);
    text-align: center;
    padding: 8px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    border-radius: 4px;
    box-shadow: 4px 5px 5px rgba(0, 0, 0, 15%);
    border: 2px solid transparent;
    transition: all 0.5s;
}

.link_masInfo:hover{
    background-color: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}


/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {
    .descuentos{
        padding: 70px 20px;
        padding-bottom: 0;
    }

    .descuentos h3{
        font-size: 28px;
        letter-spacing: 0.7px;
    }

    .descuentos hr {
        margin-bottom: 30px;
    }
    /*----------------------------------------------------------------*/

    .contenedor_descuentos{
        margin: 50px auto;
        margin-bottom: 0;
        justify-content: center;
    }

    .habitacion_descuento{
        width: 70%;
        margin-bottom: 80px;
    }

    .etiqueta_descuento{
        top: 25px;
        width: 37%;
        font-size: 11px;
        padding: 8px 10px;
    }

    .img_habitacion_descuento{
        height: 230px;
        margin-bottom: 20px;
    }

    .descripcion{
        font-size: 15px;
        margin-bottom: 6px;
    }

    .precio{
        font-size: 18px;
    }

    .precio_anterior{
        font-size: 11px;
        margin-bottom: 20px;
    }

    .link_masInfo{
        padding: 6px 0;
        font-size: 11px;
    }




}