* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: 0;
}
html {
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='400' cy='400' r='50%25' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%230EF'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='400' cy='400' r='70%25' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%230FF'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='800'/%3E%3Cg fill-opacity='.8'%3E%3Cpath fill='url(%23b)' d='M998.7 439.2c1.7-26.5 1.7-52.7 0.1-78.5L401 399.9c0 0 0-0.1 0-0.1l587.6-116.9c-5.1-25.9-11.9-51.2-20.3-75.8L400.9 399.7c0 0 0-0.1 0-0.1l537.3-265c-11.6-23.5-24.8-46.2-39.3-67.9L400.8 399.5c0 0 0-0.1-0.1-0.1l450.4-395c-17.3-19.7-35.8-38.2-55.5-55.5l-395 450.4c0 0-0.1 0-0.1-0.1L733.4-99c-21.7-14.5-44.4-27.6-68-39.3l-265 537.4c0 0-0.1 0-0.1 0l192.6-567.4c-24.6-8.3-49.9-15.1-75.8-20.2L400.2 399c0 0-0.1 0-0.1 0l39.2-597.7c-26.5-1.7-52.7-1.7-78.5-0.1L399.9 399c0 0-0.1 0-0.1 0L282.9-188.6c-25.9 5.1-51.2 11.9-75.8 20.3l192.6 567.4c0 0-0.1 0-0.1 0l-265-537.3c-23.5 11.6-46.2 24.8-67.9 39.3l332.8 498.1c0 0-0.1 0-0.1 0.1L4.4-51.1C-15.3-33.9-33.8-15.3-51.1 4.4l450.4 395c0 0 0 0.1-0.1 0.1L-99 66.6c-14.5 21.7-27.6 44.4-39.3 68l537.4 265c0 0 0 0.1 0 0.1l-567.4-192.6c-8.3 24.6-15.1 49.9-20.2 75.8L399 399.8c0 0 0 0.1 0 0.1l-597.7-39.2c-1.7 26.5-1.7 52.7-0.1 78.5L399 400.1c0 0 0 0.1 0 0.1l-587.6 116.9c5.1 25.9 11.9 51.2 20.3 75.8l567.4-192.6c0 0 0 0.1 0 0.1l-537.3 265c11.6 23.5 24.8 46.2 39.3 67.9l498.1-332.8c0 0 0 0.1 0.1 0.1l-450.4 395c17.3 19.7 35.8 38.2 55.5 55.5l395-450.4c0 0 0.1 0 0.1 0.1L66.6 899c21.7 14.5 44.4 27.6 68 39.3l265-537.4c0 0 0.1 0 0.1 0L207.1 968.3c24.6 8.3 49.9 15.1 75.8 20.2L399.8 401c0 0 0.1 0 0.1 0l-39.2 597.7c26.5 1.7 52.7 1.7 78.5 0.1L400.1 401c0 0 0.1 0 0.1 0l116.9 587.6c25.9-5.1 51.2-11.9 75.8-20.3L400.3 400.9c0 0 0.1 0 0.1 0l265 537.3c23.5-11.6 46.2-24.8 67.9-39.3L400.5 400.8c0 0 0.1 0 0.1-0.1l395 450.4c19.7-17.3 38.2-35.8 55.5-55.5l-450.4-395c0 0 0-0.1 0.1-0.1L899 733.4c14.5-21.7 27.6-44.4 39.3-68l-537.4-265c0 0 0-0.1 0-0.1l567.4 192.6c8.3-24.6 15.1-49.9 20.2-75.8L401 400.2c0 0 0-0.1 0-0.1L998.7 439.2z'/%3E%3C/g%3E%3C/svg%3E");
	background-attachment: fixed;
	background-size: cover;
}
body {
  background-color: rgba(255,255,255,0.4);
	margin: 0 auto;
	max-width: 1024px;
	min-width: 320px;
	font-family: sans-serif;
}
header {
	display: grid;
	grid-template-areas:
	'menu-global menu-global'
	'logo slogan'
	'barra-pesquisa barra-pesquisa';
}
header > :nth-child(1) {
	grid-area: menu-global;
}
header > :nth-child(2) {
	grid-area: logo;
	padding: 5px;
	min-width: 150px;
	min-height: 150px;
}
header > :nth-child(2) a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("/bm/imagem/logo.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-clip: content-box;
	background-position: center;
}
header > :nth-child(3) {
	grid-area: slogan;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 1px;
}
header > :nth-child(3) > * {
	margin: 1px;
}
header > :nth-child(4) {
	grid-area: barra-pesquisa;
	height: 40px;
	margin: 10px 150px;
}
@media (max-width: 800px) {
	header > :nth-child(4) {
		margin: 10px 100px;
	}
}
@media (max-width: 600px) {
	header > :nth-child(4) {
		margin: 10px 50px;
	}
}
@media (max-width: 400px) {
	header > :nth-child(4) {
		margin: 10px 10px;
	}
}
main {
	padding: 20px 10px;
	margin: 5px 0px;
	min-height: 70vh;
	border: 1px rgba(0,0,0,1) solid;
	border-left: 0;
	border-right: 0;
}
footer {
	display: grid;
	grid-template-areas:
	'contato mapa'
	'endereco endereco';
	grid-template-columns: 1fr 1fr;
	padding: 10px;
	margin-bottom: 5px;
	justify-items: center;
}
@media(max-width: 680px) {
	footer {
		display: grid;
		grid-template-areas:
		'contato'
		'mapa'
		'endereco';
		grid-template-columns: 1fr;
	}
}
footer > :nth-child(1) {
	grid-area: contato;
}
footer > :nth-child(2) {
	grid-area: mapa;
}
footer > :nth-child(3) {
	grid-area: endereco;
	text-align: center;
	border-top: 1px rgba(0,0,0,1) solid;
	margin-top: 10px;
	padding: 5px;
}
input, select, textarea, button {
	border: 1px rgba(0,0,0,1) solid;
	padding: 5px 10px;
}
input[type=submit], button {
	cursor: pointer;
}
h1, h2, h3, h4 {
	text-align: center;
	padding: 5px;
}
p {
	margin: 5px;
	padding: 5px;
}
ul {
	list-style: none;
}
table td, table th {
	border-bottom: 1px rgba(0,0,0,1) solid;
	padding: 2px 10px;
}




.barra-pesquisa {
	position: relative;
	display: flex;
	justify-content: center;
}
.barra-pesquisa > input[type=search] {
	width: 100%;
	height: 100%;
	position: absolute;
	padding-right: 110px;
	min-width: 300px;
}
.barra-pesquisa > input[type=submit] {
	width: 100px;
	height: 100%;
	position: absolute;
	right: 0;
}

.menu-global > label {
	cursor: pointer;
	padding: 3px 15px 3px 2px;
	float: right;
}
.menu-global > label div {
	background-color: rgba(0,0,0,1);
	width: 30px;
	height: 3px;
	margin: 5px 0;
}
.menu-global > input {
	display: none;
}
.menu-global > div {
	max-height: 0px;
	transition: max-height 0.5s;
	overflow: hidden;
	background-color: rgba(255,255,255,1);
	width: 100%;
	overflow: hidden;
}
.menu-global input:checked ~ div {
	display: block;
	max-height: 100%;
	transition: max-height 0.5s;
	height: auto;
	border-bottom: 10px rgba(0,0,0,1) solid;
	overflow: hidden;
}
.menu-global nav h4 {
	padding: 10px 5px 5px 5px;
}
.menu-global nav a {
	display: block;
	background-color: rgba(0,0,0,0.2);
	color: rgba(0,0,0,1);
	text-decoration: none;
	padding: 5px 10px;
	border-bottom: 1px rgba(0,0,0,1) solid;
}
.menu-global nav a:hover {
	background-color: rgba(0,0,0,0.1);
}




.barra-contato-flutuante-vertical {
	position: fixed;
	bottom: 5px;
	right: 5px;
	padding: 10px;
	border-radius: 20px;
}
@media(min-width: 1024px) {
	.barra-contato-flutuante-vertical {
		right: auto;
		margin-left: 940px;
	}
}
.barra-contato-flutuante-vertical > a {
	display: block;
	margin: 5px;
	width: 305x;
	height: 35px;
}
.barra-contato-flutuante-vertical img {
	max-width: 100%;
	max-height: 100%;
}



.mensagem-alerta {
	display: block;
	padding: 10px 20px;
	background-color: rgba(255,150,0,0.7);
	color: rgba(0,0,0,1);
	font-size: 1.2rem;
}
.mensagem-sucesso {
	display: block;
	padding: 10px 20px;
	background-color: rgba(0,255,0,0.7);
	color: rgba(0,0,0,1);
	font-size: 1.2rem;
}
.mensagem-erro {
	display: block;
	padding: 10px 20px;
	background-color: rgba(255,50,0,0.7);
	color: rgba(0,0,0,1);
	font-size: 1.2rem;
}



.lista-produtos-capa {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.lista-produtos-capa > * {
	display: inline-block;
	margin: 6px;
	padding: 3px;
	width: 148px;
	height: 216px;
	background-color: rgba(0,0,0,0.2);
	box-shadow: 0px 0px 2px 1px;
	vertical-align: top;
}
.lista-produtos-capa > *:hover {
	background-color: rgba(0,0,0,0);
	box-shadow: 0px 0px 8px 5px;
}
.lista-produtos-capa > * > a {
	display: grid;
	grid-template-rows: 80px 100px 30px;
	justify-items: center;
	text-decoration: none;
	color: rgba(0,0,0,1);
}
.lista-produtos-capa > * > a > img {
	max-width: 100%;
	max-height: 100%;
}
.lista-produtos-capa > * > a > h4 {
	overflow: hidden;
	align-self: center;
}
.lista-produtos-capa > * > a > p {
	align-self: center;
	font-weight: bold;
	font-size: 1.3rem;
}

.lista-rodape {
	list-style: none;
}
.lista-rodape > li {
	display: block;
	height: 25px;
	margin-bottom: 8px;
}
.lista-rodape > h3 {
	margin-left: 30px;
	margin-bottom: 10px;
}
.lista-rodape > li > a {
	display: block;
	width: 100%;
	height: 100%;
}
.lista-rodape img {
	max-width: 100%;
	max-height: 100%;
	float: left;
	margin-right: 10px;
}



.formulario {
	display: block;
	padding: 5px;
	margin: auto;
	width: max-content;
}
.formulario label, .formulario input, .formulario select, .formulario textarea, .formulario button {
	display: block;
	min-width: 200px;
	width: 50%;
	margin: 3px 0px;
}
@media(max-width: 680px) {
	.formulario label, .formulario input, .formulario select, .formulario textarea, .formulario button {
		display: block;
		min-width: 200px;
		width: 100%;
		margin: 3px 0px;
	}
}
.formulario label {
	margin-top: 13px;
}
~formulario input[type=submit] {
	margin-top: 10px;
}
.formulario input[type=checkbox] ~label, .formulario input[type=radio] ~label {
	display: inline-block;
	width: min-content;
	margin-left: 5px;
}
.formulario input[type=checkbox], .formulario input[type=radio] {
	display: inline-block;
	min-width: min-content;
	width: min-content;
}






.slide {
	display: grid;
	grid-template-areas:
	'botao-voltar fotos-slide botao-avancar';
	width: 100%;
	height: 100%;
	grid-template-rows: 100%;
	grid-template-columns: 60px auto 60px;
}
.botao-slide {
	font-size: 4rem;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	background-color: rgba(0,0,0,0.1);
	transition: background-color 1s;
}
.botao-slide:hover {
	background-color: rgba(0,0,0,0.3);
	transition: background-color 1s;
	cursor: pointer;
}
.slide > spam:first-child {
	grid-area: botao-voltar;
}
.slide > spam:last-child {
	grid-area: botao-avancar;
}
.slide > .fotos-slide {
	grid-area: fotos-slide;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.2);
}
.slide > .fotos-slide > img {
	max-width: 0%;
	max-height: 0%;
}
.slide > .fotos-slide > img.slide-foto-destaque {
	max-width: 100%;
	max-height: 100%;
	transition: max-width 1s;
	transition: max-height 1s;
}


.pagina-produto {
	display: grid;
	grid-template-areas:
	'fotos dados'
	'descricao descricao';
}
@media(max-width: 680px) {
	.pagina-produto {
		grid-template-areas:
		'fotos'
		'dados'
		'descricao';
	}
}
.pagina-produto-fotos {
	grid-area: fotos;
	display: block;
	padding: 10px;
	height: 400px;
}
.pagina-produto-dados {
	grid-area: dados;
	padding: 10px;
}
.pagina-produto-descricao {
	grid-area: descricao;
}


.miniatura {
  display: inline-block;
  max-width: 50px;
  max-height: 50px;
}


// calculadora

.container_custo {
	margin: 5px;
	padding: 2px;
}

#barra_resultado {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	text-align: center;
}
#lucro_valor {
	background-color: rgba(0,0,255,0.3);
}
#venda_valor {
	background-color: rgba(0,255,0,0.3);
}
#producao_valor {
	background-color: rgba(255,0,0,0.3);
}

#barra_lateral {
	float: right;
}
#barra_lateral > div {
	width: 50px;
	height: 50px;
	border: 1px red solid;
	padding: 1px;
	display: block;
	margin: 10px;
	border-radius: 25px;
}
#barra_lateral > div:hover {
	cursor: pointer;
}
#barra_lateral img {
	max-width: 100%;
	max-height: 100%;
	padding: 3px;
}

#resumo {
	display: block;
}
#resumo > div {
	display: block;
	margin: 5 0 5 0;
}
#resumo_lista {
	list-style: none;
	margin: 0;
	padding: 0
}
#resumo_lista > li {
	border: 1px black solid;
	padding: 2px;
}
#material {
	display: none;
}
#laser {
	display: none;
}
#sublimacao {
	display: none;
}
#serra {
	display: none;
}
