body {
	font-family: var(--font-primary);
	font-size: 14px;
	color: var(--text);
	overflow-x: hidden;
	letter-spacing: .2px;
}

.overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #00000063;
	z-index: 4;
	bottom: 0;
	display: none;
}

img:not([src]):not([srcset]) {
	visibility: hidden;
}

.readonly-select {
	pointer-events: none;
	background-color: #f0f0f0;
	color: #888;
}

/* botões */
.btn {
	border-radius: var(--btn-border-radius);
	padding: 10px 8px;
	transition: ease all .5s;
	font-size: 14px;
}

.btn-unstyled {
	border: none;
	background: initial;
}

.btn-primary {
	background-color: var(--btn-primary);
	color: #fff;
	border: 1px solid var(--btn-primary);
}

.btn-primary:hover {
	background-color: var(--btn-primary-hover);
	border-color: var(--btn-primary-hover);
	color: #fff;
}

.btn-primary:active,
.btn-primary:focus {
	background-color: var(--btn-primary-active) !important;
	border-color: var(--btn-primary-active) !important;
	color: #fff !important
}

.btn-primary:disabled {
	opacity: 0.6;
}

.btn-secondary {
	background-color: var(--btn-secondary);
	color: #fff;
	border: 1px solid var(--btn-secondary);
}

.btn-secondary:hover {
	background-color: var(--btn-secondary-hover);
	border-color: var(--secondary);
	color: #fff;
}

.btn-secondary:active,
.btn-secondary:focus {
	background-color: var(--btn-secondary-active) !important;
	border-color: var(--btn-secondary-active) !important;
	color: #fff !important;
}

.btn-secondary:disabled {
	opacity: 0.6;
}

.btn-green {
	background-color: var(--green);
	color: #fff;
	border: 1px solid var(--green);
}

.btn-green:hover {
	background-color: var(--green-hover);
	border-color: var(--green-hover);
	color: #fff;
}

.btn-green:active,
.btn-green:focus {
	background-color: var(--green-active) !important;
	border: 1px solid var(--green-active) !important;
	color: #fff !important;
}

.btn-green:disabled {
	opacity: 0.6;
}

.btn-green-outline {
	background-color: #fff;
	color: var(--green);
	border: 1px solid var(--green);
}

.btn-green-outline:hover {
	background-color: rgba(0, 179, 45, .1);
	border-color: var(--green);
	color: var(--green);
}

.btn-green-outline:active,
.btn-green-outline:focus {
	background-color: rgba(0, 179, 45, .17) !important;
	color: var(--green) !important;
}

.btn-green-outline:disabled {
	opacity: 0.6;
}

/* .btn-gray {background-color: var(--gray-light); color: #000; border: 1px solid var(--gray-light);} */
.btn-gray {
	background-color: #005896;
	color: #fff;
	border: 1px solid var(--gray-light);
}

.btn-gray:hover {
	background-color: var(--gray-light-hover);
	border-color: var(--gray-light-hover);
	color: #000;
}

.btn-gray:active,
.btn-gray:focus {
	background-color: var(--gray-light-active) !important;
	border: 1px solid var(--gray-light-active) !important;
}

.btn-gray:disabled {
	opacity: 0.6;
}

/* @media (max-width: 991px) {
    .btn {font-size: 14px;}
} */
/* botões */

/* backgrounds */
.bg-primary {
	background-color: var(--primary)
}

.bg-secondary {
	background-color: var(--secondary);
}

.bg-green {
	background-color: var(--green);
}

.bg-gray {
	background-color: var(--gray);
}

/* backgrounds */

/* colors */
.color-primary {
	color: var(--primary)
}

.color-secondary {
	color: var(--secondary);
}

.color-green {
	color: var(--green);
}

.color-gray {
	color: var(--gray);
}

/* colors */

/* utils */
.transition {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.text-right {
	text-align: right;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.img-responsive {
	max-width: 100%;
}

/* utils */

/* scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-thumb {
	background-color: #555;
	border-radius: 4px;
}

::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}

/* scrollbar */

/* containers */
@media (min-width: 1600px) {
	.container {
		max-width: var(--container-xxl, 1420px);
	}
}

/* containers */

.breadcrumb {
	padding: 12px 0;
	margin: 0;
}

@media (max-width: 991px) {
	.breadcrumb {
		font-size: 12px;
	}
}

/* setas */

/* padrão */
.swiper-pagination-bullet-active {
	background: var(--primary);
}

.swiper-button-disabled {
	opacity: .6;
}

.vowt-pagination {
	position: absolute;
	z-index: 100;
	bottom: 0;
	display: flex;
	justify-content: center;
}

.swiper-pagination-bullet-active {
	background: var(--primary);
}

/* padrão */

.vowt-prev,
.vowt-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.vowt-prev {
	left: 0;
}

.vowt-next {
	right: 0;
}

.vowt-prev i,
.vowt-next i {
	color: var(--primary);
	display: flex;
	font-size: 50px
}

@media (max-width: 991px) {

	.vowt-prev i,
	.vowt-next i {
		font-size: 30px;
	}
}

/* setas com container */
.container-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #005896;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	transition: ease all .5s;
}

.container-arrow:hover {
	background: #1a72af;
}

.container-arrow i {
	color: #fff;
	font-size: 25px;
}

.swiper-button-disabled .container-arrow:hover {
	background-color: #005896;
}

/* setas com container */

/* setas centralizadas */
.vowt-prev.arrow-center,
.vowt-next.arrow-center {
	position: relative;
	top: auto;
	transform: none;
}

/* setas centralizadas */

/* slideshow */
.container-arrows-banner-pro .vowt-prev {
	left: 10px;
}

.container-arrows-banner-pro .vowt-next {
	right: 10px;
}

/* slideshow */
@media (max-width: 991px) {}

/* setas */

/* lista de produtos */
.product-list-carousel .vowt-prev {
	left: 2px;
}

.product-list-carousel .vowt-next {
	right: 2px;
}

.product-list .product-list-link {
	font-size: 12px;
	display: flex;
	justify-content: center;
	margin-top: 6px;
}

.product-list .product-list-link i {
	color: var(--primary);
}

.product-list-carousel-bg {
	position: relative;
	padding: 45px 0;
	z-index: 1;
}

.product-list-carousel-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../../../../../image/lista-2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	z-index: -1;
}

.product-list-carousel-bg .heading-title {
	color: #fff;
	background: #1d1d1dde;
	font-weight: 300;
}

@media (max-width: 991px) {
	/* .product-list-carousel .vowt-prev, .product-list-carousel .vowt-next {display: none;} */
}

/* lista de produtos */

.bi-star {
	color: #aaa;
}

.bi-star-fill {
	color: #ffbf00;
}

/* home */
#common-home #content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sections-home);
}

.banners-home img {
	border-radius: 4px;
}

/* títulos de seções */
.heading-title {
	font-size: 30px;
	font-weight: 300;
	color: var(--secondary);
	margin-bottom: 6px;
	text-align: center;
	margin-bottom: 12px;
	letter-spacing: 1px;
}

.heading-title-products {
	margin: 0;
}

@media (max-width: 991px) {
	.heading-title {
		font-size: 26px;
	}
}

/* títulos de seções */
/* home */

/* categoria */
.category-title {
	font-size: 24px;
}

.categories-lateral {
	border: 1px solid #ddd;
	padding: 18px;
	border-radius: 8px;
}

.categories-lateral h3 {
	font-size: 18px;
	text-transform: uppercase;
	color: var(--primary);
	border-bottom: 1px solid #eee;
	padding-bottom: 12px;
	margin-bottom: 12px;
}

.categories-lateral a {
	font-size: 16px;
}

#product-toolbar label {
	margin: 0;
	line-height: normal;
	padding: 8px 12px;
	background: #fafafa;
}

#product-toolbar button {
	padding: 6px 10px;
}

#product-toolbar button.active {
	background: #eaeaea;
	border-color: #eaeaea;
}

#product-toolbar .nice-select {
	height: auto;
	line-height: normal;
	display: flex;
	align-items: center;
}

/* categoria */

/* inputs */
.input-container {
	border: solid 1px var(--gray);
	font-size: 14px;
	display: flex;
	border-radius: var(--input-border-radius);
}

.input-container:has(input:focus) {
	border: 1px solid var(--primary);
}

.input-container input {
	border: none !important;
}

/* inputs */

/* default */
h1,
h2,
h3,
h4,
h5 {
	padding: 0;
	margin: 0;
}

p {
	margin: 0;
}

h1 span,
h2 span {
	color: var(--primary);
}

a {
	text-decoration: none;
	color: var(--text);
}

input:focus {
	outline: none;
}

input {
	border: none;
}

label {
	font-size: 13px;
	margin-bottom: 6px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #fff inset !important;
	transition: none;
}

input:focus-visible {
	outline: none;
}

.nav-link.active {
	background-color: var(--primary);
	color: #fff;
}

.nav-link {
	font-size: 1rem;
	border-radius: 0;
	color: var(--text);
}

.page-link {
	border-color: transparent;
	border-radius: 50%;
	color: #46634f;
	display: flex;
	padding: 0;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
	margin: 0 6px;
}

.page-link:hover,
.page-link:focus {
	background: #eee;
	border-color: #1acb1a;
	color: #46634f;
	box-shadow: none;
}

.page-item.active .page-link {
	background-color: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	box-shadow: none;
	background: none;
}

/* default */

/*Remove Bootstrap */
.form-control {
	border: solid 1px var(--gray);
	height: 50px;
	font-size: 14px;
}

.form-control:focus {
	box-shadow: none;
	border-color: var(--primary);
}

.form-group {
	margin-bottom: 10px;
}

.form-control-line {
	border: none;
	background: transparent;
	border-bottom: solid 1px var(--gray);
	border-radius: 0;
}

.form-control-line.form-control-line-dark {
	color: #fff;
}

.form-control-line.form-control-line-dark::placeholder {
	color: #fff;
}

.form-control-line.form-control-line-dark:focus {
	background-color: transparent;
}

/*Remove Bootstrap */

.product-description .description {
	overflow-wrap: break-word;
}

/* ==========================================================================
   ADICIONAL PARA RESPONSIVIDADE 4K (A PARTIR DAQUI)
   ========================================================================== */

@media (min-width: 2500px) {

	/* 1. Destrava a largura do container e centraliza o site */
	.container {
		max-width: 2800px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		float: none !important;
	}

	/* 2. Força o Banner a ignorar a largura fixa do HTML e preencher o espaço */
	.swiper-slide img,
	.banner_pro img,
	.banners-home img {
		width: 100% !important;
		max-width: none !important;
		height: auto !important;
	}

	/* 3. Escala as fontes e espaçamentos para monitores UHD */
	body {
		font-size: 20px;
	}

	.heading-title {
		font-size: 48px;
		margin-bottom: 25px;
	}

	.btn {
		font-size: 18px;
		padding: 15px 25px;
	}

	.form-control,
	.input-container {
		height: 65px;
		font-size: 18px;
	}

	/* 4. Ajusta ícones e elementos visuais grandes */
	.vowt-prev i,
	.vowt-next i {
		font-size: 80px;
	}

	.container-arrow {
		width: 70px;
		height: 70px;
	}

	.container-arrow i {
		font-size: 35px;
	}
}