.hospedaje{
    width: 100%;
    padding: 100px 140px;
    padding-top: 0;
    margin-bottom: 100px;
}

.hospedaje h3{
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    color: #222;   
}

.hospedaje hr{
    width: 80px;
    border: 2px solid var(--main-color);
    margin: 15px auto;
}

.hospedaje h4{
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #444;   
    margin-bottom: 100px;
}

/*-------------------------------------*/

.contenedor_hospedajes{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    column-gap: 100px;
}

.hospedaje_item{
    width: 26%;
    margin-bottom: 75px;
}

/*//////*/

.contenedor_img_hospedaje_item{
    width: 100%;
    height: 260px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 15px;
}

.img_hospedaje_item{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.mascara_hospedaje_item{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.20);
    border-radius: 5px;
}


/*//////*/

.nombre_hospedaje{
    display: block;
    font-weight: 600;
    color: #666666;
    font-size: 16px;
    margin-bottom: 5px;
}

.precio_hospedaje{
    display: block;
    font-weight: 600;
    color: #222222;
    font-size: 20px;
    margin-bottom: 5px;
}

.hospedaje_item hr{
    display: block;
    width: 35%;
    margin: 15px 0;
    margin-bottom: 20px;
    border: 1px solid #000;
}

/*//////*/

.contenedor_facilidades_hospedaje{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.facilidad_item{
    position: relative;
}

.facilidad_item img{
    display: block;
    width: 25px;
    margin: 3px auto;

}

.facilidad_item span{
    display: block;
    text-align: center;
    font-weight: 300;
    font-size: 12px;
    color: #000;
}


/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {
    .hospedaje{
        padding: 80px 30px;
        padding-top: 0;
        margin-bottom: 10px;
    }

    .hospedaje h3{
        font-size: 30px;  
    }

    .hospedaje hr{
        width: 60px;
        border: 1px solid var(--main-color);
    }

    .hospedaje h4{
        font-size: 15px;
        margin-bottom: 50px;
    }

    /*-------------------------------------*/

    .contenedor_hospedajes{
        justify-content: center;
        gap: 0;
    }

    .hospedaje_item{
        width: 70%;
        margin-bottom: 75px;
    }

    /*//////*/

    .contenedor_img_hospedaje_item{
        height: 220px;
    }

    /*//////*/

    .nombre_hospedaje{
        font-size: 14px;
    }

    .precio_hospedaje{
        font-size: 17px;
    }

    .hospedaje_item hr{
        border: 1px solid #444444;
    }

    /*//////*/

    .facilidad_item img{
        width: 22px;
    }

}