.formulario-footer{
	display: none;
}

.banner{
	width: 100%;
	position: relative;
}	
.banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Ajuste a altura do degradê conforme necessário */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg1) 100%);
    pointer-events: none; /* Isso garante que o degradê não interfira nos elementos clicáveis abaixo */
}
.banner img{
	width: 100%;
}
.banner .container{
	align-self: flex-start;
	justify-content: center;
	padding: 50px 0;
}
.banner .absolute{
	position: absolute;
	width: 100%;
	height: 100%;
}
.banner .texto{
	min-width: 364px;
	min-height: 100px;
	align-content: center;
    justify-content: center;
	background-image: url('../imagens/bg-banner.png');
	background-size: 100% 100%;
	background-position: center center;
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
	padding: 10px 20px 20px;
}
.banner .texto h2{
	font-size: 40px;
}


.conteudo{
	width: 100%;
	padding: 50px 0 100px 0;
	background-color: var(--bg1);
	background-image: url('../imagens/produtos/bg.png');
	background-size: auto;
	background-repeat: no-repeat;
	background-position: right bottom;
}
.conteudo .container{
	gap: 20px;
}
.conteudo .pesquisa{
	max-width: 812px;
	width: 100%;
	margin: auto;
	position: relative;
	align-items: center;
}
.conteudo .pesquisa input{
	width: 100%;
	height: 68px;
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-radius: 50px;
	padding: 0 0 0 20px;
}
.conteudo .pesquisa button{
	position: absolute;
	width: 164px;
	height: 58px;
	border-radius: 50px;
	color: #fff;
	font-size: 22px;
	right: 5px;
	background-color: var(--primaria);
}
.conteudo .links{
	width: 100%;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	white-space: nowrap;
	justify-content: center;
}
.conteudo .links::-webkit-scrollbar {
	height: 10px;
}
.conteudo .links::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.conteudo .links::-webkit-scrollbar-thumb {
  background-color: var(--primaria);
}
.conteudo .links::-webkit-scrollbar-thumb:hover {
  background-color: var(--bg3);
}
.conteudo .links a{
	display: inline-block;
	text-align: center;
	 white-space: nowrap;
	align-items: center;
	padding: 10px 20px;
	color: var(--primaria);
	font-size: 18px;
	background-color: #E0E0E0;
	transition: ease .3s;
	border-radius: 5px;
}
.conteudo .links a:hover,
.conteudo .links a.ativo{
	background-color: var(--primaria);
	color: #fff;
	transition: ease .3s;
}
.conteudo .div{
	max-width: 674px;
	width: 100%;
	height: 2px;
	background-color: #0067aa25;
	margin: 10px auto 20px;
}
.conteudo .produtos{
	width: 100%;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 35px;
    row-gap: 100px;
}
.conteudo .produtos .box{
	width: 100%;
	height: 100%
}
.conteudo .produtos .box .img{
	width: 100%;
	height: fit-content;
	position: relative;
	border-bottom-right-radius: 30px;
}
.conteudo .produtos .box .img .filtro{
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 15px;
	padding: 10px 15px;
	background-color: #fff;
	color: var(--primaria);
	font-size: 16px;
	text-transform: uppercase;
	pointer-events: none;
}
.conteudo .produtos .box .img a{
	display: flex;
	width: 100%;
	height: fit-content;
	position: relative;
	border-bottom-right-radius: 30px;
}
.conteudo .produtos .box .img a .bg{
	background-image: url('../imagens/produtos/bg1.png');
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
}
.conteudo .produtos .box .img a img{
	width: 100%;
	border-bottom-right-radius: 30px;
}
.conteudo .produtos .box .texto{
	width: 100%;
	padding: 10px;
	flex: 1;
}
.conteudo .produtos .box .texto h3{
	font-size: 30px;
	font-weight: 700;
	overflow: hidden; 
	text-overflow: ellipsis; 
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical; 
}
.conteudo .produtos .box .texto span{
	font-size: 20px;
	font-family: "roboto";
	overflow: hidden; 
	text-overflow: ellipsis; 
	display: -webkit-box;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical; 
	margin-bottom: 25px;
}
.conteudo .produtos .box .texto p{
	color: #3D3D3D;
	font-size: 22px;
	overflow: hidden; 
	text-overflow: ellipsis; 
	display: -webkit-box;
	-webkit-line-clamp: 4; 
	-webkit-box-orient: vertical;
	font-family: 'Roboto';
	margin-top: auto;
}
.conteudo .produtos .box .texto div{
	display: flex;
	width: 100%;
	height: 1px;
	background-color: var(--primaria);
	margin: 25px 0;
}
.conteudo .produtos .box .texto a{
	width: fit-content;
	margin: 0 auto 0;
	color: var(--primaria);
	font-weight: 400;
	font-size: 22px;
	border-bottom: 1px solid transparent;
	transition: border .3s;
}
.conteudo .produtos .box .texto a:hover{
	font-weight: 600;
	border-bottom: 1px solid var(--primaria);
	transition: border .3s;
}


.paginacao{
	padding-top: 100px;
}

/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

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

}

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

}

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

}

@media screen and (max-width: 1100px){
	.conteudo .produtos{
		grid-template-columns: 1fr 1fr;
	}
	.conteudo .produtos .box{
		max-width: 430px;
	}
	.conteudo .produtos .box .texto h3{
		font-size: 30px;
	}

	.banner img{
		height: 347px;
		object-fit: cover;
	}
}

/* MOBILE */
@media screen and (max-width: 1000px){
    
}

@media screen and (max-width: 800px){
    .conteudo .produtos .box .texto h3{
		font-size: 28px;
	}
}

@media screen and (max-width: 600px){
    .conteudo .produtos{
		grid-template-columns: 1fr;
	}
	.conteudo .produtos .box .texto h3{
		font-size: 25px;
	}

	.banner img{
		height: 600px;
		object-fit: cover;
	}
}

@media screen and (max-width: 400px){
	.banner .texto{
		width: 100%;
	}
	.banner .texto h2{
		font-size: 9vw;
	}
}

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

}