:root {
	--azul: #006f95;
	--verde: #76bc21;
	--verde-escuro: #00963e;
	--fonte-cinza: #717874;

	--fonte-regular: 'Lato-Regular';
	--fonte-light: 'Lato-Light';
	--fonte-bold: 'Lato-Bold';
	--fonte-black: 'Lato-Black';

	--box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 20%);
}

html, body{
	max-width: 100%;
	width: 100%;
	overflow-x: hidden;
}

body{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

*{
	text-decoration: none;
	margin: 0;
	padding: 0;
	outline: none !important;
	box-sizing: border-box;
	list-style: none;
	font-family: var(--fonte-regular);
}

input {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

img{
	max-width: 100%;
	width: auto;
}

div{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

section{
	position: relative;
	width: 100%;
	overflow: visible;
}

.container{
	width: 85vw;
	margin: 0 auto;
	max-width: 1366px;
}

p, ul li{
	font-family: var(--fonte-regular);
	color: var(--fonte-cinza);
	padding: 0;
	border-bottom: none;
}

a{
	transition: .3s;
	transition-timing-function: ease-out;
}

a:hover, a:hover, a:focus {
	text-decoration: none;
}

h1,h2,h3,h4,h5{
	font-family: var(--fonte-light);
	font-weight: normal !important;
}

h2 span, h3 span, h4 span, h5 span, p span {
	font-family: var(--fonte-bold);
}

label.error {
	position: absolute;
	font-size: 14px;
	color: #ff4f4f;
	bottom: -20px;
	left: 0;
	margin: 0;
}

input.error{
	/*border: 1px solid #ff4f4f !important;*/
}

textarea.error{
	/*border: 1px solid #ff4f4f !important;*/
}

.enviar.active {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 43%);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 1
}

.enviar.active .loader {
	border: 6px solid #fff;
	border-top: 6px solid var(--verde);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite
}

@keyframes spin {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

.not-select{
	-webkit-user-select: none;  
	-moz-user-select: none;     
	-ms-user-select: none;      
	user-select: none;  
}


.swal2-icon.swal2-error .swal2-x-mark{
	top: -38px;
}


header{
	padding: 16px 0;
}

header .box-header{
	justify-content: space-between;
	width: 1060px;
}

header .box-header > div{
	width: 50%;
}

header .box-header .logo{
	justify-content: flex-start;
	top: 4px;
}

header .box-header .menu{

}

header .box-header .menu ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

header .box-header .menu ul li{
	position: relative;
}

header .box-header .menu ul li a{
	color: var(--verde);
	position: relative;
}

header .box-header .menu ul li a:before{
	transition: .3s;
	content: "";
	background-color: var(--verde-escuro);
	width: 0%;
	height: 2px;
	bottom: -6px;
	left: 0;
	display: block;
	position: absolute;
}

header .box-header .menu ul li a:hover:before{
	width: 100%;
}

header .box-header .menu ul li .drop{
	display: none;
	position: absolute;
	top: 34px;
	left: calc(-50% - 20px);
	z-index: 2;
	background-color: #fff;
	padding: 20px 16px;
	min-width: 220px;
	box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 25%);
}

header .box-header .menu ul li:hover .drop{
	display: flex;
}

header .box-header .menu ul li .drop:before{
	content: "";
	display: block;
	width: 0px;
	height: auto;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #ffffff;
	position: absolute;
	top: -8px;
	left: calc(50% - 10px);
}

header .box-header .menu ul li .drop:after{
	content: "";
	display: block;
	width: 100%;
	height: 24px;
	background-color: transparent;
	position: absolute;
	top: -20px;
	left: 0;
}

header .box-header .menu ul li .drop ul{

}

header .box-header .menu ul li .drop ul li{
	margin-bottom: 10px;
	width: 100%;
}

header .box-header .menu ul li .drop ul li:last-child{
	margin-bottom: 0;
}

header .box-header .menu ul li .drop ul li a{
	padding: 12px 16px;
	color: var(--verde-escuro);
	font-family: var(--fonte-bold);
	font-size: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	background-color: rgb(184 213 144 / 20%);
	width: 100%;
	border-radius: 8px;
	min-height: 52px;
}

header .box-header .menu ul li .drop ul li a:hover{
	background-color: rgb(184 213 144 / 50%);
}

header .box-header .menu ul li .drop ul li a img{
	margin-right: 10px;
	max-width: 50px;
}

header .box-header .menu ul li .drop ul li a:before{
	display: none;
}


#banner{
	z-index: 1;
}

#banner .box-banner img{
	max-width: 1920px;
}


#banner .box-banner .slick-arrow{
	background-color: rgb(255 255 255 / 45%);
	opacity: 1;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 8%;
	border-radius: 50%;
	z-index: 1;
	top: 46%;
	transition: .3s;
}

#banner .box-banner .slick-arrow.slick-disabled{
	opacity: .5;
}

#banner .box-banner .slick-prev{
	transform: rotate(
		180deg);
}

#banner .box-banner .slick-arrow:before{
	content: "";
	width: 14px;
	height: 3px;
	position: relative;
	right: -14px;
	top: -3px;
	display: block;
	background-color: var(--verde);
	transform: rotate( 
		45deg );
	z-index: 3;
	opacity: 1;
}

#banner .box-banner .slick-arrow:after{
	content: "";
	width: 14px;
	height: 3px;
	position: relative;
	right: -14px;
	top: 3px;
	display: block;
	background-color: var(--verde);
	transform: rotate( 
		130deg );
	z-index: 3;
	opacity: 1;
}

#banner .box-banner .slick-next{
	left: auto;
	right: 8%;
	top: 51%;
}

#banner .box-banner .slick-prev:hover, .slick-prev:focus, #banner .box-banner .slick-next:hover, .slick-next:focus {
	color: #000;
	outline: none;
	background-color: rgb(255 255 255 / 45%);;
}

#banner-produto{
	background-position: center;
	background-size: contain;
	height: 216px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

#banner-produto.corte{
	background-color: #067399;
}

#banner-produto.equinos{
	background-color: #774623;
}

#banner-produto .item{
	justify-content: space-between;
	width: 1060px;
}

#banner-produto .item h1{
	font-size: 72px;
	line-height: 52px;
	color: #fff;
	font-family: var(--fonte-bold);
	max-width: 80%
}

#banner-produto .item .icon{
	position: absolute;
	top: -27px;
	right: 0;
}

#banner-produto.equinos .item .icon {
	top: -29px;
}

#banner-produto.categoria .item .icon {
	top: 52px;
	z-index: 1;
}

#banner-interna{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	height: 650px;
}


#resultados{
	/*margin-top: -156px;*/
	z-index: 0;
}

#resultados .box-resultados{
	width: 1109px;
	justify-content: space-between;
}

#resultados .box-resultados .imagem{
	width: auto;
	margin-left: 0;
}

#resultados .box-resultados .infos{
	width: calc(100% - 625px);
	padding: 86px 70px 0;
	justify-content: flex-start;
}

#resultados .box-resultados .infos h1{
	font-family: var(--fonte-light);
	color: var(--verde-escuro);
	font-size: 40px;
	line-height: 50px;
}

#resultados .box-resultados .infos p{
	font-size: 18px;
	line-height: 32px;
	margin: 20px 0;
}

#resultados .box-resultados .infos a{
	color: var(--verde);
	padding: 12px 16px;
	border: 2px solid var(--verde);
	margin-top: 14px;
	font-size: 14px;
	text-align: center;
	font-family: var(--fonte-bold);
}

#resultados .box-resultados .infos a:hover{
	background-color: var(--verde);
	color: #fff;
}


#produtos-home .box-produtos{
	margin: 80px 0;
}

#produtos-home .box-produtos .tit{
	margin-bottom: 40px;
}

#produtos-home .box-produtos .tit h2{
	font-size: 36px;
	line-height: 52px;
	font-family: var(--fonte-light);
	color: var(--verde);
	text-align: center;
}

#produtos-home .box-produtos .conteudo .item{
	width: calc(100%/3 - 20px);
	margin: 0 10px;
	background-color: #edf4e3;
	padding: 160px 0 100px;
	transition: .3s;
}

#produtos-home .box-produtos .conteudo .item:hover{
	transform: translateY(-6px);
	box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 20%);
}

#produtos-home .box-produtos .conteudo .item a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#produtos-home .box-produtos .conteudo .item:nth-child(2){
	background-color: #e9f3f1;
}

#produtos-home .box-produtos .conteudo .item:nth-child(2) h2{
	color: #067399;
}

#produtos-home .box-produtos .conteudo .item:last-child{
	background-color: #edeee2;
}

#produtos-home .box-produtos .conteudo .item:last-child h2{
	color: #A16937;
}

#produtos-home .box-produtos .conteudo .item .fundo{
	height: 220px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
}

#produtos-home .box-produtos .conteudo .item img{
	z-index: 1;
}

#produtos-home .box-produtos .conteudo .item h2{
	width: 100%;
	text-align: center;
	font-size: 42px;
	color: #76B82A;
	font-family: var(--fonte-bold);
	z-index: 1;
}

#produto .box-produto{
	justify-content: space-between;
	align-items: flex-start;
	margin: 78px 0 0;
	width: 1060px;
	max-width: 100%;
}

#produto .box-produto .imagem{
	width: 60%;
	justify-content: flex-start;
}

#produto .box-produto .imagem img{
	max-height: 590px;
	margin: 0 auto;
}



#produto .box-produto .imagem .slick-arrow{
	background-color: rgb(166 207 200 / 16%);
	opacity: 1;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 8%;
	border-radius: 50%;
	z-index: 1;
	top: 48%;
	transition: .3s;
}

#produto .box-produto .imagem .slick-arrow.slick-disabled{
	opacity: .5;
}

#produto .box-produto .imagem .slick-prev{
	transform: rotate(
		180deg);
}

#produto .box-produto .imagem .slick-arrow:before{
	content: "";
	width: 14px;
	height: 3px;
	position: relative;
	right: -14px;
	top: -3px;
	display: block;
	background-color: #000;
	transform: rotate( 
		45deg );
	z-index: 3;
	opacity: 1;
}

#produto .box-produto .imagem .slick-arrow:after{
	content: "";
	width: 14px;
	height: 3px;
	position: relative;
	right: -14px;
	top: 3px;
	display: block;
	background-color: #000;
	transform: rotate( 
		130deg );
	z-index: 3;
	opacity: 1;
}

#produto .box-produto .imagem .slick-next{
	left: auto;
	right: 8%;
	top: 51%;
}

#produto .box-produto .imagem .slick-prev:hover, .slick-prev:focus, #produto .box-produto .imagem .slick-next:hover, .slick-next:focus {
	color: #000;
	outline: none;
	background-color: rgb(255 255 255 / 45%);;
}



#produto .box-produto .detalhes{
	width: 32%;
	margin-top: 92px;
	justify-content: flex-start;
}

#produto.equinos .box-produto .detalhes {
	margin-top: 0px;
}

.migalha ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.migalha ul li{
	font-size: 14px;
	color: #5E7571;
	margin-right: 30px;
	position: relative;
}

.migalha ul li:last-child{
	margin-right: 0;
}

.migalha ul li:before{
	content: "";
	width: 5px;
	height: 1px;
	position: absolute;
	right: -18px;
	top: 7px;
	display: block;
	background-color: var(--verde);
	transform: rotate(
		45deg
		);
}

.migalha ul li:after{
	content: "";
	width: 5px;
	height: 1px;
	position: absolute;
	right: -18px;
	top: 10px;
	display: block;
	background-color: var(--verde);
	transform: rotate(
		130deg
		);
}

.migalha ul li:last-child:before,
.migalha ul li:last-child:after{
	display: none;
}

.migalha ul li a{
	font-size: 14px;
	color: #5E7571;
}

#produto .box-produto .detalhes h2{
	font-size: 26px;
	line-height: 38px;
	color: var(--verde);
	margin: 20px 0;
	font-family: var(--fonte-regular);
}

#produto.azul .box-produto .detalhes h2{
	color: #067399;
}

#produto .box-produto .detalhes .descricao{

}

#produto .box-produto .detalhes .descricao p{
	font-size: 16px;
	line-height: 30px;
}

#produto .box-produto .detalhes .indicacao{
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 20px;
}

#produto .box-produto .detalhes .indicacao .item{
	background-color: rgb(166 207 200 / 16%);
	max-width: 126px;
	min-height: 185px;
	padding: 20px 14px;
	margin-right: 20px;
}

#produto .box-produto .detalhes .indicacao .item span{
	font-size: 12px;
	color: #5E7571;
	width: 100%;
	text-align: center;
}

#produto .box-produto .detalhes .indicacao .item img{
	max-height: 56px;
	margin: 20px 0;
}

#produto .box-produto .detalhes .indicacao .item p{
	color: #006F95;
	font-size: 14px;
	font-family: var(--fonte-bold);
	width: 100%;
	text-align: center;
}

#produto .box-produto .infos{
	margin-top: 70px;
}

#produto .box-produto .infos .item{
	margin-bottom: 40px;
}

#produto .box-produto .infos .item .tit h2{
	font-size: 26px;
	line-height: 42px;
	font-family: var(--fonte-regular);
	color: var(--verde);
	padding: 14px 0;
	text-align: center;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 20%);
	margin-bottom: 40px;
}

#produto.azul .box-produto .infos .item .tit h2{
	color: #067399;
}

#produto .box-produto .infos .item .conteudo p{
	line-height: 32px;
	font-size: 16px;
	width: 100%;
	text-align: left;
}


#produto.equinos .box-produto .detalhes h2,
#produto.equinos .box-produto .infos .item .tit h2{
	color: #92653c;
}




#internas.quem-somos:before{
	content: "";
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
}

#internas .box-internas{
	margin-top: -200px;
	width: 1280px;
}

.selo{
	position: absolute;
	top: -170px;
	right: 80px;
	width: auto;
	z-index: 2;
}

.selo h1,
.selo h2{
	color: #fff !important;
	font-size: 40px !important;
	line-height: 56px !important;
	position: absolute !important;
	top: 26px !important;
	margin: 0 !important;
	width: auto;
}

#internas.noticias .box-internas .selo h1,
#internas.noticias .box-internas .selo h2 {
	top: 58px !important;
}

.selo h1 span,
.selo h2 span{
	width: 100% !important;
}



#internas .box-internas .infos{
	
}

#internas .box-internas .box{
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
	padding: 80px 80px 20px;
}


#internas .box-internas .box:nth-child(1){
	background-color: #fff;
}

#internas .box-internas .box:nth-child(2){
	background-color: transparent;
}

#internas .box-internas .box:nth-child(even){
	flex-direction: row-reverse;
}

#internas .box-internas .box .imagem{
	width: 48%;
}

#internas .box-internas .box .conteudo{
	width: 46%;
	margin-top: 50px;
	justify-content: flex-start;
}

#internas .box-internas .box:nth-child(3){
	margin-top: -42px;
	padding-top: 0;
	margin-bottom: 0;
}

#internas .box-internas .box:nth-child(3) .conteudo{
	margin-top: 160px;
}

#internas .box-internas h1,
#internas .box-internas h2{
	font-size: 40px;
	line-height: 52px;
	color: var(--verde);
	max-width: 380px;
	text-align: left;
	margin: 30px 0;
	position: relative;
}

#internas.noticias .box-internas h1,
#internas.noticias .box-internas h2{
	max-width: 100%;
	text-align: center;
}

#internas .box-internas .texto p{
	font-size: 18px;
	line-height: 32px;
	margin-bottom: 20px;
}





#internas.noticias .box-internas{
	background-color: #fff;
	padding: 50px 80px;
	justify-content: space-between;
}

#internas.noticias .box-internas .migalha{
	top: -26px;
}

#internas.noticias .box-internas .item{
	width: 46%;
	margin-bottom: 50px;
}

#internas.noticias .box-internas .item .imagem a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}

#internas.noticias .box-internas .item .imagem a:before{
	content: "";
	background-color: rgb(0 0 0 / 34%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: .3s;
	opacity: 0;
}

#internas.noticias .box-internas .item .imagem a:hover:before{
	opacity: 1;
}

#internas.noticias .box-internas .item .imagem .img{
	height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#internas.noticias .box-internas span.data{
	background-color: var(--verde);
	padding: 12px 40px;
	font-size: 20px;
	color: #fff;
	position: absolute;
	bottom: -24px;
	z-index: 2;
}

#internas.noticias .box-internas .item .conteudo h2,
#internas.noticias .box-internas .item .conteudo p{
	text-align: center;
}

#internas.noticias .box-internas .item .conteudo a{
	font-size: 18px;
	font-family: var(--fonte-bold);
	color: var(--fonte-cinza);
}

#internas.noticias .box-internas .item .conteudo a:hover{
	color: var(--verde);
}

#internas.noticias .box-internas .paginacao{
	border-top: 1px solid #ebebeb;
	padding-top: 30px;
}

#internas.noticias .box-internas .paginacao ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#internas.noticias .box-internas .paginacao ul li{
	margin: 0 10px;
}

#internas.noticias .box-internas .paginacao ul li a{
	font-size: 14px;
	color: var(--fonte-cinza);
}

#internas.noticias .box-internas .paginacao ul li a:hover,
#internas.noticias .box-internas .paginacao ul li.active a{
	opacity: .6;
}



#internas.noticias.interna .box-internas .infos{
	justify-content: space-between;
	padding: 20px 0;
}

#internas.noticias.interna .box-internas .infos div{
	width: auto;
}


#internas.noticias.interna .box-internas span.data{
	position: relative;
	bottom: auto;
}

#internas.noticias.interna .box-internas .compartilhe{
	justify-content: space-between;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	padding: 16px 0;
}

#internas.noticias.interna .box-internas .compartilhe p{
	width: auto;
	font-size: 20px;
	color: var(--verde-escuro);
}

#internas.noticias.interna .box-internas .compartilhe .links{
	width: auto;
}

#internas.noticias.interna .box-internas .compartilhe .links a{
	background-color: #f2f2f2;
	width: 30px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}

#internas.noticias.interna .box-internas .compartilhe .links a i{
	color: #999999;
	font-size: 12px;
	transition: .3s;
}

#internas.noticias.interna .box-internas .compartilhe .links a:hover{
	background-color: #999999;
}

#internas.noticias.interna .box-internas .compartilhe .links a:hover i{
	color: #f2f2f2;
}















#categoria{

}

#categoria .box-categoria{
	width: 1060px;
	margin: 32px 0;
}

#categoria .box-categoria .filtro{
	background-color: #f1f7f6;
	padding: 16px 20px;
	margin: 30px 0;
}

#categoria .box-categoria .filtro .tit{
	width: 200px;
	justify-content: flex-start;
}

#categoria .box-categoria .filtro .tit p{
	font-size: 14px;
	color: var(--azul);
	font-family: var(--fonte-bold);
}

#categoria .box-categoria .filtro .conteudo{
	width: calc(100% - 200px);
}

#categoria .box-categoria .filtro .conteudo p{
	font-size: 16px;
	font-family: var(--fonte-regular);
	position: relative;
	padding-right: 20px;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#categoria .box-categoria .filtro .conteudo .item{
	justify-content: flex-start;
	width: calc(100%/2);
}

#categoria .box-categoria .filtro .conteudo .item p span{
	content: "";
	position: absolute;
	display: block;
	width: 8px;
	height: 2px;
	background-color: var(--verde);
	right: 2px;
	top: 10px;
	transform: rotate(45deg);
}

#categoria .box-categoria .filtro .conteudo .item p span:before{
	content: "";
	display: block;
	width: 8px;
	height: 2px;
	background-color: var(--verde);
	transform: rotate(
		90deg
		);
	left: 4px;
	position: relative;
	top: -4px;
}

#categoria .box-categoria .filtro .conteudo .item ul{
	position: absolute;
	top: 35px;
	background-color: #fff;
	z-index: 1;
	min-width: 200px;
	padding: 12px 18px;
	box-shadow: var(--box-shadow);
	left: -16px;
	display: none;
	transition: .3s;
}

#categoria .box-categoria .filtro .conteudo .item.active ul{
	display: block;
}

#categoria .box-categoria .filtro .conteudo .item ul li{
	margin-bottom: 8px;
}

#categoria .box-categoria .filtro .conteudo .item ul li:last-child{
	margin-bottom: 0;
}

#categoria .box-categoria .filtro .conteudo .item ul li a{
	color: var(--fonte-cinza);
	font-size: 14px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#categoria .box-categoria .filtro .conteudo .item ul li a:hover{
	color: var(--azul);
}

#categoria .box-categoria .produtos{
	justify-content: flex-start;
	margin-top: 100px;
}

#categoria .box-categoria .produtos .item{
	width: calc(100%/3 - 54px);
	margin-bottom: 40px;
	max-width: 300px;
	margin-right: 80px;
}

#categoria .box-categoria .produtos .item:nth-child(3n){
	margin-right: 0;
}

#categoria .box-categoria .produtos .item a{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

#categoria .box-categoria .produtos .item img{
	transition: .3s;
}

#categoria .box-categoria .produtos .item .imagem{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 300px;
}

#categoria .box-categoria .produtos .item a:hover img{
	box-shadow: 0px 12px 20px 2px rgb(0 0 0 / 20%);
}

#categoria .box-categoria .produtos .item h2{
	font-size: 26px;
	color: var(--verde);
	margin: 20px 0;
	width: 100%;
	text-align: center;
	font-family: var(--fonte-regular);
}

#categoria .box-categoria .produtos .item button{
	background-color: #a6cfc8;
	padding: 18px 10px;
	font-size: 14px;
	font-family: var(--fonte-bold);
	opacity: 0;
	transition: .3s;
	width: 100%;
	border: none;
	color: #fff;
	cursor: pointer;
}

#categoria .box-categoria .produtos .item a:hover button{
	opacity: 1;
}

#contato{
	padding: 30px 0 180px;
}

#contato .fundo{
	background-size: cover;
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
}

#contato .box-contato{
	background-image: url(../imgs/bg-contato.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 60px 0;
	background-color: var(--verde-escuro);
}

#contato .box-contato .tit{
	margin-bottom: 30px;
}

#contato .box-contato .tit h3{
	font-size: 36px;
	line-height: 52px;
	color: #B8D590;
}

#contato .box-contato .conteudo{
	width: 900px;
	max-width: 80%;
}

#contato .box-contato .conteudo form{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

#contato .box-contato .conteudo .campos{
	width: calc(100%/2 - 12px);
	margin-bottom: 20px;
	justify-content: flex-start;
}

#contato .box-contato .conteudo .campos input[type="text"],
#contato .box-contato .conteudo .campos select{
	border: none;
	font-size: 14px;
	padding: 16px 20px;
	width: 100%;
	margin-bottom: 10px;
}

#contato .box-contato .conteudo label{
	color: #B8D590;
	font-size: 12px;
	width: 100%;
	text-align: left;
	position: absolute;
	left: 0;
	bottom: -8px;
}

#contato .box-contato .conteudo input[type="checkbox"]{
	appearance: auto;
	-moz-appearance: auto;
	-webkit-appearance: auto;
}

#contato .box-contato .conteudo .selecione{
	justify-content: flex-start;
}

#contato .box-contato .conteudo .selecione label{
	position: relative;
	width: calc(100% - 30px);
	bottom: initial;
	margin-left: 8px;
}

#contato .box-contato .conteudo .bottom{
	justify-content: space-between;
}

#contato .box-contato .conteudo .bottom .selecione{
	width: 60%;
}

#contato .box-contato .conteudo .bottom .selecione label{
	color: #fff;
}

#contato .box-contato .conteudo .bottom .selecione label.error{
	position: absolute;
	color: #B8D590;
	font-size: 12px;
	bottom: -20px;
	left: 0;
	margin: 0;
}

#contato .box-contato .conteudo .bottom .btn{
	width: 30%;
	justify-content: flex-end;
}

#contato .box-contato .conteudo .bottom .btn button{
	color: #fff;
	padding: 12px 16px;
	border: 2px solid #fff;
	margin-top: 14px;
	font-size: 14px;
	text-align: center;
	font-family: var(--fonte-bold);
	cursor: pointer;
	background-color: transparent;
	transition: .3s;
}

#contato .box-contato .conteudo .bottom .btn button:hover {
	background-color: #fff;
	color: var(--verde);
}

#contato.fale-conosco{
	padding: 480px 0 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

#contato.fale-conosco .box-contato .conteudo {
	margin-top: 50px;
}

#contato.fale-conosco .box-contato .selo{
	top: -169px;
}

#contato.fale-conosco .box-contato .selo h1{
	left: 38px;
}

footer{
	background-color: var(--verde);
	width: 100%;
	
}

footer .box-footer{
	justify-content: space-between;
	padding: 50px 0;
	border-bottom: 2px solid rgb(255 255 255 / 20%);
	width: 1060px;
}

footer .box-footer .logo{
	width: 20%;
}

footer .box-footer .links{
	width: 70%;
	align-items: flex-start;
}

footer .box-footer .links .item{
	width: calc(100%/4 - 20px);
	justify-content: flex-start;
}

footer .box-footer .links .item .telefone{
	margin-top: 15px;
}

footer .box-footer .links .item h3{
	width: 100%;
	text-align: left;
	font-size: 16px;
	color: var(--verde-escuro);
	font-family: var(--fonte-bold);
	margin-bottom: 10px;
}

footer .box-footer .links .item ul{
	width: 100%;
}

footer .box-footer .links .item p,
footer .box-footer .links .item ul li a{
	font-size: 14px;
	color: #fff;
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
}

footer .box-footer .links .item ul li{
	margin-bottom: 10px;
}

footer .box-footer .links .item ul li a{
	position: relative;
}

footer .box-footer .links .item ul li a:before {
	transition: .3s;
	content: "";
	background-color: var(--verde-escuro);
	width: 0%;
	height: 2px;
	bottom: -4px;
	left: 0;
	display: block;
	position: absolute;
}

footer .box-footer .links .item ul li a:hover:before{
	width: 100%;
}

footer .box-footer .links .item.redes{

}

footer .box-footer .links .item.redes a{
	background-color: rgb(255 255 255 / 25%);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	border: 2px solid transparent;
}

footer .box-footer .links .item.redes a i{
	color: #fff;
}

footer .box-footer .links .item.redes a:hover{
	border: 2px solid #fff;
	transform: translateY(-4px);
}

.copy {
	background-color: var(--verde);
	z-index: 5
}

.copy .box-copy {
	padding: 30px 0;
}

.copy .box-copy .box {
	width: auto
}

.copy .box-copy p {
	font-size: 14px;
	text-align: center;
	color: #fff;
	font-family: var(--fonte-regular);
}

.copy .box-copy .box:last-child p {
	opacity: 1
}

.copy .box-copy p a {
	margin-left: 5px;
	position: relative;
	top: 3px;
}

.copy .box-copy p img {
	position: relative
}

.copy .box-copy .box:last-child p:first-child {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #fff
}


@media(max-width: 1440px){
	#internas.quem-somos:before{
		top: 48%;
	}

	#internas .box-internas .box:nth-child(3) {
		margin-top: 0px;
	}

	#internas.noticias .box-internas .item .imagem .img {
		height: 460px;
	}

	#contato.fale-conosco {
		padding: 380px 0 0px;
	}
}

@media(max-width: 1280px){
	header .box-header,
	footer .box-footer{
		width: 100%;
	}

	header .box-header .logo {
		width: 30%;
	}

	header .box-header .menu {
		width: 60%;
	}


	#banner .box-banner img {
		max-width: 1440px;
	}

	#banner-produto .item h1 {
		font-size: 60px;
	}


	#resultados {
		/*margin-top: -116px;*/
	}

	#resultados .box-resultados{
		align-items: flex-start;
		width: 832px;
	}

	#resultados .box-resultados .imagem {
		width: 469px;
	}

	#resultados .box-resultados .infos {
		width: calc(100% - 469px);
		padding: 116px 50px 0;
	}

	#resultados .box-resultados .infos h1 {
		font-size: 30px;
		line-height: 42px;
	}

	#resultados .box-resultados .infos p {
		font-size: 16px;
	}


	#produtos-home .box-produtos .conteudo .item {
		padding: 100px 0 70px;
	}

	#produtos-home .box-produtos .conteudo .item .fundo {
		height: 150px;
	}

	#produtos-home .box-produtos .conteudo .item img {
		width: 150px;
	}

	#produtos-home .box-produtos .conteudo .item h2 {
		font-size: 36px;
	}


	#produto .box-produto .imagem {
		width: 56%;
	}

	#produto .box-produto .detalhes {
		width: 40%;
	}



	#internas.noticias .box-internas {
		padding: 50px 40px;
	}

	#internas.noticias .box-internas .item .imagem .img {
		height: 400px;
	}

	#internas.noticias .box-internas h1, #internas.noticias .box-internas h2 {
		font-size: 30px;
		line-height: 42px;
	}



	#internas.noticias .box-internas .item .conteudo p {
		font-size: 16px;
		line-height: 28px;
	}

	#internas.noticias .box-internas .item .conteudo a {
		font-size: 16px;
	}

	#internas.noticias .box-internas span.data {
		font-size: 16px;
		bottom: -22px;
	}

	#categoria .box-categoria .produtos .item .imagem {
		height: 260px;
	}

	footer .box-footer .links {
		width: 70%;
		justify-content: space-between;
	}

}

@media(max-width: 978px){
	header .box-header .logo {
		width: auto;
	}

	header .box-header .menu{
		position: fixed;
		top: 0;
		right: -100%;
		background-color: #fff;
		width: 100%;
		height: 100%;
		z-index: 3;
		transition: .3s;
	}

	header .box-header .menu.active{
		right: 0;
	}

	header .box-header .btn-menu{
		position: relative;
		width: 40px;
		height: 40px;
		cursor: pointer;
		box-sizing: border-box;
		margin: 5px 0;
		display: block;
	}

	header .box-header .btn-menu span{
		content: "";
		display: block;
		background-color: var(--verde-escuro);
		height: 4px;
		width: 40px;
		border-radius: 10px;
		transition: 0.5s;
		top: 20px;
		position: absolute;
	}

	header .box-header .btn-menu span:before{
		content: "";
		display: block;
		background-color: var(--verde-escuro);
		height: 4px;
		width: 40px;
		position: absolute;
		border-radius: 10px;
		top: -12px;
		transition: 0.5s;
	}

	header .box-header .btn-menu span:after{
		content: "";
		display: block;
		background-color: var(--verde-escuro);
		height: 4px;
		width: 40px;
		position: absolute;
		border-radius: 10px;
		top: 12px;
		transition: 0.5s;
	}

	header .box-header .btn-menu.open,
	header .box-header .btn-menu.open{
		z-index: 99990;
	}

	header .box-header .btn-menu.open span {
		line-height: 22px;
		background-color: var(--verde-escuro);
		transform: rotate(
			45deg
			);
	}

	header .box-header .btn-menu.open span:before {
		opacity: 0;
	}

	header .box-header .btn-menu.open span:after {
		background-color: var(--verde-escuro);
		transform: rotate(
			-90deg
			);
		top: 0;
	}



	header .box-header .menu ul li {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}

	header .box-header .menu ul li .drop {
		display: flex;
		position: relative;
		top: initial;
		left: initial;
		z-index: 2;
		background-color: #fff;
		padding: 20px 16px 0;
		min-width: auto;
		box-shadow: none;
	}

	header .box-header .menu ul li .drop:before,
	header .box-header .menu ul li .drop:after{
		display: none;
	}

	header .box-header .menu ul li .drop ul li a{
		justify-content: center;
		background-color: transparent;
	}

	header .box-header .menu ul li .drop ul li a:hover{
		background-color: transparent;
	}




	#banner .box-banner img {
		max-width: 1080px;
	}

	#resultados {
		/*margin-top: -104px;*/
	}

	#resultados .container {
		width: 100%;
	}

	#resultados .box-resultados {
		width: 624px;
	}

	#resultados .box-resultados .imagem {
		width: 352px;
	}

	#resultados .box-resultados .infos {
		width: calc(100% - 352px);
		padding: 66px 30px 0;
	}

	#resultados .box-resultados .infos h1 {
		font-size: 22px;
		line-height: 38px;
	}

	#resultados .box-resultados .infos p {
		line-height: 30px;
		margin: 14px 0;
	}





	#banner-produto .item h1 {
		font-size: 50px;
		position: absolute;
	}

	#banner-produto.corte .icon{
		top: -75px;
		width: 250px;
	}

	#banner-produto.equinos .item .icon{
		width: 130px;
		top: -20px;
	}

	#produto .box-produto {
		margin: 56px 0 0
	}

	#produto .box-produto .imagem,
	#produto .box-produto .detalhes{
		width: 100%;
	}

	#produto .box-produto .imagem {
		justify-content: center;
	}

	#produto .box-produto .detalhes,
	#produto.equinos .box-produto .detalhes{
		margin-top: 46px;
	}


	#banner-interna {
		height: 450px;
	}

	.selo{
		width: 230px;
		top: -136px;
		right: 40px;
	}

	.selo h1,
	.selo h2 {	
		font-size: 36px !important;
		line-height: 46px !important;
		top: 24px !important;
	}

	#contato.fale-conosco .box-contato .selo h1 {
		left: 28px;
	}

	#internas .box-internas .box .imagem,
	#internas .box-internas .box .conteudo{
		width: 100%;
	}

	#internas.noticias .box-internas .item .imagem .img {
		height: 340px;
	}



	#banner-produto.categoria .item .icon {
		top: 26px;
		width: auto;
	}

	#categoria .box-categoria .produtos .item {
		width: calc(100%/3 - 27px);
		margin-right: 40px;
	}

	#contato .box-contato .conteudo {
		max-width: 90%;
	}


	#produto .box-produto .imagem .slick-arrow{
		left: 0;
	}

	#produto .box-produto .imagem .slick-next {
		right: 0;
		left: auto;
	}
}

@media(max-width: 768px){


	#produtos-home .box-produtos {
		margin: 30px 0;
	}

	#produtos-home .box-produtos .tit h2,
	#contato .box-contato .tit h3{
		font-size: 26px;
		line-height: 38px;
	}

	#produtos-home .box-produtos .conteudo .item {
		width: calc(100%/2 - 20px);
		margin-bottom: 20px;
	}

	#produtos-home .box-produtos .conteudo .item img {
		width: 110px;
	}

	#produtos-home .box-produtos .conteudo .item h2 {
		font-size: 30px;
	}




	#internas.noticias .box-internas .item {
		width: 100%;
	}

	#internas.noticias .box-internas .item .imagem .img {
		height: 450px;
	}



	#categoria .box-categoria .produtos .item {
		width: calc(100%/2 - 20px);
	}

	#categoria .box-categoria .produtos .item:nth-child(3n){
		margin-right: 40px;
	}

	#categoria .box-categoria .produtos .item:nth-child(even){
		margin-right: 0px;
	}


	#contato .box-contato {
		padding: 20px 0;
	}

	#contato .box-contato .conteudo .campos {
		width: 100%;
	}

	#contato .box-contato .conteudo .bottom .selecione {
		width: 70%;
	}

	#contato.fale-conosco {
		padding: 220px 0 0px;
	}

	footer .box-footer {
		justify-content: center;
	}

	footer .box-footer .logo {
		width: auto;
	}

	footer .box-footer .links {
		width: 100%;
		margin-top: 24px;
	}
}

@media(max-width: 580px){
	header .box-header .logo {
		width: 130px;
	}

	#banner .box-banner img {
		max-width: 100%;
	}

	#banner-produto .item h1 {
		font-size: 40px;
		max-width: 100%;
	}

	#banner .box-banner .slick-arrow {
		top: 32%;
	}

	#banner .box-banner .slick-next {
		left: auto;
		right: 8%;
		top: 51%;
	}


	#resultados {
		margin-top: 0;
	}

	#resultados .container {
		width: 85vw;
	}

	#resultados .box-resultados .imagem{
		display: none;
	}

	#resultados .box-resultados .infos {
		width: 100%;
		padding: 12px 0px;
	}


	#produtos-home .box-produtos .conteudo .item {
		width: 100%;
		margin: 0 0 20px 0;
	}

	#banner-produto {
		height: 280px;
	}

	#banner-produto.corte .icon {
		top: 75px;
		width: 134px;
	}

	#banner-produto.equinos .item .icon {
		top: 65px;
		width: 76px;
	}

	#produto .box-produto {
		margin: 56px 0 20px;
	}

	#produto .box-produto .detalhes h2,
	#produto .box-produto .infos .item .tit h2 {
		font-size: 24px;
	}

	#produto .box-produto .detalhes .indicacao {
		justify-content: center;
	}

	#produto .box-produto .detalhes .indicacao .item {
		padding: 10px;
		margin-right: 0;
		margin: 5px;
	}

	#produto .box-produto .detalhes .indicacao .item img {
		height: 40px;
		margin: 10px 0;
	}

	#produto .box-produto .infos {
		margin-top: 40px;
	}


	#internas.quem-somos:before {
		display: none;
	}

	.selo {
		right: 0px;
	}

	#internas .box-internas .box {
		margin-bottom: 0;
		padding: 30px 30px 20px;
	}

	#internas .box-internas .box:nth-child(3) .conteudo {
		margin-top: 0;
	}

	#internas .box-internas h1, #internas .box-internas h2 {
		font-size: 30px;
		line-height: 46px;
		max-width: 100%;
	}

	#internas .box-internas .texto p {
		font-size: 16px;
	}



	#internas.noticias .box-internas {
		padding: 50px 20px;
	}

	#internas.noticias.interna .box-internas .infos div,
	#internas.noticias.interna .box-internas .compartilhe p,
	#internas.noticias.interna .box-internas .compartilhe .links{
		width: 100%;
	}

	#internas.noticias.interna .box-internas .infos div:first-child,
	#internas.noticias.interna .box-internas .compartilhe p{
		margin-bottom: 10px;
	}

	#internas.noticias.interna .box-internas .infos .postado-por p{
		font-size: 12px;
	}

	#internas.noticias.interna .box-internas .compartilhe p{
		text-align: center;
	}

	#internas.noticias.interna .box-internas .compartilhe .links a {
		margin-left: 0;
		margin: 0 5px;
	}


	#internas.noticias .box-internas .item .imagem .img {
		height: 280px;
	}



	#banner-produto.categoria .item .icon {
		top: 78px;
		width: 124px;
	}

	#categoria .box-categoria .filtro .tit,
	#categoria .box-categoria .filtro .conteudo{
		width: 100%;
	}

	#categoria .box-categoria .filtro .tit{
		justify-content: center;
		cursor: pointer;
	}

	#categoria .box-categoria .filtro .conteudo{
		display: none;
		margin-top: 20px;
		transition: .3s;
	}

	#categoria .box-categoria .filtro .conteudo.active{
		display: flex;
	}

	#categoria .box-categoria .filtro .conteudo .item ul {
		min-width: 124%;
		left: -20px;
	}


	#categoria .box-categoria .produtos .item {
		width: calc(100%/2 - 10px);
	}

	#categoria .box-categoria .produtos .item,
	#categoria .box-categoria .produtos .item:nth-child(3n){
		margin-right: 20px;
	}

	#categoria .box-categoria .produtos .item:nth-child(even) {
		margin-right: 0px;
	}

	#categoria .box-categoria .produtos .item h2 {
		font-size: 24px;
	}

	#categoria .box-categoria .produtos .item .imagem {
		height: 170px;
	}

	#categoria .box-categoria .produtos .item button {
		padding: 16px 10px;
		opacity: 1;
	}


	#produto .box-produto .imagem .slick-arrow {
		top: 46%;
	}



	#contato {
		padding: 0px 0 50px;
	}

	#contato .box-contato .conteudo .bottom .selecione,
	#contato .box-contato .conteudo .bottom .btn{
		width: 100%;
	}

	footer .box-footer .links .item {
		width: calc(100%/2 - 20px);
	}

	footer .box-footer .links .item:nth-child(3),
	footer .box-footer .links .item:nth-child(4){
		margin-top: 20px;
	}
}