header {
	margin-bottom: 20px;
}

.produto {
	width: 100vw;
	padding: 0vw 10vw;
	box-sizing: border-box;
}

.produto-box {
	display: flex;
	width: 80vw;
}

.produto .imagem {
	width: 40vw;
}

.produto .imagem img{
	width: 90%;

	max-width: 90% !important;
}

.produto .titulo-box {
	width: 40vw;
}

.titulo a {
	color: rgba(1, 1, 1, 0.957);
}

.titulo a h1 {
	font-size: 1.3em;
	font-weight: 400;
	padding-bottom: 30px;
}

.titulo p {
	font-size: 1.3em;
	color: #7FA653;
	padding-bottom: 30px;
}

.adicionar {
	width: 100%;
	padding-bottom: 30px;
}

.adicionar a{
	color: #Ffffff;
	background: #7FA653;
	font-weight: 400;
	font-size: 1em;
	padding: 15px 30px;
	border-radius: 3px;
}

.informacoes {
	font-size: 1em !important;
	margin-bottom: 30px;
}

.informacoes h2 {
	font-size: 1em;
	font-weight: 400;
	margin-bottom: 20px;
}

.informacoes table {
	border: 1px solid rgba(0,0,0,0.4);
	border-radius: 5px;
	padding:3px;
	width: 100%;
}

.informacoes th {
	font-size: 0.8em;
	font-weight: 400;
	padding: 5px 10px;
	text-align: center;
	border-bottom: 1px solid rgba(0,0,0,0.4);
}

.informacoes td {
	font-size: 0.8em;
	font-weight: 400;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.produto .imagem {
		width: 80vw;
	}

	.produto-box {
		flex-wrap:wrap;	
	}

	.produto .titulo-box {
		width: 80vw;
	}

	.adicionar {
	text-align: center;
	}

}