
.positionRelative{
    position: relative;    
}
/*//Body/////////////////////////////////////////////////////////*/
.contBody{
    width: 100vw;
    /* height: 100vh; */
    position: relative;
    min-height: 100vh;
    /* overflow:hidden; */
    /* display: flex;
    justify-content: center;
    align-items: center;
    background: beige; */
}
/*//contCentrado/////////////////////////////////////////////////////////*/
.contCentrado{
    /* background-color: var(--white); */
    background: url(../img/textura02s.jpg);
    background-position: 0px 0px;
    background-size: cover;
    width: 100vw;
    /* min-height: 100vh; */
    margin: 0 auto;
    padding: 0rem 0rem;
}


.contTextura{
    width: 100%;
    min-height: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Ajusta el tamaño para cubrir todo el elemento */
}

.contHero{
    position:relative;
}

.menuMain{
    display: inherit;
    width: 100%;
    height: 150vh;
    /* grid-area: MenuMain; */
}

.fondorojo{
    display: none; 
}
.hero {
    z-index: 10;
    background-image: url(../img/hero.png);
}


/*//Header/////////////////////////////////////////////////////////*/
/* .divGridContainer{
    display: grid;
    min-height: 100vh;
    width: 100%;
    grid-template-rows: minmax(180px, 220px) auto;
    grid-template-columns: 100%;
    grid-template-areas: 
			"contHero"
			"MenuMain";
} */

.divGridContainer{
    display: flex;
    flex-direction: column;  
    /* flex-wrap: wrap; */
     /* align-content: center; */
    min-height: 100vh;
    /* height: 100%; */ 
    justify-content: start;
}


.itemWhitFlexcenterAndHeight100{
    
    /* background-color: aqua; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.itemWhitFlexDefaulAndHeight100{
    height: 100%;
    /* background-color: aqua; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.contBackgLogo{
    width: 100%;
    height: 100%;
    /*no funciono aca*/
    /* background-repeat: no-repeat;
    background-position: center;
    background-size: contain; */

}

/*//Cartas menu/////////////////////////////////////////////////////////*/

.contGridforCards{
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: 20px;
    grid-auto-rows: 1fr;
    grid-auto-columns: 1fr;
}

.itemCard{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 110px;
    color: var(--white);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.623);
    padding: 5%;
}

.burger{
    background-image: url('../img/burguer.png');
}
.pizza{
    background-image: url('../img/pizza.png');
}
.perrocaliente{
    background-image: url('../img/perrocaliente.png');
}
.salchipapa{
    background-image: url('../img/salchipapa.png');
}
.jugo{
    background-image: url('../img/jugo.png');
}
.bebida{
    background-image: url('../img/bebida.png');
}
.lasagna{
    background-image: url('../img/lasagna.png');
}
.porcion{
    background-image: url('../img/porcion.png');
}
.iconBack{
    background-image: url('../img/back.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    height: 20px;
    width: 20%;
    filter: invert(1);

}




.icon{
    color: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 40%;  
    height: 60%;
    cursor: pointer;
    filter: invert(1)
}
.nameIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;  
    height: 40%;
    font-size: var(--textLg);
    font-weight: 700;
    padding: 5px;
    line-height: var(--textLg);
}

/*///////////////// Vista de los SubMenus */
.headerSubMenu{
    width: 100%;
    height: 8%;
    display: none; /*none-flex*/
    flex-wrap:wrap;
    justify-content: space-around;
    align-content: center;
    align-self: flex-end;
    background: var(--black);
    color: var(--white);
}
.nombreSubMenu{
    text-transform: uppercase;
}
.menuBack{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.displayNONE{
    display: none;
}
.categoriasSubMenu{
    /*display: none; /*none-inline-block*/
    display: inline-block;
    margin-top: 5%;
    width: 90%;
    /* height: 100%; */
    background-color: rgba(0, 0, 0, 0.411);
    padding: 0;
    padding-bottom: 15px;
}
.nameCategoria{
    text-align: center;
    color: rgb(153, 153, 153);
    font-weight:700;
}
.contGridTodosLosTamanos{
    width: 100%;
    /* height: 12%; */
    display: grid;

    grid-template-rows: 1fr;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 10px;
    padding: 10px;
    grid-auto-rows: 1fr;
    grid-auto-columns: 1fr;
}
.subContParaTamanos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--white);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.623);
    padding: 5%;
}
.sabor{
    color: var(--white);
}
.sabor_nombre{
    text-transform: capitalize;
}
.sabor_descripcion1{
    padding-left: 10%;
}
.contMenuCategoria{
    margin-top: 10px;
}
.subContlateral{
    width: 20%;
    height: 100%;
}
.itemWhitFlexBetween{
    /* background-color: aqua; */
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    /* align-content: space-between; */
}






/* .contFooter{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 5vh;
    background: var(--black);

} */



@media screen and (min-width:400px){
    .contCentrado{
        background-color: var(--white);
        width: 70%;
        /* margin: 0 auto; */
        padding: 0rem 0rem;
    }
    .fondorojo{
        position: absolute;
        display:inline-block;
        background-image: url(../img/red.png);
        background-size: cover;
    }
    .hero {
        background-size: contain;
        /* z-index: 10; */
    }
}


@media screen and (min-width:800px){
    .contCentrado{
        width: 80%;
    }
    .contGridforCards{
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (min-width:1024px){}



.text-center{
    text-align: center;
}
.bold{
    font-weight:700;
}



