:root {
	--sg-accent: #0db5de;
	--sg-accent-dark: #0893b7;
	--sg-accent-soft: #e9faff;
	--sg-text: #201f1f;
	--sg-muted: #727272;
	--sg-border: #ececec;
	--sg-surface: #ffffff;
	--sg-surface-alt: #f7fafb;
	--sg-footer-text: #07313b;
	--sg-shadow: 0 18px 40px rgba(18, 39, 46, 0.08);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	color: var(--sg-text);
	background: #ffffff;
}

body.sg-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

input,
button,
select,
textarea {
	font: inherit;
}

.site {
	background: #ffffff;
}

.col-full {
	max-width: 1180px;
	width: calc(100% - 32px);
	margin: 0 auto;
}

.site-content {
	background: #ffffff;
}

.site-main,
.content-area,
.widget-area {
	margin-bottom: 0;
}

.storefront-breadcrumb {
	margin-bottom: 2rem;
}

.storefront-breadcrumb a,
.woocommerce-breadcrumb a {
	color: var(--sg-muted);
}

.sg-header {
	position: relative;
	background: var(--sg-accent);
	box-shadow: 0 1px 4px rgba(82, 82, 82, 0.2);
}

.sg-header__top {
	display: grid;
	grid-template-columns: auto 220px minmax(280px, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 18px 0;
}

.sg-site-branding {
	display: flex;
	align-items: center;
}

.sg-logo-link {
	display: inline-flex;
	align-items: center;
}

.sg-logo-image {
	width: 210px;
	max-width: 100%;
	display: block;
}

.sg-nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	padding: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.sg-nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: #ffffff;
}

.sg-header__search {
	display: flex;
	align-items: center;
}

.sg-search-form {
	position: relative;
	width: 100%;
}

.sg-search-form .search-field {
	width: 100%;
	height: 44px;
	border: none;
	border-radius: 999px;
	padding: 0 56px 0 22px;
	background: #ffffff;
	color: var(--sg-accent);
	box-shadow: none;
}

.sg-search-form .search-field::placeholder {
	color: var(--sg-accent);
	opacity: 0.92;
}

.sg-search-form button {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none;
	min-width: 0;
}

.sg-search-form button svg {
	width: 18px;
	height: 18px;
	fill: var(--sg-accent);
}

.sg-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: flex-end;
}

.sg-header__action {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.sg-header__action--cart {
	padding-left: 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.sg-header__cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--sg-accent);
	font-size: 11px;
	font-weight: 700;
}

.sg-primary-nav {
	background: #ffffff;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	box-shadow: var(--sg-shadow);
}

.sg-primary-nav__menu,
.sg-mobile-menu__list,
.sg-footer__links,
.sg-payment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sg-primary-nav__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 28px;
	padding: 16px 20px;
}

.sg-primary-nav__menu > li {
	position: relative;
}

.sg-primary-nav__menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
	color: var(--sg-text);
}

.sg-primary-nav__menu > li:hover > a,
.sg-primary-nav__menu > li.current-menu-item > a,
.sg-primary-nav__menu > li.current-menu-parent > a {
	color: var(--sg-accent);
}

.sg-primary-nav__menu .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	min-width: 220px;
	display: none;
	padding: 10px 0;
	border: 1px solid var(--sg-border);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 20px 40px rgba(17, 39, 46, 0.12);
	z-index: 15;
}

.sg-primary-nav__menu li:hover > .sub-menu {
	display: block;
}

.sg-primary-nav__menu .sub-menu li a {
	display: block;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 500;
	color: var(--sg-text);
}

.sg-primary-nav__menu .sub-menu li a:hover {
	background: var(--sg-accent-soft);
	color: var(--sg-accent);
}

.sg-mobile-menu[hidden] {
	display: none !important;
}

.sg-mobile-menu {
	position: fixed;
	inset: 0;
	background: rgba(7, 7, 7, 0.55);
	z-index: 50;
}

.sg-mobile-menu .col-full {
	width: 100%;
	height: 100%;
	margin: 0;
}

.sg-mobile-menu__inner {
	width: min(320px, 88vw);
	min-height: 100dvh;
	padding: 28px 22px;
	background: #ffffff;
	box-shadow: 0 20px 40px rgba(7, 19, 24, 0.18);
}

.sg-mobile-menu__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sg-mobile-menu__list li a {
	display: block;
	padding: 12px 10px;
	border-bottom: 1px solid #f0f3f4;
	font-size: 15px;
	font-weight: 600;
	color: var(--sg-text);
}

.sg-mobile-menu__list .sub-menu {
	margin: 6px 0 10px 10px;
	padding-left: 10px;
	border-left: 2px solid var(--sg-accent-soft);
}

.sg-mobile-menu__list .sub-menu li a {
	padding: 9px 10px;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 0;
	color: var(--sg-muted);
}

.sg-home-main {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-bottom: 48px;
}

.sg-hero {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.sg-hero-slider,
.sg-hero .slickslid {
	overflow: hidden;
}

.sg-hero-slider img,
.sg-hero .slickslid img {
	display: block;
	width: 100%;
	height: auto;
}

.sg-feature-bar {
	border-top: 1px solid rgba(144, 144, 144, 0.12);
	border-bottom: 1px solid rgba(144, 144, 144, 0.18);
}

.sg-feature-slider {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sg-feature {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	text-align: center;
}

.sg-feature strong {
	color: var(--sg-accent);
	font-size: 17px;
	line-height: 1.1;
}

.sg-feature span {
	color: var(--sg-text);
	font-size: 14px;
	line-height: 1.1;
}

.sg-home-section {
	padding: 4px 0;
}

.sg-home-section__header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.sg-home-section__header::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #e8e8e8;
	transform: translateY(-50%);
}

.sg-home-section__header h2,
.sg-home-section__header a {
	position: relative;
	z-index: 1;
	background: #ffffff;
}

.sg-home-section__header h2 {
	margin: 0;
	padding-right: 20px;
	color: var(--sg-accent);
	font-size: clamp(24px, 2.5vw, 28px);
	font-weight: 700;
	line-height: 1.1;
}

.sg-home-section__header a {
	padding-left: 20px;
	color: var(--sg-text);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.sg-home-carousel {
	display: none;
	margin: 0 -8px;
}

.sg-home-carousel.slick-initialized {
	display: block;
}

.sg-home-carousel .slick-slide {
	padding: 8px;
}

.sg-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid transparent;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(17, 39, 46, 0.06);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sg-product-card:hover {
	transform: translateY(-4px);
	border-color: var(--sg-border);
	box-shadow: 0 16px 28px rgba(17, 39, 46, 0.12);
}

.sg-product-card__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.sg-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sg-product-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 11px;
	border-radius: 999px;
	background: #202020;
	color: var(--sg-accent);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.sg-product-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	padding: 16px 18px 20px;
	text-align: center;
}

.sg-product-card__title {
	margin: 0 0 14px;
	min-height: 36px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
}

.sg-product-card__title a {
	color: var(--sg-text);
}

.sg-product-card__price {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-height: 58px;
	margin-bottom: 16px;
}

.sg-product-card__price s {
	color: #b7b7b7;
	font-size: 11px;
	line-height: 1;
}

.sg-product-card__price strong {
	color: var(--sg-accent);
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
}

.sg-product-card__button,
.woocommerce a.button.sg-product-card__button,
.woocommerce button.button.sg-product-card__button,
.woocommerce input.button.sg-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 10px 16px;
	border: 0;
	border-radius: 12px;
	background: var(--sg-accent) !important;
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	box-shadow: none;
}

.sg-product-card__button:hover,
.woocommerce a.button.sg-product-card__button:hover,
.woocommerce button.button.sg-product-card__button:hover,
.woocommerce input.button.sg-product-card__button:hover {
	background: var(--sg-accent-dark) !important;
	color: #ffffff !important;
}

.slick-slider {
	position: relative;
	display: block;
}

.slick-track {
	display: flex;
}

.slick-slide {
	height: inherit;
}

.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 48px;
	padding: 0;
	border: 1px solid #ececec;
	border-radius: 8px;
	background: #f5f5f5;
	color: #969696;
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 1px 3px rgba(191, 191, 191, 0.11);
	z-index: 2;
}

.slick-prev:hover,
.slick-next:hover {
	background: #efefef;
}

.slick-prev {
	left: -24px;
}

.slick-next {
	right: -24px;
}

.sg-hero .slick-prev,
.sg-hero .slick-next {
	opacity: 0;
	transition: opacity 0.25s ease;
}

.sg-hero:hover .slick-prev,
.sg-hero:hover .slick-next {
	opacity: 1;
}

.sg-hero .slick-prev {
	left: 16px;
}

.sg-hero .slick-next {
	right: 16px;
}

.slick-dots {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: inline-flex !important;
	gap: 6px;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.slick-dots li button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(220, 220, 220, 0.65);
	font-size: 0;
	box-shadow: 0 1px 4px rgba(72, 72, 72, 0.17);
}

.slick-dots li.slick-active button {
	width: 20px;
	background: rgba(255, 255, 255, 0.94);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.button,
button.button,
input[type="submit"] {
	border-radius: 12px;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	background: var(--sg-accent) !important;
	color: #ffffff !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
	background: var(--sg-accent-dark) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-Price-amount.amount {
	color: var(--sg-accent);
}

.sg-newsletter {
	border-top: 1px solid #eef2f4;
	border-bottom: 1px solid #eef2f4;
	background: #ffffff;
}

.sg-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	align-items: center;
	gap: 24px;
	padding: 28px 0;
}

.sg-newsletter h3 {
	margin: 0 0 6px;
	color: var(--sg-accent);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}

.sg-newsletter p {
	margin: 0;
	color: var(--sg-accent);
	font-size: 15px;
}

.sg-newsletter__form {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sg-newsletter__form input {
	flex: 1 1 auto;
	height: 44px;
	border: 0;
	border-radius: 999px;
	padding: 0 20px;
	background: var(--sg-accent);
	color: #ffffff;
}

.sg-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.92);
}

.sg-newsletter__form .button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	border-radius: 999px;
	background: transparent !important;
	border: 1px solid rgba(13, 181, 222, 0.2);
	color: var(--sg-accent) !important;
	font-weight: 700;
}

.sg-footer {
	background: var(--sg-accent);
	color: var(--sg-footer-text);
}

.sg-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 28px;
	padding: 46px 0 38px;
}

.sg-footer__block h4 {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
}

.sg-footer__block p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.55;
}

.sg-footer__logo {
	display: block;
	width: 180px;
	margin-bottom: 16px;
}

.sg-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sg-footer__links li,
.sg-payment-list li {
	font-size: 14px;
	line-height: 1.4;
}

.sg-payment-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 8px 14px;
}

.sg-footer__seal {
	margin-top: 18px;
}

.sg-footer__seal img {
	width: 110px;
}

.sg-footer__bottom {
	background: #ffffff;
}

.sg-footer__bottom p {
	margin: 0;
	padding: 16px 0;
	color: #8a8a8a;
	font-size: 12px;
	line-height: 1.2;
}

@media (max-width: 1100px) {
	.sg-header__top {
		grid-template-columns: auto 180px minmax(240px, 1fr) auto;
		gap: 18px;
	}

	.sg-primary-nav__menu {
		gap: 20px;
	}

	.slick-prev {
		left: -8px;
	}

	.slick-next {
		right: -8px;
	}
}

@media (max-width: 1024px) {
	.sg-header__top {
		grid-template-columns: auto 1fr auto;
		grid-template-areas:
			"toggle brand actions"
			"search search search";
		row-gap: 16px;
	}

	.sg-nav-toggle {
		grid-area: toggle;
		display: inline-flex;
	}

	.sg-site-branding {
		grid-area: brand;
		justify-content: center;
	}

	.sg-header__search {
		grid-area: search;
	}

	.sg-header__actions {
		grid-area: actions;
		gap: 10px;
	}

	.sg-header__action {
		font-size: 13px;
	}

	.sg-header__action--cart {
		padding-left: 10px;
	}

	.sg-primary-nav {
		display: none;
	}

	.sg-feature-slider {
		display: block;
	}

	.sg-feature {
		padding: 14px 12px;
	}

	.sg-home-section__header h2 {
		font-size: 22px;
	}

	.sg-newsletter__inner,
	.sg-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.col-full,
	#content > .col-full,
	.main-mobile-nav .col-full {
		width: calc(100% - 24px) !important;
		max-width: none;
		margin-right: 12px !important;
		margin-left: 12px !important;
		box-sizing: border-box;
	}

	.sg-header__top {
		padding: 14px 0;
	}

	.sg-logo-image {
		width: 156px;
	}

	.sg-header__actions {
		flex-direction: column;
		align-items: flex-end;
		gap: 6px;
	}

	.sg-header__action--cart {
		border-left: 0;
		padding-left: 0;
	}

	.sg-home-main {
		gap: 24px;
		padding-bottom: 38px;
	}

	.sg-home-section__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.sg-home-section__header h2,
	.sg-home-section__header a {
		padding: 0 10px;
	}

	.sg-product-card__content {
		padding: 14px 14px 18px;
	}

	.sg-product-card__price strong {
		font-size: 24px;
	}

	.slick-prev,
	.slick-next {
		width: 32px;
		height: 40px;
		font-size: 22px;
	}

	.sg-hero .slick-prev,
	.sg-hero .slick-next {
		opacity: 1;
	}

	.sg-newsletter__inner,
	.sg-footer__grid {
		grid-template-columns: 1fr;
	}

	.sg-newsletter__form {
		flex-direction: column;
		align-items: stretch;
	}

	.sg-payment-list {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}

/* Legacy visual clone */
html,
body {
	overflow-x: hidden;
	background-color: #ffffff !important;
}

.menu-overlay[hidden],
.busca2[hidden],
.menu-mobile[hidden] {
	display: none !important;
}

.d-none {
	display: none;
}

.d-lg-block {
	display: block !important;
}

.d-flex {
	display: flex;
}

.visible-desktop {
	display: inherit !important;
}

.visible-phone {
	display: none !important;
}

.hidden-phone {
	display: inherit !important;
}

.main-header {
	background: #0db5de;
	position: relative;
	z-index: 7;
}

.navigation-wrapper {
	padding: 0;
}

.navigation-middle {
	padding: 0;
}

.main-navigation .col-full,
.main-mobile-nav .col-full {
	width: calc(100% - 32px);
	max-width: 1180px;
}

.sg-header-desktop {
	display: grid;
	grid-template-columns: 220px minmax(320px, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 115px;
	padding: 0;
}

.sg-header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.sg-header-logo .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.sg-header-logo .custom-logo-link,
.sg-header-logo .sg-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.sg-header-logo img {
	width: 205px;
	max-width: 100%;
	display: block;
}

.sg-header-search {
	min-width: 0;
	display: flex;
	align-items: center;
}

.busca-mobile {
	width: 100%;
}

.busca {
	position: relative;
	padding: 0;
	border: 0;
	border-radius: 50px;
	line-height: 44px;
	width: 100%;
	background: #ffffff;
}

.busca .sg-search-form {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
}

.busca .search-field,
.busca .sg-search-form .search-field,
.busca .woocommerce-product-search .search-field,
.busca input[type="search"] {
	border: none !important;
	box-shadow: none !important;
	box-sizing: border-box;
	padding: 0 30px;
	padding-right: 56px;
	background: none;
	font-size: 13px;
	height: 44px;
	width: 100%;
	display: block;
	margin: 0;
	border-radius: 50px !important;
	color: #0db5de;
}

.busca .search-field::placeholder {
	color: #0db5de;
}

.busca .sg-search-form button,
.busca .woocommerce-product-search button[type="submit"],
.busca .botao-busca {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	padding: 0 !important;
	margin: 0 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0 !important;
	background: none !important;
	box-shadow: none !important;
	min-width: 0;
	line-height: 1;
	appearance: none;
}

.busca .sg-search-form button svg,
.busca .woocommerce-product-search button[type="submit"] svg,
.busca .botao-busca svg {
	width: 20px;
	height: 20px;
	fill: #0db5de;
}

.main-menu-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.menu-right-list {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.painel {
	display: flex;
}

.painel-item {
	margin-left: 0;
	position: relative;
	display: block;
}

.painel .a,
.painel .a a {
	color: #ffffff !important;
}

.painel .a {
	display: flex;
	align-items: center;
}

.painel .a > svg,
.icone-carrinho svg,
.menu-mobile-button svg,
.busca-topo svg {
	fill: #ffffff;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
}

.painel .b {
	display: flex;
	flex-direction: column;
	margin-left: 10px;
}

.painel .b span {
	font-size: 14px;
	line-height: 15px;
	display: flex;
	align-items: center;
	white-space: break-spaces;
}

.painel-conta .b {
	gap: 1px;
}

.painel-conta .b .c,
.painel-conta .b .d {
	line-height: 13px;
}

.painel .d > a {
	font-weight: 700;
}

.painel-conta .d > a {
	display: inline-flex;
	align-items: center;
	padding: 0;
	line-height: 13px;
}

.painel .d svg {
	width: 8px;
	height: 8px;
	margin-left: 4px;
}

.painel-item .dir .dir-inside {
	transition: all 0s ease-in-out 0s;
	transform: translateY(-1em);
	visibility: hidden;
	opacity: 0;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 5px;
	position: absolute;
	right: 0;
	padding: 14px;
	margin-top: 15px;
	box-shadow: 0 3px 8px 1px rgb(204 204 204 / 27%);
	z-index: 20;
}

.painel-item:hover .dir-inside {
	visibility: visible;
	opacity: 1 !important;
	transform: translateY(0);
	transition: all 0.2s ease-in-out 0s;
}

.painel-item:hover .dir-inside > span {
	height: 18px;
	display: block;
	position: absolute;
	top: -18px;
	width: 100%;
	left: 0;
}

.painel-item .dir-inside::before,
.painel-item .dir-inside::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
	width: 0;
	height: 0;
}

.painel-item .dir-inside::before {
	right: 28px;
	border: 8px solid transparent;
	border-bottom-color: #ddd;
}

.painel-item .dir-inside::after {
	right: 29px;
	border: 7px solid transparent;
	border-bottom-color: #fff;
}

.painel-atendimento .dir-inside {
	min-width: 240px;
	max-width: 300px;
}

.painel-atendimento .a-block {
	display: flex;
	flex-direction: column;
}

.painel-atendimento .a-block:not(:last-child) {
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgb(144 144 144 / 26%);
}

.painel-atendimento .contato-titulo {
	font-size: 15px;
	line-height: 14px;
	margin-bottom: 3px;
	font-weight: 600;
	color: #201f1f;
}

.painel-atendimento .a-block a {
	margin-top: 5px;
	display: flex;
	align-items: center;
	color: #201f1f !important;
}

.painel-atendimento .a-block-icon {
	margin-right: 12px;
}

.painel-atendimento .a-block-icon svg {
	width: 18px;
	height: 18px;
	fill: #666;
}

.painel-atendimento .a-block-cont {
	display: flex;
	flex-direction: column;
}

.painel-atendimento .a-block-cont strong {
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	color: #201f1f;
}

.painel .carrinho {
	border: none;
	position: relative;
}

.painel .carrinho > a {
	display: flex;
	align-items: center;
	float: none;
}

.painel .carrinho .wrap-qtde {
	display: flex;
	align-items: center;
	padding-left: 5px;
}

.painel .carrinho > a strong {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	min-width: 20px;
	height: 18px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: #ffffff;
	color: #0db5de;
}

.desktop-menu {
	display: block;
	position: relative;
	background: #ffffff;
	box-shadow: 0 1px 4px 0 rgb(82 82 82 / 20%);
	z-index: 6;
}

.desktop-menu .sales-games-menu {
	background-color: #ffffff;
	padding: 15px 20px;
}

.desktop-menu .sales-games-menu-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.desktop-menu .sales-games-menu-item {
	position: relative;
	margin: 0 20px;
}

.desktop-menu .sales-games-menu-item > a {
	color: #242424 !important;
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.desktop-menu .sales-games-menu-item > a:hover {
	color: #0db5de !important;
}

.menu-chevron,
.desktop-menu .sales-games-menu-item > a svg {
	width: 14px;
	height: 14px;
	margin-left: 4px;
}

.desktop-menu .sales-games-submenu {
	display: none;
	position: absolute;
	width: max-content;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	border: 1px solid #dedede;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	z-index: 15;
	overflow: hidden;
}

.desktop-menu .sales-games-menu-item:hover .sales-games-submenu {
	display: block;
	opacity: 1;
	visibility: visible;
}

.sales-games-submenu-wrap {
	display: flex;
	padding: 25px 23px 25px 28px;
	align-items: flex-start;
}

.level2-cat-wrap {
	flex: 1;
}

.submenu-level2 {
	list-style: none;
	padding: 0;
	margin: 0;
	min-height: 220px;
}

.submenu-level2 li:not(:last-child) {
	margin-bottom: 12px;
}

.submenu-level2 a {
	color: #333 !important;
	font-size: 15px;
	font-weight: 500;
}

.submenu-level2 a:hover {
	color: #00a8f4 !important;
}

.level2-prod-wrap {
	width: 235px;
	margin-left: 24px;
	height: fit-content;
	overflow: hidden;
}

.level2-prod-wrap .listagem-item {
	margin: 0;
}

.slickslid-destaques-menu.listagem {
	display: flex;
	overflow: hidden;
	max-width: 220px;
}

.arrow-2 .slick-arrow {
	background: #f9f9f9;
	border-radius: 5px;
	box-shadow: 0 2px 4.3px 0.45px rgb(205 205 205 / 16%) !important;
	border: 1px solid #e8e8e8;
	padding: 10px 2px;
	width: auto !important;
}

.arrow-2 .slick-arrow svg,
.arrow-2 .slick-arrow {
	color: #929292;
}

.menu-overlay {
	z-index: 5;
	display: none;
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 53%);
}

.main-mobile-nav {
	display: none;
	background: #0db5de !important;
}

.main-mobile-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
}

.mobile-left {
	min-width: 51px;
	display: flex;
	align-items: center;
}

.menu-mobile-button,
.busca-topo,
.menu-mobile-close,
.mobile-submenu-toggle {
	padding: 0;
	border: 0;
	background: none;
	min-width: 0;
}

.menu-mobile-button svg {
	width: 26px;
	height: 26px;
	cursor: pointer;
}

.busca-topo {
	margin-left: 15px;
}

.busca-topo svg {
	width: 21px;
	height: 21px;
}

.main-menu-right.main-mobile-left {
	display: flex;
	justify-content: center;
	flex: 1 1 auto;
}

.main-menu-right.main-mobile-left .logo img {
	width: 10rem;
}

.busca2 {
	position: fixed;
	inset: 0;
	z-index: 12;
	background: #ffffff;
	padding: 30px 0;
}

.busca2-inside {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.busca2-cabecalho {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.busca2-titulo {
	font-size: 28px;
	font-weight: 700;
	color: #0db5de;
}

.busca2-close svg {
	width: 24px;
	height: 24px;
	fill: #201f1f;
}

.busca2 .busca {
	max-width: 560px;
}

.busca2-categorias {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
}

.busca2-categorias a {
	padding-bottom: 12px;
	border-bottom: 1px solid #ececec;
}

.busca2-categorias .titulo {
	font-size: 16px;
	color: #201f1f;
}

.menu-mobile {
	width: 100%;
	left: 0;
	position: fixed;
	top: 0;
	height: 100vh;
	z-index: 13;
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.3s ease-in;
	display: flex;
}

.menu-mobile.active {
	opacity: 1;
	transform: translateX(0);
	transition: all 0.4s;
}

.menu-mobile-wrap {
	height: 100%;
	left: 0;
	display: flex;
	flex-direction: column;
	width: 290px;
	background: #fff;
}

.menu-mobile-close {
	display: flex;
	flex: 1;
	position: relative;
	cursor: pointer;
	background: #0db5de;
}

.menu-mobile-close svg {
	width: 25px;
	height: 25px;
	fill: #fff;
	top: 15px;
	position: relative;
	left: 15px;
}

.conta-mobile {
	border-bottom: 1px solid #e8e8e8;
}

.conta-mobile .inside,
.painel-mobile .inside,
.categorias-mobile .inside {
	padding: 13px 23px;
}

.conta-mobile .a {
	display: flex;
	width: 100%;
	align-items: center;
}

.conta-mobile svg {
	width: 32px;
	height: 32px;
	fill: #999;
	margin-right: 12px;
}

.conta-mobile .b {
	display: flex;
	flex-direction: column;
	color: #201f1f;
}

.conta-mobile .b strong {
	font-size: 15px;
	line-height: 1.2;
}

.conta-mobile .b span,
.conta-mobile .b a {
	font-size: 13px;
	color: #6a6a6a;
}

.painel-mobile {
	border-bottom: 1px solid #e8e8e8;
}

.painel-mobile .item-mobile + .item-mobile {
	margin-top: 12px;
}

.painel-mobile a {
	display: flex;
	align-items: center;
	color: #201f1f !important;
	font-weight: 500;
}

.painel-mobile svg {
	width: 26px;
	height: 26px;
	fill: #999;
	margin-right: 15px;
}

.categorias-titulo {
	display: block;
	margin-bottom: 12px;
	font-size: 15px;
	font-weight: 700;
	color: #201f1f;
}

.nivel-um,
.nivel-dois {
	list-style: none;
	margin: 0;
	padding: 0;
}

.categoria-mobile {
	border-bottom: 1px solid #ececec;
}

.level1-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}

.level1-wrap a {
	flex: 1 1 auto;
}

.level1-wrap .titulo {
	font-size: 15px;
	color: #201f1f;
}

.mobile-submenu-toggle svg {
	width: 18px;
	height: 18px;
	margin-left: 12px;
	color: #7a7a7a;
	transition: transform 0.2s ease;
}

.mobile-submenu-toggle.is-open svg {
	transform: rotate(180deg);
}

.nivel-dois {
	display: none;
	padding-bottom: 12px;
}

.nivel-dois li + li {
	margin-top: 10px;
}

.nivel-dois a {
	display: block;
	padding-left: 6px;
	font-size: 14px;
	color: #6b6b6b !important;
}

.sg-home-main {
	gap: 0;
	padding-bottom: 24px;
}

.banners-full {
	border-bottom: 1px solid rgb(144 144 144 / 13%);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.banners-full .slick-track {
	display: flex !important;
}

.banners-full .slick-slide {
	height: inherit !important;
}

.banners-full .slick-slide img {
	display: block;
	width: 100%;
}

.banners-full .slick-arrow {
	transition: opacity 0.25s ease-in-out;
	border-radius: 5px;
	padding: 5px;
	width: 33px !important;
	height: 43px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	opacity: 0;
	background: #f5f5f5;
	border-color: #ececec;
	box-shadow: 0 1px 3px 1px rgb(191 191 191 / 11%);
}

.banners-full:hover .slick-arrow {
	opacity: 1;
}

.banners-full .slick-prev {
	left: 15px !important;
}

.banners-full .slick-next {
	right: 15px !important;
}

.banners-full .slick-dots {
	right: 20px;
	left: auto;
	bottom: 20px;
}

.banners-vantagens-outer {
	border-bottom: 1px solid rgb(144 144 144 / 22%);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.banners-vantagens {
	background: #ffffff;
}

.slickslid-vantagens:not(.slick-initialized) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.slickslid-vantagens.slick-initialized {
	display: block;
}

.slickslid-vantagens .slick-list {
	width: 100% !important;
}

.slickslid-vantagens .slick-track {
	width: 100% !important;
	display: flex !important;
	justify-content: space-between;
}

.vantagem {
	margin: 8px 0;
	justify-content: center;
	display: flex !important;
	align-items: center;
	height: auto;
}

.slickslid-vantagens .slick-slide {
	height: inherit !important;
}

.slickslid-vantagens .slick-slide > div {
	width: 100%;
}

.vantagem a {
	display: flex;
	align-items: center;
}

.vantagem-icone {
	width: 38px;
	height: 38px;
}

.vantagem-icone svg {
	width: 100%;
	height: 100%;
	fill: #0db5de;
}

.vantagem-texto {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-left: 13px;
}

.vantagem-texto strong {
	color: #0db5de;
	font-size: 17px;
	line-height: 17px;
}

.vantagem-texto span {
	color: #000;
	font-size: 14px;
	line-height: 14px;
}

.conteiner {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.sg-home-link {
	display: flex;
	justify-content: flex-end;
	margin-top: -8px;
	margin-bottom: 16px;
}

.sg-home-link a {
	font-size: 14px;
	font-weight: 600;
	color: #201f1f !important;
}

.slickslid-mais-vendidos {
	align-items: center;
	margin: -8px;
	display: none;
}

.slickslid-mais-vendidos.slick-initialized {
	display: flex !important;
}

.sg-vitrine-products {
	list-style: none;
	padding: 0;
}

.sg-vitrine-products.slick-initialized {
	display: block !important;
}

.sg-vitrine-products .slick-list {
	margin: 0;
}

.sg-vitrine-products .slick-track {
	display: flex !important;
}

.slickslid-mais-vendidos .slick-slide {
	padding: 8px;
	height: auto;
}

.sg-vitrine-products li.product {
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	height: auto;
}

.sg-vitrine-products li.product.slick-slide {
	display: flex !important;
	height: inherit !important;
}

.listagem-item {
	margin: 0 8px;
	padding: 0;
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
	height: inherit;
	border-radius: 4px;
	background: #fff;
	position: relative;
}

.slickslid-mais-vendidos .listagem-item {
	display: flex;
	height: 100%;
}

.listagem-item .listagem-item-wrap {
	border: 1px solid #fff;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	background: #fff;
}

.slickslid-mais-vendidos .listagem-item .listagem-item-wrap {
	flex: 1 1 auto;
	min-height: 100%;
}

.listagem-item .produto-sobrepor {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgb(255 255 255 / 0%);
}

.listagem-item .imagem-produto {
	position: relative;
	max-width: 100% !important;
	text-align: center;
	border: none !important;
	width: 100%;
	margin: 0 auto;
	height: 180px;
}

.listagem-item .imagem-produto img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 3px 3px 0;
}

.listagem-item .info-produto {
	text-align: center;
	padding: 15px 20px;
	width: 100%;
	margin: 0;
	position: initial;
}

.slickslid-mais-vendidos .listagem-item .info-produto {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.listagem-item .info-produto .nome-produto {
	font-size: 16px;
	line-height: 17px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 16px;
	font-weight: 400;
	min-height: 35px;
	color: #201f1f !important;
}

.precos-wrap {
	width: 100%;
}

.slickslid-mais-vendidos .precos-wrap {
	margin-top: auto;
}

.info-produto .preco-produto {
	display: flex;
	flex-direction: column;
	min-height: 55px;
	align-items: center;
}

.listagem-item .info-produto .preco-produto > div {
	margin: 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 4px;
	color: #0db5de;
}

.preco-produto s {
	margin-right: 6px !important;
	font-size: 11px !important;
	color: #b7b7b7 !important;
	text-decoration-thickness: 1px;
}

.preco-produto strong {
	font-size: 23px;
	line-height: 23px;
	font-weight: 700;
}

.listagem-item .acoes-produto {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 20%;
	background: #fff;
	padding: 10px;
	padding-top: 15px;
	margin: 1px;
	transition: opacity ease-in-out 0.2s, bottom ease-out 0.2s;
	z-index: 1;
	opacity: 0;
}

.listagem-item:hover .acoes-produto {
	bottom: 40%;
	opacity: 1;
}

.listagem .listagem-item .acoes-produto .seletor {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.qtde-adicionar-carrinho {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #d8d8d8;
	border-radius: 3px;
	align-self: stretch;
	width: 72px !important;
	margin-right: 6px;
	padding: 4px;
}

.qtde-adicionar-carrinho .botao-quantidade {
	padding: 5px;
	cursor: pointer;
	display: flex;
}

.qtde-adicionar-carrinho .botao-quantidade:hover {
	background: #eaeaea;
	border-radius: 50%;
}

.qtde-adicionar-carrinho input {
	-moz-appearance: textfield;
	margin: 0;
	border: none !important;
	box-shadow: none !important;
	font-weight: 700;
	font-size: 17px;
	padding: 0 !important;
	width: 24px;
	text-align: center;
	min-height: unset;
	color: #616161;
}

.qtde-adicionar-carrinho input::-webkit-outer-spin-button,
.qtde-adicionar-carrinho input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qtde-adicionar-carrinho svg {
	width: 8px;
	height: 8px;
	fill: #616161;
}

.botao {
	padding: 5px 15px !important;
	line-height: 38px;
	border-radius: 3px;
	font-weight: 500;
	font-size: 15px !important;
	text-shadow: none !important;
	border: none;
	background-image: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	white-space: nowrap;
}

.botao-comprar {
	border: none;
	font-size: 16px;
	font-weight: 600;
	flex: 1;
	border-radius: 3px;
	height: 41px;
	padding: 0 10px !important;
}

.botao.principal.botao-comprar,
.botao.principal.grande,
.acoes-produto-responsiva .tag-comprar {
	background-color: #0db5de !important;
	color: #ffffff !important;
}

.acoes-produto-responsiva {
	display: none;
}

.acoes-produto-responsiva .tag-comprar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.acoes-produto-responsiva .tag-comprar svg {
	width: 18px;
	height: 18px;
	fill: #ffffff;
}

.bandeiras-produto {
	position: absolute;
	top: 12px;
	left: 0;
	transform: translateX(-35%);
	z-index: 4 !important;
	display: flex;
	flex-direction: column;
}

.bandeiras-produto .bandeira-promocao {
	background: #202020;
	color: #0db5de;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	border: 0;
	box-shadow: none;
	font-size: 11px;
	line-height: 1;
	text-transform: initial;
}

.bandeiras-produto .bandeira-percentual {
	display: block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.bandeiras-produto b {
	font-weight: 700;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
	color: inherit;
}

body .titulo-categoria {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
	padding: 0 !important;
	background: none !important;
	display: flex !important;
	justify-content: center;
	position: relative;
	font-size: initial !important;
}

body .titulo-categoria::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #e8e8e8;
	top: 50%;
	left: 0;
}

body .titulo-categoria strong {
	font-size: 28px;
	font-weight: 700;
	z-index: 1;
	line-height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	padding: 0 16px;
	color: #0db5de;
}

.slick-prev,
.slick-next {
	cursor: pointer;
	position: absolute;
	z-index: 1;
	margin-top: -30px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 5px;
	padding: 5px;
	width: 33px !important;
	height: 43px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border: 1px solid #ececec;
	box-shadow: 0 1px 3px 1px rgb(191 191 191 / 11%);
	font-size: 0;
}

.slick-prev::before,
.slick-next::before {
	font-size: 17px;
	line-height: 1;
	color: #969696;
}

.slick-prev::before {
	content: "\2039";
}

.slick-next::before {
	content: "\203a";
}

.slick-prev {
	left: -25px;
}

.slick-next {
	right: -25px;
}

.slick-dots {
	right: 20px;
	left: inherit;
	position: absolute;
	bottom: 20px;
	display: inline-flex !important;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.slick-dots li {
	margin: 3px;
}

.slick-dots li button {
	background: rgb(220 220 220 / 65%);
	border-radius: 50px;
	font-size: 0;
	display: flex;
	height: 10px;
	width: 10px;
	padding: 0;
	border: 0;
	box-shadow: 0 1px 4px 0 rgb(72 72 72 / 17%);
}

.slick-dots li.slick-active button {
	background: rgb(255 255 255 / 94%);
	width: 20px;
	border-radius: 35px;
	transition: width 0.2s ease-in-out;
}

.woocommerce-products-header {
	margin-bottom: 18px;
}

.home.post-type-archive-product .woocommerce-products-header {
	margin-bottom: 0;
}

.home.post-type-archive-product .sg-shop-page-description {
	margin: 0;
}

.home.post-type-archive-product .sg-shop-page-description > .banners-full:first-child {
	margin-top: 0;
}

#product h1.page-title,
.woocommerce-products-header__title.page-title {
	color: #0db5de;
	font-size: 2.3125rem;
	margin-bottom: 10px;
}

.storefront-sorting,
.woocommerce-ordering,
.woocommerce-result-count {
	display: flex;
	align-items: center;
}

.storefront-sorting {
	gap: 14px;
	margin-bottom: 28px;
}

.woocommerce-result-count {
	color: #6b6b6b;
	font-size: 14px;
}

.woocommerce-ordering {
	margin-left: auto;
}

.woocommerce-ordering select,
.orderby {
	border: 1px solid #e6e6e6;
	border-radius: 999px;
	padding: 10px 42px 10px 16px;
	background-color: #ffffff;
	color: #201f1f;
	min-height: 44px;
}

#billing_first_name_field label .optional,
#billing_last_name_field label .optional {
	display: none;
}

@media (max-width: 1024px) {
	.d-none.d-lg-block,
	.main-navigation-area {
		display: none !important;
	}

	.main-mobile-nav {
		display: block;
	}

	.desktop-menu {
		display: none;
	}

	.banners-full .slick-arrow {
		opacity: 1;
	}

	.listagem-item .acoes-produto {
		display: flex !important;
		position: relative;
		opacity: 1;
		bottom: 0 !important;
		flex-direction: column;
		padding: 5px;
		padding-top: 0;
	}

	.listagem-item .info-produto {
		padding: 7px;
	}

	.listagem-item .info-produto .nome-produto {
		min-height: 32px;
		font-size: 14px;
		line-height: 16px;
	}

	.preco-produto strong {
		font-size: 19px;
		line-height: 19px;
	}

	.qtde-adicionar-carrinho {
		width: 56px !important;
		margin-right: 3px;
		padding: 3px;
	}

	.qtde-adicionar-carrinho .botao-quantidade {
		padding: 3px;
	}

	.qtde-adicionar-carrinho input {
		font-size: 14px;
		width: 20px;
	}

	.slick-prev {
		left: 0 !important;
	}

	.slick-next {
		right: 0 !important;
	}
}

@media (max-width: 767px) {
	.visible-phone {
		display: inherit !important;
	}

	.hidden-phone {
		display: none !important;
	}

	.busca2 {
		padding: 24px 0;
	}

	.busca2-categorias {
		grid-template-columns: 1fr;
	}

	body .titulo-categoria strong {
		font-size: 20px;
		line-height: 20px;
		text-align: center;
		display: inline-block;
	}

	.banners-full .int-mobile,
	.banners-full .int-mobile a {
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.banners-full .int-mobile img {
		display: block;
		width: 130% !important;
		max-width: none !important;
		height: auto;
		object-fit: cover;
		object-position: center;
		margin-left: -15%;
	}

	.banners-full .slick-prev,
	.banners-full .slick-next {
		top: 50% !important;
		transform: translateY(-50%);
		width: 34px;
		height: 42px;
	}

	.banners-full .slick-prev {
		left: 8px !important;
	}

	.banners-full .slick-next {
		right: 8px !important;
	}

	.home.post-type-archive-product .sg-shop-page-description > .banners-full:first-child,
	.home.post-type-archive-product .banners-vantagens-outer {
		margin-right: -12px;
		margin-left: -12px;
	}

	.home.post-type-archive-product .banners-vantagens-outer {
		padding: 12px;
	}

	.home.post-type-archive-product .banners-vantagens {
		width: 100%;
	}

	.home.post-type-archive-product .slickslid-vantagens {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
	}

	.home.post-type-archive-product .vantagem {
		margin: 0;
		min-width: 0;
		align-items: stretch;
		justify-content: stretch;
	}

	.home.post-type-archive-product .vantagem a {
		width: 100%;
		min-height: 100%;
		padding: 8px 6px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 6px;
	}

	.home.post-type-archive-product .vantagem-icone {
		width: 28px;
		height: 28px;
		flex: 0 0 28px;
	}

	.home.post-type-archive-product .vantagem-texto {
		margin-left: 0;
		align-items: center;
		gap: 4px;
	}

	.home.post-type-archive-product .vantagem-texto strong {
		font-size: 12px;
		line-height: 14px;
	}

	.home.post-type-archive-product .vantagem-texto span {
		font-size: 11px;
		line-height: 13px;
	}

	.sg-catalog-skin .site-main ul.products:not(.sg-vitrine-products) {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
		margin: 0;
	}

	.sg-catalog-skin .site-main ul.products:not(.sg-vitrine-products)::before,
	.sg-catalog-skin .site-main ul.products:not(.sg-vitrine-products)::after {
		display: none;
	}

	.sg-catalog-skin .site-main ul.products:not(.sg-vitrine-products) li.product.type-product {
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
	}

	.sg-home-link {
		justify-content: center;
		margin-top: -4px;
	}
}

/* Shared product card skin for the default loop and homepage vitrines. */
.sg-catalog-skin .site-main ul.products li.product.type-product,
.sg-home-section .sg-vitrine-products li.product {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 4px;
	height: 100%;
	padding: 0 0 14px;
	text-align: center;
	transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sg-catalog-skin .site-main ul.products li.product.type-product:hover,
.sg-home-section .sg-vitrine-products li.product:hover {
	border-color: #ececec;
	box-shadow: 0 1px 6px 3px rgb(181 181 181 / 15%);
	transform: translateY(-1px);
}

.sg-catalog-skin .site-main ul.products li.product.type-product > a:first-child,
.sg-home-section .sg-vitrine-products li.product > a:first-child {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	padding: 0;
	text-align: center;
}

.sg-catalog-skin .site-main ul.products li.product.type-product img,
.sg-home-section .sg-vitrine-products li.product img {
	display: block;
	width: auto !important;
	max-width: calc(100% - 2px);
	height: 196px;
	max-height: 196px;
	margin: 0 auto 12px !important;
	object-fit: contain;
	padding: 0;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .woocommerce-loop-product__title,
.sg-home-section .sg-vitrine-products li.product .woocommerce-loop-product__title {
	min-height: 35px;
	margin: 0 18px 14px;
	font-size: 16px;
	line-height: 17px;
	font-weight: 400;
	color: #201f1f;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .star-rating,
.sg-home-section .sg-vitrine-products li.product .star-rating {
	display: none;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .price,
.sg-home-section .sg-vitrine-products li.product .price {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex: 1 0 auto;
	min-height: 55px;
	gap: 4px 6px;
	margin: 0 18px 16px;
	color: #0db5de;
	text-align: center;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .price del,
.sg-home-section .sg-vitrine-products li.product .price del {
	display: inline-flex;
	align-items: baseline;
	margin-right: 6px;
	color: #b7b7b7;
	font-size: 11px;
	line-height: 1;
	opacity: 1;
	text-decoration-thickness: 1px;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .price ins,
.sg-home-section .sg-vitrine-products li.product .price ins {
	background: transparent;
	text-decoration: none;
	display: flex;
	justify-content: center;
	width: auto;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .price .amount,
.sg-home-section .sg-vitrine-products li.product .price .amount {
	color: inherit;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .price ins .amount,
.sg-catalog-skin .site-main ul.products li.product.type-product .price > .amount,
.sg-home-section .sg-vitrine-products li.product .price ins .amount,
.sg-home-section .sg-vitrine-products li.product .price > .amount {
	font-size: 23px;
	line-height: 23px;
	font-weight: 700;
	display: inline-flex;
	justify-content: center;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .button,
.sg-catalog-skin .site-main ul.products li.product.type-product .added_to_cart,
.sg-home-section .sg-vitrine-products li.product .button,
.sg-home-section .sg-vitrine-products li.product .added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: calc(100% - 36px);
	min-height: 41px;
	margin: auto 18px 0;
	padding: 0 10px !important;
	border: 0 !important;
	border-radius: 3px;
	background: #0db5de !important;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-shadow: none !important;
	box-shadow: none !important;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .button + .added_to_cart,
.sg-home-section .sg-vitrine-products li.product .button + .added_to_cart {
	margin-top: 8px;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .button:hover,
.sg-catalog-skin .site-main ul.products li.product.type-product .added_to_cart:hover,
.sg-home-section .sg-vitrine-products li.product .button:hover,
.sg-home-section .sg-vitrine-products li.product .added_to_cart:hover {
	background: #0aa4c8 !important;
	color: #ffffff !important;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .onsale,
.sg-home-section .sg-vitrine-products li.product .onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	right: auto;
	margin: 0;
	transform: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #202020;
	color: #0db5de;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	box-shadow: none;
	z-index: 4;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .onsale .bandeira-promocao,
.sg-home-section .sg-vitrine-products li.product .onsale .bandeira-promocao {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	line-height: 1;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .onsale .bandeira-percentual,
.sg-home-section .sg-vitrine-products li.product .onsale .bandeira-percentual {
	display: block;
	font-size: 11px;
	line-height: 1;
}

.sg-catalog-skin .site-main ul.products li.product.type-product .onsale b,
.sg-home-section .sg-vitrine-products li.product .onsale b {
	display: block;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	.sg-catalog-skin .site-main ul.products li.product.type-product img,
	.sg-home-section .sg-vitrine-products li.product img {
		height: 176px;
		max-height: 176px;
	}

	.sg-catalog-skin .site-main ul.products li.product.type-product .woocommerce-loop-product__title,
	.sg-home-section .sg-vitrine-products li.product .woocommerce-loop-product__title {
		min-height: 32px;
		margin-right: 10px;
		margin-left: 10px;
		font-size: 14px;
		line-height: 16px;
	}

	.sg-catalog-skin .site-main ul.products li.product.type-product .price,
	.sg-home-section .sg-vitrine-products li.product .price {
		margin-right: 10px;
		margin-left: 10px;
	}

	.sg-catalog-skin .site-main ul.products li.product.type-product .price ins .amount,
	.sg-catalog-skin .site-main ul.products li.product.type-product .price > .amount,
	.sg-home-section .sg-vitrine-products li.product .price ins .amount,
	.sg-home-section .sg-vitrine-products li.product .price > .amount {
		font-size: 19px;
		line-height: 19px;
	}

	.sg-catalog-skin .site-main ul.products li.product.type-product .button,
	.sg-catalog-skin .site-main ul.products li.product.type-product .added_to_cart,
	.sg-home-section .sg-vitrine-products li.product .button,
	.sg-home-section .sg-vitrine-products li.product .added_to_cart {
		width: calc(100% - 20px);
		margin-right: 10px;
		margin-left: 10px;
		font-size: 15px;
	}
}
