@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200&display=swap');

/* font-family: 'Open Sans', sans-serif;
font-family: 'Yanone Kaffeesatz', sans-serif; */

*{
	box-sizing: border-box;
}

body{
	flex-wrap:wrap;
	margin: 0 auto;
	font-family: 'Open Sans', sans-serif;
	color: #333;

}

h1, h2, h3, h4, h5, h6{
	font-family: 'Yanone Kaffeesatz', sans-serif;
	letter-spacing: 1.5px;
	color:#333;

}

img{
	display:block;
	max-width:100%;
}

.header{
	height: 60px;
}

.header, .conteudo{
	direction: flex;
	justify-content: space-between;
}

.conteudo{
	margin: auto;
	width: 99%;
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

.logo, .icon-menu{
	margin: 5px;
	content: #333;
}

.icon-menu{
	display:block;
	width:40px;
	height:40px;
	font-size: 30px;
	line-height:45px;
	margin-left:auto;
	cursor:pointer;
}

.nav{
	position: absolute;
	top:60px;
	width: 100%;
	left: -100%;
	transition: all 0.4s;
	
}

.menu{
	list-style: none;
	padding: 10px;
	margin: 0;
}

.menu_link{
	display: block;
	padding: 15px;
	background: #FFF;
	text-decoration: none;
	color: #333;
}

.menu_link:hover, .select{
	background: rgba(51,51,51,0.9);
	color: #FFF;
}

.mostrar{
	left:0%;
}

.banner img{
	flex-wrap:wrap;
	display: inline;
	width:70%;
	height:100%;
	margin-top: 20px;
}

.banner_button{
	position:absolute;
	right:10%;
	margin-top: -60px;
}

.banner_button a{
	display:block;
	color: #FFF;
	width:180px;
	text-decoration: none;
	padding:12px;
	background: #333;
	text-align: center;
	font-weight: bold;
}

.banner_button a:hover{
	background:rgba(51,51,51,0.5);
}

#bemvindo .conteudo{
	display:flex;
	flex-wrap:wrap;
	text-align: : center;
}

#bemvindo img{
	flex-wrap:wrap;
	display: inline;
	width:70%;
	height:100%;
	justify-content: center;
}

#bemvindo h2, p{
	text-align: center;
}

#info_coluna .conteudo{
	display:flex;
	flex-wrap:wrap;
	text-align: : center;
}

#info_coluna img{
	width:100%;
	max-width:350px;
	border:10px solid rgba(245, 245, 245, 1);
}

#info_coluna article{
	margin:15px;
	padding-top:20px;
}

#info_coluna p{
	width:100%;
	max-width:280px;
	text-align: center;
	margin: 40px;
}



/* Estilo do Rodapé */

.footer{
	background: #FFF;
	color: #333;
}

.footer, .conteudo{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding-bottom:10px;
}

.social{
	width: 100%;
	text-align:center;
	font-size: 30px;
}

.social a{
	color: #333;
	text-decoration: none;
	font-size: 20px;
	padding: 5px;
}

/* Aplicando media query para site responsível */
@media(min-width:480px){
	.banner_button{
		display: none;
	}
	.info_description{
		font-size: 25px;
	}

	.description_text{
		font-size: 15px;
	}

	.banner{
		width: 170%;
	}

	.titulo_produto{
		font-size: 35px;
	}

	.info_coluna{
		display: flex;
		justify-content: center;
	}

	.info_titulo{
	font-size: 18px;
	}

	.info_text{
		font-size: 15px;
	}

	.copy{
		font-size: 14px;
	}
}

@media(min-width:768px){
	.info_description{
		font-size: 25px;
	}

	.description_text{
		font-size: 18px;
	}
	.titulo_produto{
		font-size: 40px;
	}

	.info_coluna{
	display: flex;
	justify-content: center;
	}

	.info_titulo{
	font-size: 25px;
	}

	.info_text{
		font-size: 20px;
	}

	.banner_button{
		display: flex;
		top:20%;
    }

    .copy{
		font-size: 16px;
	}
   
    }

@media(min-width:1024px){

	.info_description{
		font-size: 40px;
	}

	.description_text{
		font-size: 20px;
	}

	.titulo_produto{
		font-size: 50px;
	}

	.info_coluna{
	display: flex;
	justify-content: center;
	}

	.info_titulo{
	font-size: 35px;
	}

	.info_text{
		font-size: 20px;
	}

	.nav{
		position: static;
		width: auto;
	}

	.menu{
	    display: flex;
	}

	.icon-menu{
		display: none;
	}

	.banner_button{
		display: flex;
		top:25%;
	}
	.copy{
		font-size: 20px;
	}
	}