/*Geral:::::::::::::*/

@font-face {
    font-family:'HelveticaInserat';
    src: url('../fonts/HelveticaInserat.ttf')  format('truetype');
    src: url('../fonts/HelveticaInserat.eot'),
		url('../fonts/HelveticaInserat.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HelveticaInserat.woff2') format('woff2'),
		url('../fonts/HelveticaInserat.woff') format('woff'),
		url('../fonts/HelveticaInserat.svg#HelveticaInserat') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
    font-family:'HelveticaNeue';
    src: url('../fonts/HelveticaNeue Regular.eot');
	src: url('../fonts/HelveticaNeue Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/HelveticaNeue Regular.woff2') format('woff2'),
		url('../fonts/HelveticaNeue Regular.woff') format('woff'),
		url('../fonts/HelveticaNeue Regular.svg#HelveticaNeue Regular') format('svg');
    font-weight: 5;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-0303;
}

@font-face {
    font-family:'Oswald';
    src: url('../fonts/Oswald Regular.eot');
	src: url('../fonts/Oswald Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Oswald Regular.woff2') format('woff2'),
		url('../fonts/Oswald Regular.woff') format('woff'),
		url('../fonts/Oswald Regular.svg#Oswald Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-02DC;
}

*{
	transition: all .4s ease-in-out;
	list-style: none;
}

h1{
	font-family:'HelveticaInserat' !important;
}

p{
	font-family:'HelveticaNeue' !important;
}

body{
	background: #171717 !important;
}


/* Largura da barra de rolagem */
::-webkit-scrollbar {
    width: 10px;
    position: absolute;
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track-piece {
    background-color: #171717  ;
    position: absolute;
    z-index: 99999;
}

/* Cor do indicador de rolagem */
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
    background-color: #4a4a4a
}

/* Cor do indicador de rolagem - ao passar o mouse */
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: #717171
}

.padding-none{
	padding: 0px !important;
}

.navbar-default{
	border: none !important;
	padding: 0px !important;
	box-shadow: none !important;
	margin: 0px !important;
	background: transparent !important;
} 

.img-100 {
	width: 100% !important;
}

.btn{
	width: 100%;
}

.img-responsive{
	margin: auto;
}

.titulo-true{
	font-size: 40px;
	margin: 0px;
	
	color: #FFF;
	text-transform: uppercase;
}

.titulo-true-lanches{
	font-size: 40px;
	margin: 0px;
	margin: 15px;

	border-bottom: 2px solid #FFF; 
	color: #FFF;
	text-transform: uppercase;
}

hr{
	max-width: 50px;
	height: 6px;
	border-top: 5px solid #eee !important;
	margin-bottom: 100px !important;
}

section{
	padding: 100px 0px;
	float: left;
	width: 100%;
}



.display-1920{
	display: block ;
}

.display-768{
	display: none ;
}


/*Geral:::::::::::::*/

/*HEADER:::::::::::::*/

header{
	height: 60px;
	width: 100%;
	background: #fff;
	float: left;
	position: fixed;
	z-index: 10;
}

header .menu ul{
	padding: 0px;
}

header .menu ul li{
	list-style: none;
	float: left;
	width: 20%;
	text-align: center;
	line-height: 40px;
}

header .menu ul li a{
	color: #171717;
}

header .menu .logo-mobile img{
	width: 130px;
    margin: 20px 0px;
}

header .menu .menu-mobile{
	margin: 20px 0px;
}

header .menu .menu-mobile i:before{
	color: #000;
	font-size: 20px;
}

header .links-mobile{
	position: absolute;
	right: 15px;
	top: 59px;
	display: none;
}

header .links-mobile{
	background: #fff;
	width: 120px;
}

header .links-mobile ul li{
	text-align: left;
	width: 100%;
}

header .links-mobile ul li a{
	width: 100%;
	display: block;
	padding-left: 10px;
}

/*HEADER:::::::::::::*/

/*BANNER:::::::::::::*/

.banner{
	background: url(../img/banner.jpg);
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    
}

.padding-banner{
	padding-top: 90px;
	overflow: hidden;
	height: 100%;
	padding-bottom: 30px;
}

.banner .text-banner{
	width: 100%;
	text-align: center;
}

.banner .text-banner h1{
	color: #FFF;
	font-size: 90px !important;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.banner .text-banner p{
	color: #FFF;
	margin: 0px;
	padding: 0px;
	font-size: 20px;
	text-transform: uppercase;
	
}

/*BANNER:::::::::::::*/

/*PRODUTOS:::::::::::::*/

.produtos{
	position: relative;
	align-items: center;
    display: flex;
    overflow: hidden;
}

.produtos span{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	z-index: 2;
	
}

.produtos:hover span{
	opacity: 0.7;
}

.produtos:hover img{
	    transform: scale(1.08, 1.08);
    -moz-transform: scale(1.08, 1.08);
    /* -webkit-transform: scale(1.05, 1.05); */
    -ms-transform: scale(1.08, 1.08);
    -o-transform: scale(1.08, 1.08);
}

.produtos:hover .produtos-info{
	opacity: 1;
}

.produtos .produtos-info{
	position: absolute;
	width: 100%;
	top: 40% !important;
	text-align: center;
	z-index: 3;
	top: 0;
	opacity: 0;
}

.produtos .produtos-info h1{
	text-transform: uppercase;
	font-size: 25px;
	color: #FFF;
}

.produtos .produtos-info p{
	color: #FFF;
	font-size: 18px;
}

/*PRODUTOS:::::::::::::*/

/*ESPACAMENTO:::::::::::::*/

.espacamento{
	width: 100%;
	height: 400px;
	float: left;
	background: url(../img/espacamento.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

/*ESPACAMENTO:::::::::::::*/

/*QUEM SOMOS:::::::::::::*/

.quem-somos{
	float: left;
	width: 100%;
	background: url(../img/bckg_quem_somos.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	margin: 30px 0px;
}

.quem-somos h1, .quem-somos p{
	color: #FFF;
}

.quem-somos h1{
	    text-transform: uppercase;
    font-size: 100px;
    position: absolute;
    left: -130px;
    text-shadow: 4px 4px 2px rgba(0, 7, 0, 1);
}

.quem-somos p{
	position: absolute;
	top: 130px;
	font-size: 18px;
	left: 15px;
	line-height: 40px;

}

/*QUEM SOMOS:::::::::::::*/

/*CARDAPIO:::::::::::::*/

.cardapio .lanches{
	margin-bottom: 30px;
	float: left;
}

.cardapio .lanches:hover .info-lanches{
	background: #FFF;
}

.cardapio .lanches:hover .info-lanches h1{
	color: #171717;
}

.cardapio .lanches:hover .info-lanches p{
	color: #171717;
}

.cardapio .lanches:hover .info-lanches a{
	border: 1px solid #171717;
}

.cardapio .lanches .info-lanches{
	width: 100%;
	float: left;
	background: #282727;
	padding: 10px;
	text-align: left;

}

.cardapio .lanches .info-lanches h1{
	padding: 0px;
	margin: 0px;
	color: #FFF;
	text-transform: uppercase;
	font-size: 24px;
	padding-top: 10px;
}

.cardapio .lanches .info-lanches p{
	font-family:'Oswald' !important;
	padding-top: 10px;
	    color: #787878;
    font-size: 15px;
	font-weight: 600;
	line-height: 24px;
}

.cardapio .lanches .info-lanches a{
	border: 1px solid #FFF;
	display: block;
	padding: 10px;
	margin-top: 10px;
	text-align: center;
	text-transform: uppercase;
	background: #FFF;
	color: #171717;
	font-family:'HelveticaInserat';
}

.cardapio .lanches img{
	width: 100% !important;
}

/*CARDAPIO:::::::::::::*/

/*CONTATO:::::::::::::*/

.contato{
	
	background: #282727;
	height: 840px;
}
.contato h1{
	padding: 0px;
	margin: 0px;
}

.contato iframe{
	width: 100%;
	height: 100%;
}

.contato .contato-container{
	
	height: 100%;
	width: 100%;
}

.contato .text-contato{
	width: 100%;
}

.contato .text-contato input{
	width: 100%; 
	color: #FFF;
	background: #454444;
	border: 1px solid #5f5e5e;
	height: 42px;
	text-transform: uppercase;
	padding: 10px;
	margin: 10px 0px;
}

.contato .text-contato input[type="submit"]{
	background: #fff !important;
	color: #000;
}

.contato .text-contato textarea{
	width: 100%;
	background: #454444;
	border: 1px solid #5f5e5e;
	
	text-transform: uppercase;
	padding: 10px;
	margin: 10px 0px;
}

.contato .text-contato p{
	color: #969393;
	font-size: 16px;
	font-family:'Oswald' !important;
}

.contato .text-contato i:before{
	font-size: 24px;
	color: #FFF;
	padding-right: 10px;
}

/*CONTATO:::::::::::::*/

/*FOOTER:::::::::::::*/

footer{
	width: 100%;
	padding: 10px 0px;
	text-align: center;
	float: left;
	background: #282727;
	margin-top: 30px;
}

footer p{
	color: #FFF;
	margin: 0px;
	padding: 0px;
	text-transform: uppercase;
}

footer a{
	color: #fe5151;
}

footer a:hover{
	color: #fe5151;
}

/*FOOTER:::::::::::::*/

/*RESPONSIVO:::::::::::::*/



@media (max-width: 768px){
	section{
		padding: 30px 0px;
	}

	.display-768{
		display: block;
	}

	.display-1920{
		display: none;
	}

	

	hr{
		margin-bottom: 30px !important;
	}
	.padding-none-768{
		padding: 0px !important;
	}
	.produtos{
		margin-top: 15px;
	}

	.quem-somos p{
		position: relative;
		top: 0px;
		left: 0px;
		line-height: 30px;
		text-align: center;
	}

	.quem-somos h1{
		position: relative;
		left: 0px;
		font-size: 36px;
		text-align: center;
	}

	.contato{
		height: auto;
		background: transparent;
	}

	.banner img{
		width: 250px;
	}

	.banner{
		padding: 15px;
	}

	.banner .text-banner h1{
		font-size: 40px !important;
	}

	.banner .text-banner p{
		font-size: 14px !important;
	}

	header .menu ul li a{
		font-size: 12px !important;
	}

	.cardapio .lanches{
		width: 100%;
	}
}





/*RESPONSIVO:::::::::::::*/



