.banner{
	width: 100%;
	min-height: 385px;
}
.banner img{
	width: 100%;
	min-height: 385px;
	object-fit: cover;
	object-position: center;
}


/* ----- CONTEUDO 1 ----- */
.conteudo1{
	width: 100%;
	margin-top: 5%;
	padding-bottom: 5%;
	z-index: 1;
	position: relative;
}
.conteudo1 .content{
	max-width: 1640px;
	width: 100%;
	margin: auto;
	justify-content: space-between;
}
.abrir-coluna{
	display: none;
}
.coluna{
	max-width: 350px;
	width: 100%;
	height: fit-content;
	border: 1px solid #dadada;
	border-radius: 20px;
	flex-direction: column;
	padding: 30px;
	gap: 50px;
}
.filtro{
	width: 100%;
	flex-direction: column;
}
.f-titulo2{
	width: 100%;
	position: relative;
	align-items: center;
	margin-bottom: 20px;
}
.f-titulo2 h2{
	font-size: 22px;
	font-weight: 700;
	color: #383838;
	font-family: "Asap", sans-serif;
}
.f-box{
	display: grid;
	width: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 500px;
	gap: 20px;
}
.f-box::-webkit-scrollbar {
  width: 6px;
}
.f-box::-webkit-scrollbar-track {
  background: #d4d4d4;
}
.f-box::-webkit-scrollbar-thumb {
  background: var(--verde);
}
.f-box::-webkit-scrollbar-thumb:hover {
  background: var(--verde);
}
.f-box a{
	width: fit-content;
}

/* ----- FILTRO CHECK ----- */
.box {
	width: 100%;
	display: flex;
	position: relative;
	padding-left: 35px;
	font-size: 22px;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.box h4{
	font-size: 18px;
	color: #383838;
	cursor: pointer;
}
.box h4 span{
	font-size: 18px;
	color: #A7A7A7;
}
.box span{
	cursor: pointer;
}
.box input{
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	opacity: 0;
	margin-bottom: 12px;
	cursor: pointer;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 5px;
	background-color: #dadada;
	border: 3px solid #dadada;
	cursor: pointer;
}
.box input:checked ~ .checkmark {
	background-color: var(--verde);
	border: none;
}
.box input:checked ~ h4{
	color: var(--verde);
}
.box input:checked ~ h4 span{
	color: var(--verde);
}
.checkmark::after {
	content: "";
	position: absolute;
	display: none;
}
.box input:checked ~ .checkmark:after {
	display: block;
}
.box .checkmark::after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.botoes-filtro{
	width: 100%;
	justify-content: center;
	text-align: center;
}
.filtrar-a{
	width: 100%;
	height: 52px;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-color: var(--vermelho);
	border: 1px solid var(--vermelho);
	border-radius: 10px;
	font-size: 24px;
	transition: ease .3s;
}
.filtrar-a:hover{
	background-color: #fff;
	color: var(--vermelho);
	transition: ease .3s;
}

/* ----- PRODUTOS ----- */
.produtos1{
	max-width: calc(100% - 400px);
	width: 100%;
	align-content: baseline;
	gap: 10px;
}
.produtos-title{
	width: 100%;
}
.produtos-title h2{
	color: var(--vermelho);
	font-family: "Asap", sans-serif;
	font-size: 40px;
}
.produtos-infos{
	width: 100%;
}
.produtos-infos h4, .produtos-infos span{
	width: fit-content;
	color: #A7A7A7;
	font-size: 15px;
	font-weight: 500;
}
.produtos-itens{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-items: center;
	align-items: stretch;
	column-gap: 20px;
	row-gap: 20px;
}
.produtos-box{
	max-width: 400px;
	width: 100%;
	position: relative;
	flex-direction: column;
	align-items: center;
	height: fit-content;
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 20px;
	transition: ease .3s;
}
.produtos-box:hover{
	border: 2px solid var(--verde);
	transition: ease .3s;
}
.produtos-box a{
	width: 100%;
	display: flex;
	justify-content: center;
}
.produtos-box a img{
	max-width: 90%;
	max-height: 90%;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.box-text{
	bottom: 10px;
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	pointer-events: none;
}
.box-text span{
	font-size: 16px;
	font-weight: 600;
	color: var(--verde);
	letter-spacing: 3px;
	width: 100%;
}
.box-text h4{
	font-size: 16px;
	font-weight: 600;
	color: var(--verde);
	letter-spacing: 3px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	font-family: "Asap", sans-serif;
}

/* ----- PAGINACAO ----- */
.paginacao{
	width: 100%;
	margin-top: 50px;
	align-items: center;
	gap: 20px;
}
.paginacao a{
	color: #A7A7A7;
}
.pag{
	width: 46px;
	height: 46px;
}
.pag a{
	display: flex;
	width: 100%;
	background-color: #fff;
	color: #A7A7A7;
	border: 1px solid #A7A7A7;
	border-radius: 10px;
	align-items: center;
    justify-content: center;
    transition: ease .3s;
}
.pag:hover a{
	background-color: var(--verde);
	border: 1px solid var(--verde);
	color: #fff;
	transition: ease .3s;
}
.pag-active{
	background-color: var(--verde)!important;
	border: 1px solid var(--verde)!important;
	color: #fff!important;
	border-radius: 10px;
	transition: ease .3s;
}

/* MEDIA DESKTOP */
@media screen and (max-width: 1700px){
	.conteudo1 .content{
		padding: 0 5%;
	}
}

@media screen and (max-width: 1440px){
	
}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){
	.produtos-itens{
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 1100px){
	.coluna{
		max-width: 300px;
	}
	.produtos1{
		max-width: calc(100% - 350px);
	}
}

/* MOBILE */
@media screen and (max-width: 1000px){
	.conteudo1 .content{
		gap: 50px;
		flex-direction: column;
	}
	.conteudo1 .content .abrir-coluna{
		display: flex;
		align-items: center;
		gap: 10px;
		height: fit-content;
		border: none;
		cursor: pointer;
		background-color: transparent;
		margin: auto;
		font-size: 22px;
		font-weight: 700;
		color: var(--vermelho);
		transition: ease .3s;
	}
	.conteudo1 .content .abrir-coluna i{
		font-size: 35px;
		color: var(--vermelho);
		transition: ease .3s;
	}
	.conteudo1 .content .abrir-coluna:hover,
	.conteudo1 .content .abrir-coluna:hover i{
		color: var(--azul);
		transition: ease .3s;
	}
	.coluna{
		max-width: 350px;
		display: none;
		margin: auto;
		margin-top: -25px;
	}
	.produtos1{
		max-width: 100%;
	}
}

@media screen and (max-width: 768px){
	
}

@media screen and (max-width: 600px){
	.produtos-itens{
		grid-template-columns: 1fr;
	}
	
}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}