@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;1,700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	font-family: 'Open Sans', sans-serif;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}
img 
{
	max-width: 100%;
}


/*======= icones ===========*/

.icones {width: 30%; height: 30%;}

/*======= Fim icones ===========*/

/*========noticias==========*/
.noticias {width: 100%; float: left; padding: 3% 4%;}
.noticia {width: 100%; background-color: #fff; text-align: left; border-radius: 5px; margin-bottom: 3%;}
.noticia img {border-radius: 5px 5px 0 0;}
.noticia b {font-weight: bold; }
.inner {padding: 7%;}
.inner a {font-size: 3em; color: #666; font-weight: 700; }
.inner h4 {font-size: 1.2em; color: #000; margin-top: 2%;}
.inner p {font-size: 2em; margin-top: 6%; color: #000;} 

/*========mostrar noticia==========*/
.mostranoticia {width: 100%; float: none; padding: 3% 4%;}
.mnoticia {width: 100%; background-color: #fff; text-align: center; border-radius: 5px; margin-bottom: 3%;}
.ninner {padding: 2%;}
.ninner a {font-size: 1em; color: #1B822F; font-weight: 700;}
.ninner h1 {font-size: 4em; color: #1B822F; font-weight: 700;}
.ninner p {margin-top: 6%; color: #000; line-height: 1.3em;  text-align: justify; font-size: 2em;}
.ninner h2 {font-size: 2em; color: #1B822F; margin-top: 2%; font-weight: bold;}
.ninner p {font-size: 2em; margin-top: 6%; color: #000;} 
.ninner li {font-size: 2rem}
.galeria {width: 100%;}
.galeria img {width: 25%;}


/*bloco fotos*/
.bloco {width: 100%; float: left; padding: 3% 4%; text-align: center; align-items: center; background-color: #fff;  }
.bloco img {width: 25%;}

.bloco2 {width: 100%; float: left; padding: 3% 4%; text-align: center; align-items: center; background-color: #fff; display: flex;	align-items: flex-start; }
.bloco2 img {width: 25%;}




/*botão*/
.btn {width: 80%; font-size: 2em; text-align: center; cursor: pointer; padding: 2%; border-radius: 5px;}
.btn-receitas {background-color: #156225; color: #fff;}
.btn-receitas2 {background-color: #80000D; color: #fff;}
/*fim botão*/

/*======Cabeçalho======*/
/* caso queira colocar em gradiente (background: linear-gradient(to rigth, #cor, #cor)) */
/*.cabecalho {width: 100%; float: left; padding: 3% 4%;}*/
.logo {width: 123px; height: 114px; float: left; background: url(../img/logo.jpg) left center/123px no-repeat; 
font-size: 0;}
.btn-menu {width: 56px; height: 56px; float: right; text-align: center; color: #000; cursor: pointer;
background: #fff;}


/*=========formulário=======*/

.formularios {background-color: #19712A;}
.formularios article {width: 100%;align-self: left;  margin-left: 3%;}
.formularios form {margin-top: 1%; width: 95%;}
.formularios input {width: 100%; background-color: #fff; color: #333; border: 1px solid #666; padding: 2%;
 border-radius: 5px; margin-top: 2%;}
.formularios button {width: 100%; background-color: #156225; color: #fff; padding: 3%; border-radius: 5px;
cursor: pointer; margin-top: 2%;}
.formularios select {width: 100%; background-color: #fff; color: #333; border: 1px solid #666; padding: 2%;
	border-radius: 5px; margin-top: 2%;}
.formularios textarea {width: 100%; background-color: #fff; color: #333; border: 1px solid #666; padding: 2%;
	border-radius: 5px; margin-top: 2%;}
.texto {font-size: 2rem; text-align: left top; color: white;}


/*=========textos=======*/
#textos {
	font-size: 2rem; text-align: center;

}
.textos li {font-size: 2rem; text-align: center; color: black;}
.textos a {color: black;}
.textos img {width: 30%;}
.textos i {font-size: 3rem; text-align: center; color: black;}

/*=========Onde comprar=======*/

.ondecomprar {width: 100%; align-items: center;}
.ondecomprar td {background-color: #19712A; font-size: 2rem; color: white; border-color: #19712A; vertical-align: top; }
.ondecomprar1 td {background-color: #fff; font-size: 1.2rem; color: black;}

/* Header */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: .3s ease background-color;
}

#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow: hidden;
	transition: .3s ease left;
}

#header .nav-list ul.active {
	left: 0;
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}

#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 8rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}

#header .nav-list ul li:hover a {
	color: #B50012;
}

#header .hamburger {
	height: 50px;
	width: 50px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(.8);
	margin-right: 20px;
}

#header .hamburger::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
	height: 2px;
	width: 25px;
	position: relative;
	background-color: white;
	z-index: -1;
}

#header .hamburger .bar::after, #header .hamburger .bar::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: .3s ease;
	transition-property: top, bottom;
}

#header .hamburger .bar::after {
	top:8px;
}

#header .hamburger .bar::before {
	bottom: 8px;
}

#header .hamburger.active .bar::before {
	bottom: 0;
}

#header .hamburger.active .bar::after {
	top: 0;
}



/* Fim Header */

.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

}
img {
height: 100%;
width: 100%;
object-fit: cover;
}

p{
	color: black;
	text-align: justify;
	font-size: 1.4rem;
	line-height: 1.9rem;
}

.section-titulo {
	font-size: 4rem;
	font-weight: 300;
	color: #156225;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .2rem;
	text-align:center;
	text-shadow: white 0.04em 0.04em  0.02em;
}

.section-titulo span {
	color: #B50012;
}


.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid white;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 1rem;
	margin-top: 30px;
	transition: .3s ease;
	transition-property: background-color, color;
}

.cta:hover {
	color: white;
	background-color: #1A7B2E;

}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}

.brand h1 span {
	color:#1A7B2E;
}

/* inicio section */

#inicio {
	background-image: url(../img/inicio.jpg);
	background-size: cover;
	background-position: top left;
	position: relative;
	z-index: 1;
}
#inicio::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: .2;
	z-index: -1;
}
#inicio .inicio{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}

#inicio h1{
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal .5s ease forwards;
	animation-delay: 1.5s;
}

#inicio h1:nth-child(1){
	animation: text_reveal_bits .3s ease forwards;
	animation-delay: 1.5s;
}

#inicio h1:nth-child(2){
	animation-delay: 2.5s;
}

#inicio h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #1A7B2E;
	animation: text_reveal_box 1s ease;
	animation-delay: 2s;
}
#inicio h1:nth-child(1) span{
	animation-delay: 1s;
}

}
#inicio h1:nth-child(2) span{
	animation-delay: 2s;
}


/* Fim inicio section */


/* iamgem inicio*/
#imagem_pas {
	margin-top: 20px;
	background-image: url(../img/fabrica2.jpg);
	background-size: all;
	background-position: top right;
	position: relative;
	background-repeat: no-repeat;
	z-index: 1;

}

/* imagem fim*/
/* serviços section */


#services .services{
	flex-direction: column;
	text-align: justify;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}



#services .service-topo {
	max-width: 450px;
	margin: 0 auto;
}

#services .service-topo p {
	font-size: 1.4rem;
	margin-top: 5px;
	padding: 3%;
	line-height: 2.5rem;
	font-weight: 700;
	letter-spacing: .05rem;
	text-align: left;
	text-shadow: white 0.08em 0.05em 0em;
}

#services .service-baixo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}

#services .service-baixo  {
	align-items: self-start;
	}

#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: url(../img/fundoservices.jpg);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #000 0%, #000 100%);
	opacity: .4;
	z-index: -1;
}

#services .service-baixo .icon {
	height: 50px;
	width: 50px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#services .service-item p {
	color: white;
}

#services .service-item ul li {
font-size: 1.2rem;
text-align: left;
color: white;
 }

/* Fim Serviços section */



/* serviços section */
#informacoes .informacoes{
	flex-direction: column;
	text-align: justify;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}

#informacoes .informacoes-topo {
	max-width: 450px;
	margin: 0 auto;
}

#informacoes .informacoes-topo p {
	font-size: 1.4rem;
	margin-top: 5px;
	padding: 3%;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: .05rem;
	text-align: left;
}

#informacoes .informacoes-baixo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}

#informacoes .informacoes-baixo  {
	align-items: self-start;
	}

#informacoes .informacoes-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: url(../img/fundoservices.jpg);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#informacoes .informacoes-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #000 0%, #000 100%);
	opacity: .4;
	z-index: -1;
}

#informacoes .informacoes-baixo .icon {
	height: 50px;
	width: 50px;
	margin-bottom: 20px;
}
#informacoes .informacoes-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#informacoes .informacoes-item p {
	color: white;
}

#informacoes .informacoes-item ul li {
font-size: 1.2rem;
text-align: left;
color: white;
 }

/* Fim Serviços section */




/* clientes section */
#clientes .clientes{
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}

#clientes .clientes-topo {
	max-width: 500px;
	margin: 0 auto;
}

#clientes .clientes-topo  p {
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: .05rem;
	text-align: left;
}

#clientes .clientes-baixo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}

#clientes .clientes-baixo  {
	align-items: self-start;
	}

#clientes .clientes-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#clientes .clientes-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}


/* Fim Serviços section */



/* Projetos */
#pastificios .pastificios{
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#pastificios .pastificios-header h1 {
	margin-bottom: 50px;
}
#pastificios .all-pastificios {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#pastificios .pastificio-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}

#pastificios .pastificios-item a {
	font-size: 1rem;
	color: white;
}
#pastificios .pastificio-info {
	padding: 30px;
	flex-basis: 50%;
	background-image: linear-gradient(60deg, #209737 0%, #156225 100%);
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	color: white;
}

#pastificios .pastificio-info2 {
	padding: 30px;
	flex-basis: 50%;
	background-image: linear-gradient(60deg, #80000D 0%, #91000E 100%);
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	color: white;
}

#pastificios .pastificio-info h1 {
	font-size: 4rem;
	font-weight: 500;
}

#pastificios .pastificio-info h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 10px;
}

#pastificios .pastificio-info2 h1 {
	font-size: 4rem;
	font-weight: 500;
}

#pastificios .pastificio-info2 h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 10px;
}

#pastificios .pastificio-info p {
color: white;
}

#pastificios .pastificio-info2 p {
color: white;
}

#pastificios .pastificio-info2 ul li {
font-size: 1.2rem;
text-align: left;
color: white;
 }

 #pastificios .pastificio-info ul li {
font-size: 1.4rem;
text-align: left;
color: white;
 }

#pastificios .pastificio-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

#pastificios .pastificio-img::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;

opacity: .5;
}

#pastificios .pastificio-img img{
	transition: .3s ease transform;
}

#pastificios .pastificio-item:hover .pastificio-img img{
	transform: scale(1.1);

}


/* Fim Projetos */




/* Projetos */
#projetos .projetos{
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#projetos .projetos-header h1 {
	margin-bottom: 50px;
}
#projetos .all-projetos {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#projetos .projeto-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}

#projetos .projeto-item a {
	font-size: 1rem;
	color: white;
}
#projetos .projeto-info {
	padding: 30px;
	flex-basis: 50%;
	background-image: linear-gradient(60deg, #209737 0%, #156225 100%);
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	color: white;
}

#projetos .projeto-info2 {
	padding: 30px;
	flex-basis: 50%;
	background-image: linear-gradient(60deg, #80000D 0%, #91000E 100%);
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	color: white;
}

#projetos .projeto-info h1 {
	font-size: 4rem;
	font-weight: 500;
}

#projetos .projeto-info2 h1 {
	font-size: 4rem;
	font-weight: 500;
}

#projetos .projeto-info h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 10px;
}

#projetos .projeto-info2 h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 10px;
}

#projetos .projeto-info p {
color: white;
}

#projetos .projeto-info2 p {
color: white;
}

#projetos .projeto-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

#projetos .projeto-img::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;

opacity: .5;
}

#projetos .projeto-img img{
	transition: .3s ease transform;
}

#projetos .projeto-item:hover .projeto-img img{
	transform: scale(1.1);

}


/* Fim Projetos */


/* restaurantes */
#restaurantes .restaurantes{
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#restaurantes .restaurantes-header h1 {
	margin-bottom: 50px;
}
#restaurantes .all-restaurantes {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#restaurantes .restaurante-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}

#restaurantes .restaurante-item a {
	font-size: 1.8rem;
	color: white;
}
#restaurantes .restaurante-info {
	padding: 30px;
	flex-basis: 50%;
	background-image: linear-gradient(60deg, #209737 0%, #156225 100%);
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	color: white;
}

#restaurantes .restaurante-info2 {
	padding: 30px;
	flex-basis: 50%;
	background-image: linear-gradient(60deg, #80000D 0%, #91000E 100%);
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	color: white;
}

#restaurantes .restaurante-info h1 {
	font-size: 4rem;
	font-weight: 500;
}

#restaurantes .restaurante-info2 h1 {
	font-size: 4rem;
	font-weight: 500;
}

#restaurantes .restaurante-info h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 10px;
}

#restaurantes .restaurante-info2 h2 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 10px;
}

#restaurantes .restaurante-info p {
color: white;
}

#restaurantes .restaurante-info2 p {
color: white;
}

#restaurantes .restaurante-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

#restaurantes .restaurante-img::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;

opacity: .5;
}

#restaurantes .restaurante-img img{
	transition: .3s ease transform;
}

#restaurantes .restaurante-item:hover .restaurante-img img{
	transform: scale(1.1);

}


/* Fim Projetos */


/* About */

#about .about{
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}

#about .col-left {
	width: 298px;
	height: 222px;
}

#about .col-right {
	width: 100%;
}

#about .col-right h2{
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .2rem;
	margin-bottom: 10px;
}

#about .col-right p{
	margin-bottom: 20px;
}

#about .col-right .cta {
	color: black;
	border-color: #206893;
	margin-bottom: 30px;
	padding: 10px 20px;
	font-size: 2rem;
}

#about .col-left .about-img  {
	height: 100%;
	width: 100%;
	border: 7px solid  white;
	position: relative;
}

#about .col-left .about-img::after {
content: '';
position: absolute;
left: -18px;
top: 10px;
height: 98%;
width: 98%;
border: 7px solid  #206893;
z-index: -1;
}

/* Fim About */


/* Contatos */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
}
#contact .contact-items {
	width: 400px;
}

#contact .contact-item {
	width: 80%;
	padding: 30px;
	text-align: center;
	border-radius: 10px;
	margin: 30px;
	display:flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 20px 0 #0000002c;
	transition: .3s ease box-shadow;
}

#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
} 

#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}

#contact .contact-info h1{
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}

#contact .contact-info h2{
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}


/* Fim contatos */

/* representantes */
#representantes .representantes {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
}
#representantes .representantes-items {
	width: 400px;
}

#representantes .representantes-item {
	width: 80%;
	padding: 30px;
	text-align: center;
	border-radius: 10px;
	margin: 30px;
	display:flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 20px 0 #0000002c;
	transition: .3s ease box-shadow;
}

#representantes .representantes-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
} 

#representantes .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}

#representantes .representantes-info h1{
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}

#representantes .representantes-info h2{
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}


/* Fim representantes */


/* Footer */
#footer {
	background-image: linear-gradient(180deg, #666666 0%, #333333 100%);
}

#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}

#footer h1 {
	color: red;
	font-weight: 700;
	font-size: 4.5rem;
	letter-spacing: .2rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: .2rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

#footer .social-icon {
	display: flex;
	margin-bottom: 30px;

}

#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}

#footer .social-item img {
	filter: grayscale(1);
	transition: .3s ease filter;
}

#footer .social-item:hover img {
	filter: grayscale(0);
}

#footer p{
	color: white;
	font-size: 1.3rem;
}

/* Fim footer */




/* keyframes */
@keyframes hamburger_puls{
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100%{
		opacity: 0;
		transform: scale(1.5);
	}
}


@keyframes text_reveal_box {
	50%{
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100%{
		color: white;
	}
}
@keyframes text_reveal_bits {
	100%{
		color: #B50012;
		font-weight: 700;
	}
}
/* Fim Keyframes*/

@media screen and (min-width: 480px) {
	.logo {width: 208px; height: 193px;  float: left; background: url(../img/logo.png) left center/208px 193px no-repeat; 
font-size: 0; padding: 2%;}
}



/* Media Query for tablet*/
@media only screen and (min-width: 768px){
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
    h1.section-titulo {
    	font-size: 7rem;
    }


/* Inicio*/
#inicio h1 {
	font-size: 5rem;
}
/* Fim inicio*/


/* Serviços*/

#services .service-baixo .service-item {
	flex-basis: 45%;
	margin: 1.5%;

}

#services .service-topo {
	max-width: 80%;
	margin: 0 auto;
}

/* Fim Serviços*/

/* clientes*/

#clientes .clientes-baixo .clientes-item {
	flex-basis: 45%;
	margin: 1.5%;

}

/* Fim clientes*/



/* Projetos*/
#projetos .projeto-item {
	flex-direction: row;
	height: 300px;
	margin: 0;
	width: 100%;
	border-radius: 0;
}
#projetos .projeto-item:nth-child(even) {
	flex-direction: row-reverse;
}
#projetos .all-pojetos .projeto-info {
	height: 100%;
}

#projetos .all-pojetos .projeto-img {
	height: 100%;
}

/* Fim projetos*/


/* Projetos*/
#pastificios .pastificio-item {
	flex-direction: row;
	height: 500px;
	margin: 0;
	width: 100%;
	border-radius: 0;
}
#pastificios .pastificio-item:nth-child(even) {
	flex-direction: row-reverse;
}
#pastificios .all-pastificios .pastificio-info {
	height: 100%;
}

#pastificios .all-pastificios .pastificio-img {
	height: 100%;
}

/* Fim projetos*/



/* restaurante*/
#restaurantes .restaurante-item {
	flex-direction: row;
	height: 350px;
	margin: 0;
	width: 100%;
	border-radius: 0;
}
#restaurantes .restaurante-item:nth-child(even) {
	flex-direction: row-reverse;
}
#restaurantes .all-restaurantes .restaurante-info {
	height: 100%;
}

#restaurantes .all-restaurantes .restaurante-img {
	height: 100%;
}

/* Fim restaurante*/

/* about*/
#about .about {
	flex-direction: row;
}
#about .col-left {
	width: 100%;
	height: 400px;
	padding: 20px;
}
#about .col-left .about-img::after {
	left: -45px
	top: 34px;
	height: 98%;
	width: 98%;
	border: 10px solid #206893;
}
#about .col-right {
	text-align: left;
	padding: 30px;
}

#about .col-right h1 {
	text-align: left;
}

/* Fim about*/


/* contato*/
#contact .contact {
	flex-direction: column;
	padding: 100px 0;
	align-items: center;
	justify-content: center;
	min-width: 20vh;
}

#contact .contact-items {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0;
	
}

#contact .contact-item {
	width: 30%;
	margin: 0;
	flex-direction: row;
}

#contact .contact-item .icon {
	height: 80px;
	width: 80px;
} 

#contact .contact-item .icon img {
	object-fit: contain;
}
#contact .contact-item .contact-info {
	width: 100%;
	text-align: left;
}

/* Fim contato*/

/* representante*/
#representantes .representantes {
	flex-direction: column;
	padding: 100px 0;
	align-items: center;
	justify-content: center;
	min-width: 20vh;
}

#representantes .representantes-items {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0;
	
}

#representantes .representantes-item {
	width: 30%;
	margin: 0;
	flex-direction: row;
}

#representantes .representantes-item .icon {
	height: 80px;
	width: 80px;
} 

#representantes .representantes-item .icon img {
	object-fit: contain;
}
#representantes .representantes-item .representantes-info {
	width: 100%;
	text-align: left;
}

/* Fim representante*/


}

/* Fim Media Query for tablet*/

/* Media Query for Desktop*/
@media only screen and (min-width: 1200px) {
/* Header */



#header .hamburger {
	display: none;
}

#header .nav-list ul{
	position: initial;
	display: block;
	height: auto;
	width: fit-content;
	background-color: transparent;
}

#header .nav-list ul li{
	display: inline-block;
}

#header .nav-list ul li a{
	font-size: 1rem;
}

#header .nav-list ul a::after{
	display: none;
}

#header .nav-list {
	text-align: left;
	max-width: 1300px;
}

/* Fim Header */

#informacoes .informacoes-baixo .informacoes-item {
	flex-basis: 22%;
	margin: 1.5%;
}

#informacoes .informacoes-baixo  {
	align-items: self-start;
	justify-content: start;

}



/* imagem inicio */
#imagem_pas {
margin-top: 20px;
background-image: url(../img/fabrica.jpg);
background-size: cover;

}

/* imagem fim*/

#services .service-baixo .informacoes-item {
	flex-basis: 22%;
	margin: 1.5%;
}

#services .service-baixo  {
	align-items: self-start;
	justify-content: start;

}



#clientes .clientes-baixo .clientes-item {
	flex-basis: 22%;
	margin: 1.5%;
}

#clientes .clientes-baixo  {
	align-items: self-start;
	justify-content: start;

}

/*botão*/
.btn {width: 35%;}

/*fim botão*/


/*formularios*/
.formularios {background-image: url(../img/cadastre.jpg); background-size: cover; display: start;}
.formularios article {width: 45%; text-align: left;}
.formularios form {margin-left: 1%;}
.formularios button {width: 70%;}

/*fim formularios*/

/*noticias*/

.noticia {width: 23%; float: left; margin-right: 2%;}
.noticia:nth-child(2) {margin-right: 2%;}
.noticia:nth-child(4) {margin-right: 0;}

/*Fim noticias*/
.mostranoticia img {width: 50%; height: 50%;}
.galeria img {width: 25%;}

/*Mostra noticias*/

/*Fim Mostra noticias*/


/*onde comprar*/
.ondecomprar {width: 70%;}
.ondecomprar1 td {font-size: 1.5rem}


/* fim onde comprar*/
}
/* Fim Media Query for Desktop*/