:root {
	--background-color: #FEFEFE;
	--font-color: #000000;
	--button-color: #df9e14;
}

body {
	font-family: 'Montserrat', sans-serif;
}

/*HEADER*/
header {
	background: #1d1d1dee;
	padding: 20px 0;
	position: fixed;
	width: 100vw;
	max-height: 15vh;
	z-index: 10;
}

.logo {
	position: relative;
	max-height: 14vh;
	max-width: 30vw;
}

.caixa {
	position: relative;
	width: 90vw;
	margin: 0 auto;
}

.guia-pagina {
	position: absolute;
	top: 50%;
	right: 0;
}

.guia-pagina li {
	display: inline;
	margin: 0 0 0 15px;
}

.guia-pagina button {
	border: none;
	background: none;
    padding:0;
	cursor: pointer;
	text-transform: uppercase;
	color: #fcfcfc;
	font-weight: bold;
	font-size: 22px;
	text-decoration: none;
}

.guia-pagina button:hover {
	color: #ce8d00;
	text-decoration: underline;
}

@media screen and (max-width: 1024px ) {
	.caixa {
		width: 90%;
		margin: 0;
	}
	.guia-pagina li {
		margin-left: 5px;
	}
	.guia-pagina button {
		font-size: 15px;
	}
}
@media screen and (max-width: 700px ) {
	.guia-pagina button {
		font-size: 13px;
	}
}
@media screen and (max-width: 700px ) {
	.caixa {
		width: 99%;
		margin: 2px;
	}
	.guia-pagina {
		top: 50%;
		height: inherit;
		width: 60%;
		transform: translate( 0, -50%);
	}
	.guia-pagina ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-row-gap: 10px;
	}
	.guia-pagina button {
		
		font-size: 10px;
	}
}

/* PARTE PARA OS PRODUTOS ---------------------------------------------------
*/
.area-produtos {
	/* background-color: var(--background-color); */
	background-image: url(/img/background-made-from-bricks.jpg);
	background-repeat: repeat;
	background-size: 350px;
}

.produtos {
	width: 940px;
	margin: 0 auto;
	padding: 50px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	row-gap: 5px;
	column-gap: 7px;
}

.produtos li {
	display: flex;
	align-content: center;
	font-family: "Bebas Neue", sans-serif;
	color: #180b00;
	display: inline-block;
	text-align: center;
	padding: 40px 40px;
	box-sizing: border-box;
	height: 310px;
	width: 310px;
	grid-column: span 2;
	background-image: url(img/WoodFrame.png);
	background-position: center;
	background-size: 120%;
	background-color: #aaaaaa;/*#aaaaaa*/
}

#produto-ultimalinha1{
	grid-column: 2 / span 2;
}

#produto-ultimalinha2{
	grid-column: 4 / span 2;
}

.produtos h2 {
	font-size: 40px;
	font-weight: bold;
}

.produto-descricao {
	font-size: 18px;
}

.produto-preco {
	font-size: 30px;
	font-weight: bold;
	margin-top: 10px;
}

@media screen and (max-width: 1024px ) {
	.produtos {
		width: 680px;
	}
	.produtos li {
		width: 215px;
		height: 215px;
	}
}

@media screen and (max-width: 700px ) {
	.produtos {
		width: 570px;
	}
	.produtos li {
		width: 170px;
		height: 170px;
		padding: 30px;
	}
	.produtos h2 {
		font-size: 27px;
	}
	.produto-preco {
		font-size: 18px;
		margin-top: 10px;
	}
}
@media screen and (max-width: 480px ){
	.produtos {
		width: 315px;
	}
	.produtos li {
		width: 100px;
		height: 100px;
		padding: 10px;
	}
	.produtos h2 {
		font-size: 17px;
	}
	.produto-preco {
		font-size: 15px;
		margin-top: 10px;
	}
}
/*FOOOTER-----------------*/
footer {
	text-align: center;
	background: url("img/bg.jpg");
	padding: 40px 0;
}

footer img {
	height: 14vw;
}

.copyright {
	color: #FFFFFF;
	font-size: 13px;
	margin: 20px 0 0;
}


/* css da página inicial --------------------------------------------------*/

.div-banner{
	height: 100vh;
	overflow: hidden;
}

.div-banner p {	
	font-family: "Bebas Neue", sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 160px;
	font-weight: 1000;
	color: var(--background-color);
	z-index: 1;
}

.banner {
	left: 50%;
	width: 100vw;
	filter: brightness(80%) sepia(30%);
	position: fixed;
	z-index: -1;
	transform: translate(-50%, -30%);
}

@media screen and (max-width: 1024px ) {
	.div-banner {
		height: 600px;
	}
	.banner 
	{
		top: 20%;
	}
}
@media screen and (max-width: 480px) {
	.div-banner{
		height: 400px;
	}
	.banner 
	{
		top: 10%;
	}
}

.titulo-principal {
	text-align: center;
	font-size: 75px;
	margin: 0 0 10px;
	clear: left;
	font-family: "Bebas Neue", sans-serif;
	grid-area: titulo;
	grid-template-rows: 2fr 1fr 3fr 1fr;
}

.principal {
	box-sizing: border-box;
	background: #1a1a1a;
	width: 100%;
	padding: 2em 0;
	justify-items: center;
}

.principal div {
	background-color: #dbdbdb;
	width: 800px;
	height: 400px;
	border-radius: 70px;
	padding: 40px;
	margin: 0 auto;
	align-content:  center;
	display: grid;
	grid-template-areas: 
	"titulo titulo titulo"
	"img . ." 
	"img texto texto"
	"img . .";
}

.principal div p {
	grid-area: texto;
	font-size: 30px;
	align-self: center;
}

.principal strong {
	font-weight: bold;
}

.principal em {
	font-style: italic;
}

.img-principal {
	grid-area: img;
	height: 300px;
	float: left;
	margin-right: 20px;
}

@media screen and (max-width: 1024px ) {
	.principal div {
		width: 600px;
	}
	.principal div p {
		font-size: 20px;
	}
}
@media screen and (max-width: 700px ) {
	.titulo-principal{
		font-size: 60px;
	}
	.principal div {
		width: 550px;
		height: 300px;
		padding: 20px;
	}
	.principal div p {
		font-size: 20px;
	}
	.img-principal {
		height: 200px;
	}
}
@media screen and (max-width: 480px ) {
	.titulo-principal{
		font-size: 45px;
	}
	.principal div {
		width: 280px;
		height: 400px;
		padding: 20px;
		display: flex;
		flex-direction: column;
		border-radius: 40px;
	}
	.principal div p {
		font-size: 15px;
		margin: 10px 0;
	}
	.img-principal {
		height: 200px;
		max-width: max-content;
		align-self: center;
	}
}
/* Parte redes Sociais---------------------------------------- */

.area-contato{
	padding: 8vh;
	background-image: url(img/Black_and_white_checkered_pattern.jpg);
	background-size: 500px;
	display: grid;
	justify-content: center;
	
}

.redessociais {
	background-color: var(--background-color);
	width: 350px;
	height: 200px;
	padding: 2rem;
	border: #000000 2px solid ;
	border-radius: 20px;
	text-align: center;
}

.redessociais h2 {
	font-size: 2rem;
	font-weight: 700;
}

.redessociais p {
	margin: 0.5rem 0;
}
.redessociais svg {
	opacity: 70%;
	width: 80px;
	margin: 15px 0;
}

.redessociais-icones svg{
	margin: 10px 25px;
}
@media screen and (max-width: 480px ) {
	.redessociais {
		width: 280px;
		padding: 15px;
	}
}

.whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 140px;
	height: 140px;
	text-align: center;
}

.whatsapp a img {
	width: 100%;
}

@media screen and (max-width: 1024px ) {
	.whatsapp {
		width: 90px;
		height: 90px;
	}
}
@media screen and (max-width: 700px ) {
	.whatsapp {
		width: 10vh;
		height: 10vh;
	}
}

/* Parte mapa-------------------------------------- */
.mapa-conteudo{
	width: 940px;
	margin: 0 auto;
}

.mapa {
	padding: 3em 0;
	background: linear-gradient(#dbdbdb, #1a1a1a)
}

.mapa p {
	margin: 0 0 2em;
	text-align: center;
}

@media screen and (max-width: 1024px ) {
	.mapa-conteudo {
		width: 680px;
	}
}
@media screen and (max-width: 700px ) {
	.mapa-conteudo {
		width: 580px;
	}
}
@media screen and (max-width: 480px ) {
	.mapa-conteudo {
		width: 320px;
	}
}