
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');

* {
    font-family: 'Roboto Condensed', sans-serif;
}


body, html {
    height: 100%;
}

.parallax {
    background: linear-gradient( rgba(0,0,0,.6),rgba(0,0,0,.6) ), url('../Content/cardapio.png');
    height: 883px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.tituloHeader {
    position: absolute;
    margin: 0;
    top: calc(30% - 50px);
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    height: 100px;
    color: white;
     
}
.tituloHeader h1{
    font-size: 5rem;
}
.tituloHeader h3{
    font-size: 1rem;
    margin-top:20px;
}
.logo {    
    width:350px;
}
.textoTitulo{   
    margin: auto;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;

}
.relative{
    position: relative;
}

/* PARTE DOS TITULO DE GRUPOS */

.tituloGrupo{
    background-color: #027e44;
}

.imageTituloGrupo{
    position: absolute;   
   
}
.logoTitulo{
    width: 300px;
    padding: 25px;
    
}
.tituloGrupo h1{
    color: #fff;  
    font-size: 7em;
}
.textoTituloGrupo h1{
    font-family: 'Cookie', cursive;
    font-size: 8em;
    color: #ce9001;
    margin-left: 50px;
}
.textoTituloGrupo{
    text-align: right;
    z-index: 99;
}


/*PARTE DA LISTAGEM DE PRODUTOS */
.produtos{
    padding: 20px;
    margin-bottom: 40px;
}
.produto{
    position: relative;
    
}

.produtoDescricao{
    margin: 10px 0 5px 0;
    padding-right: 15px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    background: #fff;
    z-index: 2;
    font-size: 24px;  
}
.produtoPreco{
    position: absolute;
    right: 0;
    top: 5px;
    width: 100%;
    font-size: 24px;    
    color: #000;
    text-align: right;
}
.produtoPreco::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    border: 1px dashed #000;
}
.produtoPreco span{
    padding-left: 15px;
    position: relative;
    background: #fff;
}

.aviso{
    font-size: 15px;
    margin: 20px 0;
}

@media screen and (max-width: 992px) {

    .divImagemTitulo{
        display: none;
    }
    .textoTituloGrupo{
        text-align: center;
    }
    .textoTituloGrupo h1{
        font-size: 5em;
    } 
  }

