@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('icons/flaticon.css');

:root{
	/* Cores Neutras */
	--color-neutral-100: #000000;
	--color-neutral-200: #1B1B1B;
	--color-neutral-300: #484848;
	--color-neutral-400: #7F7F7F;
	--color-neutral-500: #A7A7A7;
	--color-neutral-600: #CBCBCB;
	--color-neutral-700: #EEEEEE;
	--color-neutral-800: #FAFAFA;
	--color-neutral-900: #FFFFFF;

	/* Cores Principais */
	--color-primary: #133b67;
	--color-secondary: #ff5624;
	--color-tertiary: #177CC1;

	/* Fonts Family */
	--font-family-01: 'Roboto', sans-serif;
}

/* Variáveis Bootstrap */
:root, [data-bs-theme=light] {
	--bs-primary: var(--color-primary);
	--bs-secondary: var(--color-secondary);

	--bs-gray-100: var(--color-neutral-900);
	--bs-gray-200: var(--color-neutral-800);
	--bs-gray-300: var(--color-neutral-700);
	--bs-gray-400: var(--color-neutral-600);
	--bs-gray-500: var(--color-neutral-500);
	--bs-gray-600: var(--color-neutral-400);
	--bs-gray-700: var(--color-neutral-300);
	--bs-gray-800: var(--color-neutral-200);
	--bs-gray-900: var(--color-neutral-100);
}

body{
	color: var(--color-neutral-300);
	font-family: var(--font-family-01);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	word-break: break-word;
	letter-spacing: 0.035em;
	font-weight: 400;
}


/*********** Start Background ***********/

.bg-color-neutral-100{
	background-color: var(--color-neutral-100);
}
.bg-color-neutral-200{
	background-color: var(--color-neutral-200);
}
.bg-color-neutral-300{
	background-color: var(--color-neutral-300);
}
.bg-color-neutral-400{
	background-color: var(--color-neutral-400);
}
.bg-color-neutral-500{
	background-color: var(--color-neutral-500);
}
.bg-color-neutral-600{
	background-color: var(--color-neutral-600);
}
.bg-color-neutral-700{
	background-color: var(--color-neutral-700);
}
.bg-color-neutral-800{
	background-color: var(--color-neutral-800);
}
.bg-color-neutral-900{
	background-color: var(--color-neutral-900);
}

.bg-color-primary{
	background-color: var(--color-primary);
}
.bg-color-secondary{
	background-color: var(--color-secondary);
}
.bg-color-tertiary{
	background-color: var(--color-tertiary);
}

/*********** End Background ***********/

/*********** Start Colors ***********/

.text-color-neutral-100{
	color: var(--color-neutral-100);
}
.text-color-neutral-200{
	color: var(--color-neutral-200);
}
.text-color-neutral-300{
	color: var(--color-neutral-300);
}
.text-color-neutral-400{
	color: var(--color-neutral-400);
}
.text-color-neutral-500{
	color: var(--color-neutral-500);
}
.text-color-neutral-600{
	color: var(--color-neutral-600);
}
.text-color-neutral-700{
	color: var(--color-neutral-700);
}
.text-color-neutral-800{
	color: var(--color-neutral-800);
}
.text-color-neutral-900{
	color: var(--color-neutral-900);
}

.text-color-primary{
	color: var(--color-primary);
}
.text-color-secondary{
	color: var(--color-secondary);
}
.text-color-tertiary{
	color: var(--color-tertiary);
}

/*********** End Colors ***********/

/*********** Start Text sizes ***********/

.heading-size-xs {
	font-size: 1.25rem; /* 20px */
}
.heading-size-sm {
	font-size: 1.5rem; /* 24px */
}
.heading-size-md {
	font-size: 1.75rem; /* 28px */
}
.heading-size-lg {
	font-size: 2.25rem; /* 36px */
}
.heading-size-xl {
	font-size: 2.625rem; /* 42px */
}
.heading-size-xxl {
	font-size: 3.25rem; /* 52px */
}


.text-size-xs {
	font-size: 0.625rem;  /* 10px */
}
.text-size-sm {
	font-size: 0.75rem; /* 12px */
}
.text-size-md {
	font-size: 0.875rem; /* 14px */
}
.text-size-lg {
	font-size: 1rem; /* 16px */
}
.text-size-xl {
	font-size: 1.125rem; /* 18px */
}
.text-size-xxl {
	font-size: 1.25rem; /* 20px */
}

/*********** End Text sizes ***********/


::-webkit-scrollbar {
	width: 6px;
	background-color: #cecece;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background: #686868;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.container{
	max-width: 1280px;
}

.lity-content:after {
	display: none;
}

.wq-mobile {
	display: none!important;
}


/**** BOTOES ****/

.wq-btn {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.2;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 26px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: none;
	border-radius: 5px;
	transition: all .2s linear;
}

.wq-btn span.flaticon-arrow-right {
	font-weight: 700;
	margin-left: 15px;
}

.wq-btn img {
	display: block;
	height: 21px;
	width: auto;
}

.wq-btn-01 {
	color: #fff;
	background: var(--color-primary);
}
.wq-btn-01:hover {
	background-color: #343434;
	color: #fff;
	box-shadow: 0px 0px 48px -16px rgba(51, 51, 51, 0.30);
}

.wq-btn-02 {
	color: #fff;
	border: 1px solid #343434;
	background: var(--color-primary);
}
.wq-btn-02:hover {
	color: #fff;
	box-shadow: 0px 0px 48px -16px rgba(51, 51, 51, 0.30);
}
.wq-btn-03 {
	color: #1a1a1a;
	border: 0px;
	background-color: var(--color-secondary);
}
.wq-btn-03:hover {
	color: #fff;
	background-color: var(--color-primary);
	box-shadow: 0px 0px 48px -16px rgba(51, 51, 51, 0.30);
}

.wq-btn-04 {
	color: #fff;
	background-color: var(--color-primary);
}
.wq-btn-04:hover {
	color: #fff;
	background-color: #343434;
}
.out-stock{
	opacity: 0.7;
}



.wq-btn.wq-btn_small{
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1;
	font-size: 16px;
	color: #1a1a1a;
	height: auto;
	padding: 5px 10px;
	background-color: var(--color-secondary);
}
.wq-btn.wq-btn_small:hover{
	color: #fff;
	background-color: var(--color-primary);
}

/**** BOTOES ****/

/**** HEADER ****/

.wq-header{
	box-shadow: 0px 10px 15px rgba(0, 0, 0, .15);
}

.header_promo{
	background-color: #fff;
}
.header_promo figure img{
	display: block;
	width: 100%;
}

.header-nav {
	background-color: #f0f0f4;
	padding: 15px 0;
}

.header_loja{
	display: flex;
	align-items: center;
}

.navbar {
	justify-content: space-between;
}

.navbar-brand {
	padding: 0;
}
.navbar-brand img {
	display: block;
	height: 60px;
	width: auto;
}

.btn_carrinho{
	margin-left: 25px;
	display: flex;
	position: relative;
	padding: 3px;
}
.btn_carrinho img {
	height: 26px;
}
.count-cart {
	font-weight: 400;
	font-size: 11px;
	color: #fff;
	width: 18px;
	height: 18px;
	position: absolute;
	top: -5px;
	right: -12px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	box-shadow: 0px 3px 30px rgb(0 0 0 / 15%);
	background-color: #343434;
}

.wq-pesquisa-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #fff;
	border-radius: 5px;
}

.wq-pesquisa-header input {
	background: #fff;
	display: inline-block;
	padding: 12px 18px;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.035em;
	color: #626262;
	border: none;
	box-sizing: border-box;
	width: 580px;
	max-width: 100%;
	border-radius: 5px;
	transition: all .2s linear;
}
.wq-pesquisa-header button{
	background-color: #fff;
}

.wq-pesquisa-header input:focus {
	border: 1px solid #343434;
	background-color: #fff;
	box-shadow: 0px 0px 48px -16px rgba(51, 51, 51, 0.30);
}
.btn-search{
	border: none;
	padding: 0 15px;
}
.minha-conta{
	display: flex;
	align-items: center;
	column-gap: 10px;
	width: 180px;
	font-size: 14px;
	line-height: 1.2;
	margin-left: 25px;
}
.icon-user img{
	height: 32px;
	margin: 0;
}


.collapse.navbar-collapse {
	justify-content: right;
}

.navbar-nav.wq-menu_principal {
	column-gap: 30px;
}

.wq-categorias {
	position: relative;
	background-color: var(--color-primary);
}

.wq-categorias_extras{
	position: relative;
	background-color: #108ee7;
}

.wq-categorias_extras.amarelo{
	position: relative;
	background-color: var(--color-secondary);
}


.wq-categorias_extras .navbar-nav{}

.wq-categorias_extras .navbar-nav,
.wq-categorias .navbar-nav {
	flex-direction: row;
}

.wq-categorias::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: -1px;
	z-index: 2;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}

.wq-categorias .container {
	position: relative;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
	position: relative;
}

.dropdown-menu {
	position: absolute !important;
	top: calc(100% - 2px);
	border: none;
	background: #fff;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.dropdown-toggle::after {
	display: none;
}


.navbar-nav.wq-menu_principal .nav-item, .navbar-nav.wq-menu_principal .nav-link{
	text-transform: uppercase;
	color: #222;
	cursor: pointer;
	padding: 0;
	margin-bottom: 0px;
	transition: all .2s linear;
}
.wq-categorias_extras .navbar-nav .nav-link,
.wq-categorias .navbar-nav .nav-link {
	white-space: normal;
	text-transform: uppercase;
	letter-spacing: 0.035em;
	line-height: 1.2;
	font-size: 13px;
	color: #FFF;
	height: 40px;
	padding: 0 10px;
	cursor: pointer;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s linear;
}

.wq-categorias_extras .navbar-nav .nav-link:hover,
.wq-categorias .navbar-nav .nav-link:hover{
	color: #fff;
	background-color: #111;
}

.wq-categorias .navbar-nav .nav-link p{
	letter-spacing: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: #FFF;
}


.header .nav-item.dropdown:hover .nav-link,
.header .navbar-nav .nav-link:hover{
	background-color: #343434;
}

.navbar-nav .nav-link > span img {
	margin-top: -3px;
	margin-right: 5px;
	height: 20px;
	filter: grayscale(1)brightness(6);
}

.wq-listagem-comun {
	width: 260px;
	padding: 10px 0;
	background-color: var(--color-primary);
	margin: 0 auto;
	box-shadow: 0px 4px 30px -5px rgb(0 0 0 / 20%);
}

.wq-carusel-content {
	margin: 0 auto;
	width: 1030px;
	max-width: 100%;
	transform: skewX(10deg);
}

.wq-listagem-comun li a {
	padding: 10px 20px;
	display: block;
	line-height: 100%;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	transition: all .2s linear;
}

.wq-listagem-comun li a:hover {
	background-color: #343434;
}

.nav-link:hover {
	opacity: .8;
}

.dropdown-menu {
	display: block;
	opacity: 0;
	visibility: hidden;
}

.dropdown-menu.cat-item ul{
	background-color: var(--color-primary);
	width: 280px;
	box-shadow: 0px 4px 30px -5px rgb(0 0 0 / 20%);
}
.dropdown-menu.cat-item ul li a{
	padding: 10px 20px;
	display: block;
	line-height: 100%;
	font-size: 13px;
	color: #fff;
	letter-spacing: 0.05em;
}
.dropdown-menu.cat-item ul li a:hover{
	background-color: #343434;
}

.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

/*** slick ***/

.slick-prev,
.slick-next {
	border: none;
	background: transparent;
}

.slick-prev::before,
.slick-next::before {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	font-weight: 800!important;
	width: 62px;
	height: 62px;
	color: #343434;
	box-sizing: border-box;
	font-size: 16px;
	transition: all .2s linear;
}

.slick-prev:hover::before,
.slick-next:hover::before {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.slick-next::before {
	font-family: Flaticon;
	font-style: normal;
	content: '\f138';
}

.slick-prev::before {
	font-family: Flaticon;
	font-style: normal;
	content: '\f139';
}

/*** slick ***/

/***** wq-menu-categorias *****/

.wq-menu-categorias {
	position: relative;
	z-index: 98;
	border-bottom: 1px solid #DDDDDD;
}
.wq-menu-btn-categorias {
	background-color: transparent;
	border: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #2B2B2B;
	line-height: 1.2;
	font-size: 16px;
	font-weight: 700;
}
.wq-menu-btn-categorias img {
	display: block;
	height: 20px;
	width: auto;
	margin-right: 10px;
}
.wq-categorias-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.wq-menu-link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0px 5px 0px 30px;
	line-height: 47px;
	position: relative;
	background: transparent;
	color: #666!important;
	font-weight: 500;
	z-index: 10;
	display: inherit;
	transition: all .35s;
	font-size: 16px;
}

.wq-menu-link span {
	transform: rotate(90deg);
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	margin-left: 5px;
}

.wq-list-dropdown {
	display: flex;
	justify-content: center;
	align-items: center;
}

.wq-menu-link:after {
	content: '';
	display: block;
	width: 0;
	height: 3px;
	transition: .3s;
	background: var(--color-secondary);
	position: absolute;
	left: 0;
	right: auto;
	bottom: -1px;
}
.wq-menu-link:hover::after,
.wq-menu-link.active::after {
	width: 100%;
}

#menu-modal .modal-content,
#menu-modal-mobile .modal-content {
	height: 100vh;
	border-radius: 0;
}

#menu-modal .modal-dialog,
#menu-modal-mobile .modal-dialog {
	margin: 0;
	max-width: 300px;
}

#menu-modal.modal.fade,
#menu-modal-mobile.modal.fad {
	animation: fadeInLeft;
	animation-duration: 500ms!important;
}

#menu-modal h2,
#menu-modal-mobile h2 {
	padding: 0 24px 25px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	margin-top: 47px;
	color: #222;
	margin-bottom: 29px;
}
#menu-modal .close,
#menu-modal-mobile .close {
	height: auto;
	padding: 0 24px;
	display: flex;
	justify-content: flex-start;
}

#menu-modal .close span,
#menu-modal-mobile .close span {
	font-size: 45px!important;
	color: #222!important;
	font-weight: 300;
}

.wq-listagem-drop li {
	padding: 9px 24px;
	position: relative;
}

.wq-listagem-drop li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: auto;
	width: calc(100% - 48px);
	height: 1px;
	background: #ddd;
}

.wq-listagem-drop li:last-child::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 24px;
	right: auto;
	width: calc(100% - 48px);
	height: 1px;
	background: #ddd;
}

.wq-listagem-drop li a {
	font-weight: 600;
	font-size: 13px;
	line-height: 19px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #343434;
	transition: all .2s linear;
	display: flex;
	justify-content: space-between;
}

.wq-listagem-drop li a div {
	position: relative;
}

.wq-listagem-drop li a div::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	transition: .3s;
	background: #000;
	position: absolute;
	left: 0;
	right: auto;
	bottom: 0px;
}

.wq-listagem-drop li a:hover div::after {
	width: 100%;
}

.wq-drop.drop-right ul {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(100%);
	background: #fff;
	margin-right: -1px;
	visibility: hidden;
	z-index: -1;
	width: 300px;
	padding: 20px 0;
	transition: all 0ms linear!important;
	animation: fadeInLeft;
	animation-duration: 500ms!important;
}

.wq-drop.drop-right:hover ul {
	visibility: visible;
	z-index: 2;
}

.wq-drop.drop-right ul li {
	padding: 0 24px;
	line-height: 28px;
	transition: all 0ms linear!important;
}

.wq-drop.drop-right ul li::before,
.wq-drop.drop-right ul li::after {
	display: none;
}

.wq-drop.drop-right ul li a {
	font-size: 12px;
	line-height: 30px;
	transition: all 0ms linear!important;
}

.wq-drop.drop-right a span {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	margin-left: 5px;
	transition: all .3s linear;
	transform: rotate(90deg);
}

.wq-drop.drop-right:hover a span {
	transform: rotate( -90deg);
}

.wq-categorias-item {
	position: relative;
}

.wq-drop.wq-dropdown .wq-drop-item {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 0;
	background-color: #fff;
	margin-top: 1px;
	overflow: hidden;
	height: 0;
	opacity: 0;
	transition: all .3s linear;
}

.wq-drop-item .wq-listagem-drop li {
	padding: 3px 0;
}

.wq-drop.wq-dropdown .wq-drop-item .wq-listagem-drop li::before,
.wq-drop.wq-dropdown .wq-drop-item .wq-listagem-drop li::after {
	display: none;
}

.wq-drop.wq-dropdown .wq-drop-item .wq-listagem-drop li a {
	line-height: 1.2;
	padding: 0;
	font-size: 14px;
}

.wq-drop.wq-dropdown .wq-drop-item h3 {
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	color: #222;
	justify-content: left;
	padding: 0px 0px 18px 0px;
}

.wq-drop.wq-dropdown:hover .wq-drop-item {
	height: auto;
	padding: 20px;
	opacity: 1;
}

.wq-drop.wq-dropdown .wq-drop-item img {
	display: block;
	width: 100%;
	height: auto;
}

.wq-drop.wq-dropdown .wq-drop-item>div {
	margin: 5px;
}

#menu-modal {
	padding-left: 0;
}

/***** wq-menu-categorias ******/

/***** banner_classico ******/

.wq-banner{
	padding: 0;
	background-color: #f1f1f1;
}

.wq-banner_classico,
.wq-banner_classico-item{
	position: relative;
}

.wq-banner_classico-item{
	height: auto;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 40;
}

.wq-banner_classico-item figure{
	height: 100%;
	display: flex;
}
.wq-banner_classico-item figure.wq-banner_responsivo{display: none;}


.wq-banner_classico-item figure img{
	width: 100%;
	height: 380px;
}

.wq-banner_classico .slick-arrow{
	top: calc(50% - 31px);
	position: absolute;
}

.wq-banner_classico .slick-arrow:hover {
	opacity: 1;
}

.wq-banner_classico .slick-prev{
	left: -31px;
	z-index: 35;
}
.wq-banner_classico .slick-next{
	right: -31px;
	z-index: 35;
}

.wq-banner_classico .slick-dots{
	position: absolute;
	bottom: 40px;
	width: 100%;
	display: flex;
	justify-content: center;
	column-gap: 10px;
}
.wq-banner_classico .slick-dots li button{
	font-size: 10px;
	color: transparent;
	width: 10px;
	height: 10px;
	border: 0px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .70);
}

.wq-banner_classico .slick-dots li.slick-active button{
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .4);
}


/***** banner_classico ******/

/***** wq-informacoes-extras ******/

.wq-informacoes-extras {
	margin-top: -45px;
}

.wq-informacoes-extras .wq-wrapper {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 40px;
	row-gap: 30px;
	z-index: 3;
	padding: 20px 40px;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 0px 4px 30px -5px rgba(0,0,0,.2);
}

.wq-informacoes-extras .wq-wrapper div {
	display: grid;
	grid-template-columns: 70px 1fr;
	align-items: center;
	column-gap: 15px;
	row-gap: 20px;
}

.wq-informacoes-extras .wq-wrapper div figure img {
	display: block;
	width: auto;
	height: 62px;
}

.wq-informacoes-extras .wq-wrapper div h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.05em;
	color: #343434;
}


/***** wq-informacoes-extras ******/

/***** wq-destaque ******/

.wq-destaque {
	padding: 30px 0;
	background-color: #f1f1f1;
}
.wq-destaque .row{
	row-gap: 50px;
}

.carousel_categorias-box{
	position: relative;
}

.carousel_categorias-box .swiper-button-next{
	right: -20px;
}
.carousel_categorias-box .swiper-button-prev{
	left: -20px;
}
.carousel_categorias-box .swiper-button-next,
.carousel_categorias-box .swiper-button-prev{
	top: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	font-weight: 800 !important;
	width: 40px;
	height: 40px;
	color: #343434;
	box-sizing: border-box;
	transition: all .2s linear;
}
.carousel_categorias-box .swiper-button-next:after,
.carousel_categorias-box .swiper-button-prev:after{
	font-size: 14px;
}
.carousel_categorias-box .swiper-button-next:hover,
.carousel_categorias-box .swiper-button-prev:hover{
	opacity: 1;
}

.wq-destaque .wq-wrapper {
	display: flex;
	column-gap: 15px;
}

.wq-destaque .wq-wrapper>div {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 26px;
	position: relative;
}

.wq-img-maior{
	overflow: hidden;
	display: block;
}

.wq-img-maior figure figcaption{
	letter-spacing: 0.01em;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	color: var(--color-primary);
}
.wq-img-maior figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-bottom: 8px;
	border-radius: 5px;
	box-shadow: 0px 8px 20px -15px rgba(0, 0, 0, .35);
}

.destaque-conteudo{
	padding-top: 20px;
	text-align: center;
}
.destaque-conteudo h3{
}

/***** wq-destaque ******/

/******* CTA-NEW ********/

.cta-new-main{
	padding: 20px 0;
	background-color: #70b7e1;
	color: #fff;
}
.cta-new-main .row{
	align-items: center;
}
.cta-new-main p{
	color: #343434;
}
.info-cta h2{
	font-weight: bold;
	font-size: 32px;
	line-height: 37px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #343434;
	margin-bottom: 15px;
}
.info-cta p {
	font-weight: normal;
	font-size: 22px;
	line-height: 110%;
	letter-spacing: 0.05em;
	color: #272425;
	margin-bottom: 20px;
}
.info-cta .wq-btn {
	max-width: 350px;
	background-color: #32cd32;
	box-shadow: 0px 15px 20px -18px rgb(0 0 0 / 35%);
}
.cta-new-main figure{
	text-align: right;
}
.cta-new-main img{
	max-width: 100%;
}

/******* CTA-NEW ********/

/******** MARCAS ********/

.marcas{
	padding: 40px 0;
	background-color: #fff;
}
.marcas img{
	display: block;
	width: 100%;
	margin: 15px 0;
	border-radius: 12px;
	box-shadow: 0px 10px 22px -15px rgba(0,0,0,.35);
}

.marcas .container{
	position: relative;
}
.marcas .swiper-button-next,
.marcas .swiper-button-prev{
	color: #343434;
}
.marcas .swiper-button-next:after,
.marcas .swiper-button-prev:after {
	font-size: 30px !important;
}


.marcas .swiper-button-next{
	right: -15px;
	left: auto;
}
.marcas .swiper-button-prev{
	left: -15px;
	right: auto;
}
/******** MARCAS ********/

/***** wq-sobre-empresa ******/

.wq-sobre-empresa {
	padding: 110px 0 90px;
	background-color: #fff;
}

.wq-sobre-empresa figure {
	position: relative;
	margin-top: 15px;
	margin-left: 15px;
	border-radius: 20px;
}


.wq-sobre-empresa .wq-btn{
	max-width: 300px;
}

.wq-sobre-empresa figure>img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.wq-sobre-empresa figure figcaption {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

.wq-sobre-empresa figure figcaption img {
	display: block;
	height: 60px;
	width: auto;
	border-radius: 50%;
	transition: all 2s linear;
}

.wq-video {
	display: block;
	position: relative;
	z-index: 3;
}

.wq-sobre-empresa .wq-conteudo {
	padding-left: 50px;
}

.wq-sobre-empresa .row {
	align-items: center;
}

.wq-sobre-empresa .wq-conteudo h2 {
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0.05em;
	color: var(--color-primary);
	margin-bottom: 25px;
}

.wq-sobre-empresa .wq-conteudo p {
	margin-bottom: 25px;
}


/***** wq-sobre-empresa ******/


/***** wq-listagem-produtos-01 ******/

.wq-titulo-01 h1, .wq-titulo-01 h2, .wq-titulo-01 h3 {
	font-weight: 400;
	font-size: 25px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #272425;
}

.wq-titulo-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 35px;
}
.link-dir-all{
	color: #343434;
	text-transform: uppercase;
	font-size: 16px;
}


.wq-listagem-produtos-01 {
	padding: 50px 0;
	background: #f9f9f9;
	overflow: hidden;
}
.wq-listagem-produtos-01 .container{
	position: relative;
}
.wq-listagem-produtos-01 .row > div{
	margin-bottom: 30px;
}

.wq-produtos-box {
	margin: 5px;
	display: block;
	position: relative;
	padding: 12px;
	height: 100%;
	border-radius: 6px;
	background-color: #fff;
	transition: all .35s ease;
}
.wq-produtos-box:hover{
	box-shadow: 0px 0px 10px 5px #f1f1f1;
}

.wq-produtos-box img {
	display: block;
	width: 100%;
	height: auto;
}

.wq-produtos-box figure img {
	width: 72%;
	margin: 0 auto;
	object-fit: contain;
}

.wq-produto-conteudo h2 {
	text-transform: uppercase;
	line-height: 1.55;
	text-align: left;
	font-size: 16px;
	color: #1e1e1e;
	margin: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.wq-produto-conteudo p {
	overflow: hidden;
	font-size: 14px;
}
.wq-produto-conteudo p strong,
.wq-produto-conteudo p span,
.wq-produto-conteudo p b{
	color: var(--color-secondary);
}


.wq-disc-produto {
	margin: 5px 0 10px;
}

.wq-disc-produto > h4 {
	display: inline-block;
	font-size: 13px;
	line-height: 130%;
	letter-spacing: 0.05em;
}
.wq-disc-produto > .wq-antigo-preco{
	color: #3c3c3c;
	text-decoration: line-through;
}

.wq-produtos-box span.wq-desconto {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #111;
	padding: 5px 5px;
	background-color: var(--color-secondary);
	position: absolute;
	left: 20px;
	top: 0px;
}

.wq-disc-produto .wq-preco {
	display: flex;
	flex-direction: column;
	position: relative;
}

.wq-disc-produto .wq-preco h4 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: var(--color-primary);
}
.wq-disc-produto .wq-preco > span {
	letter-spacing: 0.025em;
	line-height: 1.25;
	font-weight: 400;
	font-size: 15px;
	color: #343434;
}

.wq-btns-box {
	width: 100%;
	margin-top: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wq-btns-box .wq-btn-01{
	padding: 0 15px;
}
.wq-listagem-produtos-01 .swiper-button-next,
.wq-listagem-produtos-01 .swiper-button-prev{
	color: #343434;
}
.wq-listagem-produtos-01 .swiper-button-next:after,
.wq-listagem-produtos-01 .swiper-button-prev:after {
	font-size: 30px !important;
}


.wq-listagem-produtos-01 .swiper-button-next{
	right: -10px;
	left: auto;
}
.wq-listagem-produtos-01 .swiper-button-prev{
	left: -10px;
	right: auto;
}
.wq-listagem-produtos-01 .wq-titulo-content{
	justify-content: flex-start;
	column-gap: 10px;
}


.wq-produto_add_to_cart_form{
	margin-top: 10px;
	display: flex;
	column-gap: 5px;
	align-items: center;
}
.wq-produto_add_to_cart_form .quantity{
	width: auto;
	padding: 10px 6px;
	border-radius: 6px;
	box-shadow: inset 0 0 0 1px #e5e5e5;
}
.wq-produto_add_to_cart_form .quantity .minus,
.wq-produto_add_to_cart_form .quantity .plus {
	width: 13px;
	height: 13px;
	flex: 0 0 10px;
	font-size: 13px;
	color: #000;
	text-align: center;
	cursor: pointer;
	user-select: none;
	border: none;
	transition: all .3s ease;
	background-color: #fff;
}
.wq-produto_add_to_cart_form .quantity .minus:hover,
.wq-produto_add_to_cart_form .quantity .plus:hover {
	background-color: #666;
	color: #fff;
}

.wq-produto_add_to_cart_form .qty{
	width: 36px;
	text-align: center;
	border: none;
	appearance: none;
}
.wq-produto_add_to_cart_form .single_add_to_cart_button{
	color: #fff;
	background-color: #62bb20;
	width: 100%;
}
.wq-produto_add_to_cart_form .single_add_to_cart_button:hover{
	background-color: #159219;
}

/***** wq-listagem-produtos-01 ******/

/***** wq-cta ******/

.wq-cta {
	margin: 20px 0px;
}

.wq-cta-item {
	display: flex;
	padding: 50px 30px;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 12px;
}

.wq-cta-item figure {
	position: relative;
	height: 100%;
}

.wq-cta-item figure img {
	display: block;
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: -38px;
}

.wq-cta-item h2 {
	font-weight: bold;
	font-size: 32px;
	line-height: 37px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 15px;
}

.wq-cta-item p {
	font-weight: normal;
	font-size: 22px;
	line-height: 110%;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom: 20px;
}

.wq-cta-item .wq-conteudo {
	max-width: 680px;
}
.wq-cta-item .wq-conteudo .wq-btn{
	max-width: 400px;
	margin: 0 auto;
}

/***** wq-cta ******/

/***** wq-listagem-produtos-01 wq-black ******/

.wq-listagem-produtos-01.wq-black {
	background: #2D2D2D;
}

.wq-listagem-produtos-01.wq-black .wq-titulo-01 h2 {
	color: #fff;
}

.wq-listagem-produtos-01.wq-black .wq-btn-carousel {
	border-color: #fff;
	color: #fff;
}

.wq-listagem-produtos-01.wq-black .wq-titulo-content .wq-btn-01:hover {
	background-color: #fff;
	color: #2D2D2D;
}

.wq-produtos-box .wq-btn.wq-btn-02 {
	margin-left: 5px;
}

/***** wq-listagem-produtos-01 wq-black ******/

/***** wq-cta-form ******/

.wq-form-wrapper form {
	padding: 40px 60px;
	position: relative;
}
.wq-input {
	margin-bottom: 20px;
	position: relative;
	z-index: 88;
}
.wq-input input,.wq-input select {
	display: block;
	font-weight: normal;
	font-size: 15px;
	line-height: 1.25;
	letter-spacing: 0.05em;
	box-sizing: border-box;
	width: 100%;
	color: #626262;
	padding: 15px 20px;
	border: none;
	background-color: #f1f1f1;
	border-radius: 5px;
}

.product-quantity{
	margin-bottom: 0;
}
.product-quantity .quantity{
	column-gap: 2px;
}
.quantity {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.quantity.hidden{
	display: none;
}

.product-quantity input{
	padding: 10px 14px;
}
.product-quantity input.qty{
	width: 48px;
}

.contact-form .wq-btn {
	width: 100%;
}
.contact-form .wq-btn:hover {
	background-color: #fff;
	color: #343434;
}

.wq-form-wrapper .wq-btn {
	transform: none!important;
	position: relative;
	z-index: 88;
}

.wq-form-wrapper {
	display: grid;
	margin: 0 35px 35px 35px;
	grid-template-columns: 2fr 1fr;
	position: relative;
}

.wq-form-wrapper::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #343434;
	box-sizing: border-box;
	position: absolute;
	bottom: -35px;
	right: -35px;
	border-radius: 20px;
}

.wq-cta-form .row {
	align-items: center;
}

.wq-form-wrapper figure {
	position: relative;
}

.wq-form-wrapper figure img {
	display: block;
	width: 135%;
	height: auto;
	position: absolute;
	bottom: -35px;
	left: -30px;
	z-index: 5;
}

.wq-cta-form .wq-titulo-01 h2 {
	font-weight: 400;
	font-size: 25px;
	line-height: 32px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #272425;
}

.wq-cta-form {
	margin: 90px 0 70px;
}

/***** wq-cta-form ******/

/***** wq-blog ******/

.wq-blog {
	background-color: #f1f1f1;
	padding: 70px 0;
}

.wq-blog-box {
	background-color: #fff;
	border-radius: 5px;
	height: 100%;
	overflow: hidden;
}

.wq-blog-box figure img {
	display: block;
	width: 100%;
	height: auto!important;
}

.wq-blog-box .wq-conteudo {
	padding: 25px;
}

.wq-blog-box .wq-conteudo h2 {
	font-weight: 600;
	font-size: 17px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #272425;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.wq-blog-box .wq-conteudo p {
	margin-bottom: 25px;
}

.wq-blog .row .col-xl-4 {
	margin-bottom: 30px;
}

/***** wq-blog ******/

/***** wq-footer ******/

.wq-footer {
	margin-top: 85px;
	padding: 90px 0 0;
	position: relative;
	background-color: #EBEBEB;
}
.wq-footer_infos{
	z-index: 3;
	position: absolute;
	width: 100%;
	top: -45px;
	left: 0px;
}
.wq-footer_infos-contatos{
	display: grid;
	grid-template-columns: 3fr 2fr 2fr;
	column-gap: 30px;
	padding: 20px 25px;
	border-radius: 12px;
	background-color: #D6D6D6;
	box-shadow: 0px 10px 22px -15px rgba(0,0,0,.35);
}
.wq-footer_infos-contato_item,
.wq-footer_infos-endereco-box{
	line-height: 1.25;
	display: grid;
	align-items: center;
	grid-template-columns: 50px 3fr;
	column-gap: 10px;
}
.wq-footer_infos-contato_item span,
.wq-footer_infos-endereco-box span{
	line-height: 1;
	font-size: 25px;
	color: #fff;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #343434;
}
.wq-footer_infos-contato_item p{
	color: #2a2a2a;
}

.wq-footer_infos-endereco{
	padding: 20px 20px;
	border-radius: 12px;
	background-color: #D6D6D6;
	box-shadow: 0px 10px 22px -15px rgba(0,0,0,.35);
}


.wq-footer h4{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	color: #222;
	margin-bottom: 25px;
}
.wq-footer h4:after{
	content: '';
	display: block;
	width: 10px;
	height: 2px;
	margin-top: 10px;
	background-color: #343434;
}

.wq-links-uteis li {
	margin-bottom: 12px;
}
.wq-links-uteis li a,
.wq-contato h3 {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0.015em;
	text-transform: uppercase;
	color: #343434;
	transition: all .2s linear;
}

.wq-contato p {
	margin-bottom: 0;
	font-size: 14px;
}

.wq-links-uteis li a:hover {
	color: var(--color-primary);
}

.wq-contato {
	display: flex;
	margin-bottom: 20px;
	font-size: 16px;
	letter-spacing: 0.025em;
}
.wq-contato>span {
	margin-right: 15px;
}

.wq-pagamentos{
	display: grid;
	gap: 5px;
	grid-template-columns: 6fr 6fr;
}
.wq-pagamentos figure img{
	display: block;
	width: 100%;
}
.wq-pagamentos figure{
	padding: 8px 16px;
	border-radius: 5px;
	background-color: #fff;
}


.wq-midias-sociais {
	display: flex;
	column-gap: 10px;
	justify-content: flex-start;
	align-items: center;
}

.wq-midias-sociais li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	border-radius: 50%;
	background-color: #343434;
	transition: all .2s linear;
}
.wq-midias-sociais li a:hover {
	background-color: var(--color-primary);
}
.wq-midias-sociais li a span {
	font-size: 18px;
	line-height: 1;
}

.wq-footer .wq-logo img {
	display: block;
	height: 60px;
	max-width: 100%;
}

.copy {
	padding: 30px 0;
	background-color: #F1F1F1;
}

.copy p {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
}


.wq-footer .row .col-xl-3 {
	margin-bottom: 30px;
}


/***** wq-footer ******/

/***** wq-banner-all-pages ******/

.wq-banner-all-pages {
	position: relative;
	background-color: #fff;
}

.wq-banner-all-pages .container {
	position: relative;
	z-index: 60;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	border-bottom: 1px solid #f1f1f1;
}

.breadcrumb li,
.breadcrumb li a,
.breadcrumb-item.active {
	font-weight: 400;
	font-size: 13px;
	line-height: 22px;
	color: #424242;
}

.breadcrumb-item.active {
	color: var(--color-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	color: #424242;
}
.wq-banner-all-pages .breadcrumb-item + .breadcrumb-item{
	padding: 0;
}

/***** wq-banner-all-pages ******/

/***** pagination *****/

.pagination-sec,
.woocommerce-pagination {
	padding: 40px 0;
}

.pagination,
ul.page-numbers {
	width: 100%!important;
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
	transition: all .2s linear;
	margin-bottom: 0;
}

.pagination li {
	margin: 5px!important;
}

a.page-numbers,
span.page-numbers {
	margin: 5px;
}

.page-link,
a.page-numbers,
span.page-numbers {
	position: relative;
	width: 45px;
	height: 45px;
	border: none;
	background-color: #fff;
	transition: all .2s linear;
	font-weight: 600;
	font-size: 15px;
	line-height: 15px;
	color: #5A5A5A;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-link:hover,
a.page-numbers:hover,
span.page-numbers.current,
.page-item.active .page-link {
	color: #fff;
	background: #343434;
	border-color: #343434;
	border-radius: 5px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
	border-radius: 0%!important;
}

.page-item.disabled {
	opacity: 0.5;
}


/***** pagination *****/

.wq-blog-box .wq-conteudo p,
.wq-post-sidebar p {
	display: -webkit-box;
	width: 100%;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.wq-blog-box .wq-conteudo p:nth-child(2),
.wq-blog-box .wq-conteudo p:nth-child(3),
.wq-blog-box .wq-conteudo p:nth-child(4),
.wq-post-sidebar p:nth-child(2),
.wq-post-sidebar p:nth-child(3),
.wq-post-sidebar p:nth-child(4) {
	display: none!important;
}

.wq-post-item .wq-conteudo p {
	display: -webkit-box;
	width: 100%;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.wq-post-item .wq-conteudo p:nth-child(2),
.wq-post-item .wq-conteudo p:nth-child(3) {
	display: none!important;
}

.woocommerce-Input,
#commentform input,
.woocommerce-address-fields input,
.woocommerce-input-wrapper input,
.woocommerce .woocommerce-checkout #payment div.payment_box input.input-text,
body .woocommerce form .form-row input.input-text {
	letter-spacing: 0.025em;
	line-height: 1.25;
	font-weight: 400;
	font-size: 15px;
	color: #2D2D2D;
	width: 100%;
	margin: 0;
	display: block;
	box-sizing: border-box;
	padding: 12px 16px;
	background-color: #f1f1f1;
	border: 1px solid #e1e1e1;
}

#commentform textarea,
textarea.input-text,
.woocommerce form .form-row textarea.input-text {
	letter-spacing: 0.025em;
	line-height: 1.25;
	font-weight: 400;
	font-size: 15px;
	color: #2D2D2D;
	width: 100%;
	height: 120px;
	padding: 12px 16px;
	display: block;
	border: none;
	box-sizing: border-box;
	background-color: #f1f1f1;
}

#commentform {
	max-width: 500px;
}

.wq-login-01 .woocommerce {
	max-width: 500px;
	margin: 0 auto;
	padding: 40px 50px;
	background-color: #fff;
	border: none!important;
	border-radius: 0!important;
}

.wq-login-01 .woocommerce h2,
.comment-reply-title,
.woocommerce-Reviews-title,
.tab-content h2 {
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	color: #272425;
	margin-bottom: 20px;
}

.comment-reply-title {
	color: #343434;
	font-weight: 500;
}

body .woocommerce form .form-row label,
#commentform label,
.password-input {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.25;
	letter-spacing: 0.025em;
	color: #484848;
}

.wq-login-01 .password-input,
.woocommerce form .form-row {
	width: 100%;
}

.woocommerce-button.button.woocommerce-form-login__submit,
.woocommerce-Button.button,
.form-submit .submit {
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	padding: 11px 18px;
	height: 45px;
	box-sizing: border-box;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all .2s linear;
	border: none;
	display: inline-flex;
	color: #FFFFFF!important;
	background: var(--color-primary)!important;
}

.tab-content td,
.tab-content th {
	padding: 5px 10px;
}

.woocommerce-button.button.woocommerce-form-login__submit:hover,
.woocommerce-Button.button:hover,
.form-submit .submit:hover {
	box-shadow: 0px 3.54848px 30.1621px rgb(0 0 0 / 15%);
}

body .woocommerce form.checkout_coupon,
body .woocommerce form.login,
body .woocommerce form.register {
	padding: 10px;
	margin: 20px 0;
	border-radius: 0px;
	border: none;
	background-color: #fff;
	box-shadow: 0px 10px 22px -8px rgba(0,0,0,.25);
}
body .woocommerce form.checkout_coupon .form-row,
body .woocommerce form.login .form-row,
body .woocommerce form.register .form-row{
	margin: 0px;
}

.woocommerce-LostPassword.lost_password a {
	color: var(--color-primary);
}

.wq-produtos-box .wq-btns-box .added_to_cart.wc-forward {
	display: none!important;
}


.comment-form-cookies-consent {
	display: grid;
	grid-template-columns: 10px 1fr;
	gap: 20px;
	align-items: center;
}

.tab-content th {
	color: #343434;
}

.wq-interno-blog .wq-conteudo h2 {
	font-weight: 500;
	font-size: 29px;
	line-height: 32px;
	letter-spacing: 0.05em;
	color: #272425;
	margin-bottom: 10px;
	text-align: left!important;
}

.wq-interno-blog .wq-conteudo h3 {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	letter-spacing: 0.05em;
	color: #272425;
	margin-bottom: 10px;
}

.wq-interno-blog .wq-conteudo h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.05em;
	color: #005f36;
	margin-bottom: 10px;
}

.wq-interno-blog .wq-conteudo h5 {
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0.05em;
	color: #272425;
	margin-bottom: 10px;
}

.wq-interno-blog .wq-conteudo h6 {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.05em;
	color: #272425;
	margin-bottom: 10px;
}

.navbar-nav.wq-desktop {
	width: 100%;
	column-gap: 15px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.navbar-nav.wq-desktop::-webkit-scrollbar {
	height: 3px;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .5);
}

.navbar-nav.wq-desktop::-webkit-scrollbar-thumb {
	-webkit-border-radius: 3px;
	border-radius: 6px;
	background: #343434;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5)
}


.woocommerce-product-search{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #F1F1F1;
	border-radius: 5px;
}

.woocommerce-product-search input {
	width: 100%;
	background: #F1F1F1;
	display: inline-block;
	padding: 12px 18px;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.035em;
	color: #626262;
	border: none;
	box-sizing: border-box;
	max-width: 100%;
	transition: all .2s linear;
	border-radius: 5px;
}

.woocommerce-product-search input:focus {
	border: 1px solid #343434;
	background-color: #fff;
	box-shadow: 0px 0px 48px -16px rgba(51, 51, 51, 0.30);
}

.woocommerce-product-search button {
	color: transparent;
	border-radius: 5px;
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	height: 45px;
	box-sizing: border-box;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all .2s linear;
	border: none;
	display: inline-flex;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
}

.wq-cta-form form::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: #343434;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 20px;
	z-index: 2;
	box-shadow: 0px 3px 30px rgb(0 0 0 / 15%);
}

@keyframes fromTop {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}


.wq-carusel-categorias-menu .slick-prev::before,
.wq-carusel-categorias-menu .slick-next::before {
	border-color: #343434;
	color: #343434;
}

@media screen and (max-width: 1599px) and (min-width: 200px) {
	.wq-produtos-box {
		padding: 15px;
	}

}

.wq-destaque .wq-wrapper a,
.wq-destaque .wq-wrapper a figure {
	display: block;
	height: 100%;
}




/*** wq-whatsapp_btn ***/

.wq-whatsapp_btn{
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 60px;
	width: 60px;
	color: #fff;
	font-size: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #4dc247;
	z-index: 99;
}
.wq-whatsapp_btn:before{
	content: '';
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	z-index: -1;
	border-radius: 50%;
	background-color: rgba(77, 194, 71,.7);
	animation: whatsapp 2s infinite 2s alternate;
}

@keyframes whatsapp{
	from{
		opacity: .3;
		transform: scale(1);
		box-shadow: 0px 0px 0px #4dc247;
	}
	to{
		opacity: .7;
		transform: scale(1.25);
		box-shadow: 0px 0px 20px #4dc247;
	}
}

/*** wq-whatsapp_btn ***/