:root {
	--sg-black: #070707;
	--sg-dark: #111111;
	--sg-gray: #f4f4f4;
	--sg-gray-2: #e8e8e8;
	--sg-white: #ffffff;
	--sg-red: #e21b2d;
	--sg-red-dark: #b91020;
	--sg-text: #1e1e1e;
	--sg-muted: #666666;
	--sg-radius: 18px;
	--sg-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--sg-white);
	color: var(--sg-text);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.sg-container {
	width: min(1260px, calc(100% - 32px));
	margin: 0 auto;
}

.sg-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--sg-black);
	color: var(--sg-white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.sg-header__inner {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 82px;
}

.sg-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.sg-brand__mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 2px solid var(--sg-white);
	border-radius: 50%;
}

.sg-brand__text {
	font-size: 18px;
	letter-spacing: 0.02em;
}

.sg-nav {
	flex: 1;
}

.sg-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 700;
}

.sg-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sg-search {
	display: flex;
	align-items: center;
	background: var(--sg-white);
	border-radius: 999px;
	overflow: hidden;
	min-width: 260px;
}

.sg-search input[type="search"] {
	width: 100%;
	border: 0;
	padding: 12px 14px;
	outline: none;
}

.sg-search button,
.sg-whatsapp,
.sg-cart,
.sg-btn {
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
}

.sg-search button {
	padding: 12px 15px;
	background: var(--sg-red);
	color: var(--sg-white);
}

.sg-whatsapp,
.sg-cart {
	padding: 11px 14px;
	background: #1f1f1f;
	color: var(--sg-white);
	font-size: 13px;
}

.sg-cart span {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	margin-left: 6px;
	border-radius: 999px;
	background: var(--sg-red);
}

.sg-main {
	min-height: 60vh;
}

.sg-hero {
	background:
		radial-gradient(circle at 80% 10%, rgba(226, 27, 45, 0.22), transparent 32%),
		linear-gradient(135deg, #080808 0%, #151515 55%, #2a0b10 100%);
	color: var(--sg-white);
	padding: 84px 0 76px;
	overflow: hidden;
}

.sg-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 44px;
}

.sg-kicker {
	margin: 0 0 12px;
	color: var(--sg-red);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sg-hero h1 {
	margin: 0;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.sg-hero p:not(.sg-kicker) {
	max-width: 560px;
	font-size: 19px;
	line-height: 1.6;
	color: #d8d8d8;
}

.sg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.sg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 22px;
	transition: 0.2s ease;
}

.sg-icon {
	display: block;
	width: 1em;
	height: 1em;
}

.sg-icon--stroke {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sg-icon--fill {
	fill: currentColor;
	stroke: none;
}

.sg-btn--primary {
	background: var(--sg-red);
	color: var(--sg-white);
}

.sg-btn--primary:hover {
	background: var(--sg-red-dark);
}

.sg-btn--secondary {
	background: var(--sg-white);
	color: var(--sg-black);
}

.sg-hero__visual {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.sg-hero__card {
	min-height: 150px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--sg-radius);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: var(--sg-shadow);
	font-size: 24px;
	font-weight: 900;
}

.sg-hero__card:first-child {
	grid-column: span 2;
	min-height: 220px;
	background: linear-gradient(135deg, rgba(226, 27, 45, 0.8), rgba(255, 255, 255, 0.08));
}

.sg-section {
	padding: 72px 0;
}

.sg-section--gray {
	background: var(--sg-gray);
}

.sg-section__header {
	max-width: 720px;
	margin-bottom: 30px;
}

.sg-section__header h2,
.sg-support h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: -0.03em;
}

.sg-category-grid,
.sg-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.sg-category-card,
.sg-product-card,
.woocommerce ul.products li.product {
	border-radius: var(--sg-radius);
	background: var(--sg-white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sg-category-card {
	min-height: 132px;
	padding: 24px;
	font-size: 20px;
	font-weight: 900;
	border: 1px solid var(--sg-gray-2);
}

.sg-product-card {
	min-height: 220px;
	padding: 22px;
	font-weight: 800;
}

.woocommerce ul.products li.product {
	padding: 18px !important;
}

.woocommerce ul.products li.product .button {
	border-radius: 999px;
	background: var(--sg-red);
	color: var(--sg-white);
	font-weight: 800;
}

.woocommerce ul.products li.product .price {
	color: var(--sg-red);
	font-weight: 900;
}

.sg-support {
	padding: 72px 0;
	background: var(--sg-black);
	color: var(--sg-white);
}

.sg-support__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.sg-support p {
	max-width: 520px;
	color: #d8d8d8;
	font-size: 18px;
}

.sg-footer {
	padding: 44px 0 18px;
	background:
		radial-gradient(circle at 8% 0, rgba(255, 255, 255, 0.07), transparent 27%),
		linear-gradient(180deg, #0d0d0d 0%, #020202 100%);
	color: var(--sg-white);
	text-align: left;
}

.sg-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr 1.25fr 0.85fr 1fr 1.05fr;
	gap: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sg-footer__brand,
.sg-footer__col {
	min-width: 0;
}

.sg-footer__logo {
	display: inline-flex;
	align-items: flex-end;
	gap: 11px;
	margin-bottom: 15px;
	color: #ffffff;
}

.sg-footer__logo img {
	width: 96px;
	flex: 0 0 auto;
}

.sg-footer__logo-text {
	display: grid;
	gap: 1px;
	padding-bottom: 7px;
	font-size: 16px;
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.sg-footer__logo-text span:last-child {
	letter-spacing: 0.1em;
}

.sg-footer__brand p {
	max-width: 270px;
	margin: 0 0 17px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	line-height: 1.48;
}

.sg-footer__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sg-footer__social a,
.sg-footer__social span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	color: #ffffff;
}

.sg-footer__social a {
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sg-footer__social a:hover {
	border-color: var(--sg-red);
	color: var(--sg-red);
	transform: translateY(-2px);
}

.sg-footer__col h2 {
	margin: 0 0 15px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.sg-footer__col ul {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sg-footer__col a,
.sg-footer__col li,
.sg-footer__contact span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	line-height: 1.38;
}

.sg-footer__col a {
	transition: color 0.2s ease;
}

.sg-footer__col a:hover {
	color: #ffffff;
}

.sg-footer__contact li {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.sg-footer__icon {
	width: 18px;
	height: 18px;
	color: currentColor;
}

.sg-footer__contact .sg-footer__icon {
	margin-top: 1px;
	color: #ffffff;
}

.sg-footer__icon.sg-icon--stroke {
	stroke-width: 1.8;
}

.sg-footer__icon.sg-icon--fill {
	fill: currentColor;
	stroke: none;
}

.sg-footer__payments-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(56px, 1fr));
	gap: 10px;
	max-width: 218px;
}

.sg-footer__payment {
	display: grid;
	place-items: center;
	min-height: 38px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
}

.sg-footer__payment img {
	max-width: 54px;
	max-height: 24px;
	object-fit: contain;
}

.sg-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 16px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	line-height: 1.35;
}

.sg-footer__heart {
	color: var(--sg-red);
}

@media (max-width: 1100px) {
	.sg-footer__grid {
		grid-template-columns: 1.3fr 1.1fr 0.9fr;
	}
}

@media (max-width: 760px) {
	.sg-footer {
		padding-top: 34px;
	}

	.sg-footer__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.sg-footer__brand p {
		max-width: none;
	}

	.sg-footer__payments-list {
		grid-template-columns: repeat(3, 64px);
	}

	.sg-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 980px) {
	.sg-header__inner,
	.sg-header__actions,
	.sg-support__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.sg-nav__list {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.sg-search {
		min-width: 100%;
	}

	.sg-hero__grid,
	.sg-category-grid,
	.sg-product-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 620px) {
	.sg-hero {
		padding: 54px 0;
	}

	.sg-hero__grid,
	.sg-category-grid,
	.sg-product-grid {
		grid-template-columns: 1fr;
	}

	.sg-hero__card:first-child {
		grid-column: auto;
	}
}

/* Refinamento visual - etapa 2 */
.sg-header {
	background: #020202;
}

.sg-header__inner {
	min-height: 96px;
}

.sg-nav__list a {
	position: relative;
	padding: 8px 0;
	color: #f5f5f5;
}

.sg-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	border-radius: 999px;
	background: var(--sg-red);
	transition: width 0.2s ease;
}

.sg-nav__list a:hover::after {
	width: 100%;
}

.sg-brand__mark {
	font-size: 16px;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.sg-brand__text {
	font-size: 21px;
}

.sg-hero {
	padding: 96px 0 92px;
	background:
		radial-gradient(circle at 74% 24%, rgba(226, 27, 45, 0.34), transparent 24%),
		linear-gradient(90deg, #050505 0%, #111111 48%, #310710 100%);
}

.sg-hero__badges {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 640px;
	margin-top: 24px;
}

.sg-hero__badges span {
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #f2f2f2;
	font-size: 13px;
	font-weight: 800;
}

.sg-hero__visual {
	position: relative;
	min-height: 420px;
	display: block;
}

.sg-part {
	position: absolute;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sg-part::before {
	content: "";
	display: block;
	width: 58px;
	height: 58px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: radial-gradient(circle, #fff 0 8%, #e21b2d 9% 34%, #111 35% 100%);
}

.sg-part--battery {
	left: 3%;
	top: 4%;
	width: 46%;
	height: 190px;
	background: linear-gradient(145deg, #b71425, #351017);
}

.sg-part--tire {
	right: 5%;
	top: 12%;
	width: 32%;
	height: 150px;
}

.sg-part--brake {
	left: 18%;
	bottom: 8%;
	width: 30%;
	height: 140px;
}

.sg-part--controller {
	right: 17%;
	bottom: 0;
	width: 35%;
	height: 150px;
}

.sg-part--charger {
	right: 0;
	bottom: 32%;
	width: 26%;
	height: 118px;
	background: linear-gradient(145deg, #1b1b1b, #4c1118);
}

.sg-section {
	padding: 64px 0;
}

.sg-category-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	min-height: 168px;
	padding: 24px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sg-category-card::before {
	content: "";
	position: absolute;
	right: -26px;
	top: -26px;
	width: 110px;
	height: 110px;
	border-radius: 999px;
	background: rgba(226, 27, 45, 0.09);
}

.sg-category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

.sg-support {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.74)),
		linear-gradient(135deg, #101010, #300711);
}

@media (max-width: 980px) {
	.sg-hero__visual {
		min-height: 360px;
	}

	.sg-hero__badges {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.sg-hero__visual {
		min-height: auto;
	display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.sg-part {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: 100%;
		height: 120px;
	}
}

/* Refinamento visual - etapa 3: pecas estilizadas */
.sg-hero__visual {
	filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
}

.sg-part {
	place-items: end center;
	padding: 18px;
	font-size: 13px;
}

.sg-part span {
	position: relative;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.72);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.sg-part::before,
.sg-part::after {
	content: "";
	position: absolute;
	display: block;
}

.sg-part--battery {
	left: 0;
	top: 5%;
	width: 40%;
	height: 178px;
	border-radius: 22px;
	background: linear-gradient(145deg, #131313, #050505);
}

.sg-part--battery::before {
	left: 13%;
	top: 28%;
	width: 70%;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(180deg, #111, #272727);
	border: 2px solid #3a3a3a;
	box-shadow: inset 0 0 0 8px #070707;
}

.sg-part--battery::after {
	right: 10%;
	top: 22%;
	width: 38px;
	height: 20px;
	border-top: 4px solid var(--sg-red);
	border-right: 4px solid var(--sg-red);
	border-radius: 0 12px 0 0;
}

.sg-part--tire {
	right: 5%;
	top: 11%;
	width: 30%;
	height: 156px;
	background: rgba(255, 255, 255, 0.07);
}

.sg-part--tire::before {
	left: 50%;
	top: 42%;
	width: 86px;
	height: 86px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, transparent 0 34%, #161616 35% 50%, #303030 51% 67%, #0b0b0b 68% 100%);
	border: 5px solid #090909;
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05), inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.sg-part--brake {
	left: 12%;
	bottom: 9%;
	width: 28%;
	height: 145px;
	background: rgba(255, 255, 255, 0.08);
}

.sg-part--brake::before {
	left: 50%;
	top: 42%;
	width: 78px;
	height: 78px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, #e21b2d 0 8%, #d6d6d6 9% 18%, #3b3b3b 19% 24%, #cfcfcf 25% 100%);
	box-shadow: inset 0 0 0 8px #151515;
}

.sg-part--brake::after {
	right: 18%;
	top: 30%;
	width: 42px;
	height: 26px;
	border-radius: 8px;
	background: var(--sg-red);
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.28);
}

.sg-part--controller {
	right: 17%;
	bottom: 4%;
	width: 35%;
	height: 152px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(66, 66, 66, 0.11));
}

.sg-part--controller::before {
	left: 14%;
	top: 30%;
	width: 72%;
	height: 48px;
	border-radius: 10px;
	background: linear-gradient(180deg, #d8d8d8, #858585);
	box-shadow: inset 0 0 0 4px #bababa;
}

.sg-part--controller::after {
	left: 15%;
	top: 68%;
	width: 72%;
	height: 3px;
	background: repeating-linear-gradient(90deg, #e21b2d 0 16px, #111 16px 28px, #f6c600 28px 40px);
}

.sg-part--charger {
	right: 0;
	bottom: 31%;
	width: 25%;
	height: 118px;
	background: linear-gradient(145deg, #171717, #050505);
}

.sg-part--charger::before {
	left: 20%;
	top: 28%;
	width: 62%;
	height: 34px;
	border-radius: 9px;
	background: #101010;
	border: 2px solid #333;
}

.sg-part--charger::after {
	right: 12%;
	top: 28%;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.15);
	border-left-color: var(--sg-red);
}

.sg-category-grid {
	margin-top: 20px;
}

.sg-category-card {
	min-height: 150px;
	background: linear-gradient(180deg, #ffffff, #fbfbfb);
}

.sg-category-card::after {
	content: "Ver pecas";
	position: absolute;
	left: 24px;
	bottom: 22px;
	color: var(--sg-red);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transform: translateY(26px);
	opacity: 0;
	transition: 0.2s ease;
}

.sg-category-card:hover::after {
	transform: translateY(0);
	opacity: 1;
}

/* Refinamento visual - etapa 4: header fiel ao mockup */
.sg-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background:
		radial-gradient(circle at center, rgba(35, 35, 35, 0.75) 0%, rgba(0, 0, 0, 0) 58%),
		linear-gradient(180deg, #020202 0%, #000000 100%);
	color: var(--sg-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.sg-header__inner {
	display: grid;
	grid-template-columns: auto minmax(320px, 1fr) auto;
	align-items: center;
	gap: 34px;
	min-height: 94px;
	padding: 0;
}

.sg-brand {
	display: inline-flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 10px;
	color: var(--sg-white);
	text-decoration: none;
}

.sg-brand__image {
	display: block;
	height: 58px;
	width: auto;
	max-width: 104px;
	object-fit: contain;
}

.sg-brand__name {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
	font-size: 19px;
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	transform: translateY(-8px);
}

.sg-brand__name > span {
	display: block;
}

.sg-brand__name > span:last-child {
	letter-spacing: 0.105em;
}

.sg-header__center {
	width: 100%;
	padding-left: 44px;
}

.sg-search {
	width: 100%;
	min-width: 0;
	height: 40px;
	padding-left: 18px;
	background: #ffffff;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.sg-search input[type="search"] {
	padding: 0;
	background: transparent;
	color: #2a2a2a;
	font-size: 14px;
}

.sg-search input[type="search"]::placeholder {
	color: #909090;
}

.sg-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 40px;
	padding: 0;
	background: transparent;
	color: #111111;
}

.sg-search button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sg-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}

.sg-header-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	background: transparent;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.sg-header-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.sg-header-link__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sg-header-link--whatsapp .sg-header-link__icon {
	width: 30px;
	height: 30px;
	flex-basis: 30px;
}

.sg-header-link--whatsapp .sg-header-link__icon svg {
	width: 30px;
	height: 30px;
	fill: #ffffff;
	stroke: none;
}

.sg-header-link--account .sg-header-link__icon {
	width: 30px;
	height: 30px;
	flex-basis: 30px;
}

.sg-header-link--account .sg-header-link__icon svg {
	width: 30px;
	height: 30px;
	stroke-width: 1.9;
}

.sg-header-link--cart .sg-header-link__icon {
	width: 30px;
	height: 30px;
	flex-basis: 30px;
}

.sg-header-link--cart .sg-header-link__icon svg {
	width: 30px;
	height: 30px;
	stroke-width: 1.9;
}

.sg-header-link--cart .sg-header-link__icon svg.sg-icon--fill {
	fill: #ffffff;
	stroke: none;
}

.sg-cart-count {
	position: absolute;
	top: -10px;
	left: 21px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--sg-red);
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
}

.sg-cart span,
.sg-header-link--cart span:not(.sg-cart-count) {
	background: transparent;
}

.sg-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	cursor: pointer;
}

.sg-menu-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.sg-nav__mobile-actions {
	display: none;
}

.sg-nav {
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: linear-gradient(180deg, rgba(20, 20, 20, 0.96) 0%, rgba(8, 8, 8, 0.98) 100%);
}

.sg-nav__list {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.sg-nav__list > li {
	position: relative;
	margin: 0;
}

.sg-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 0 24px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
}

.sg-nav__list > .current-menu-item > a,
.sg-nav__list > .current_page_item > a {
	color: var(--sg-red);
}

.sg-nav__list > .current-menu-item::after,
.sg-nav__list > .current_page_item::after {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 0;
	height: 3px;
	background: var(--sg-red);
	border-radius: 999px;
}

.sg-nav__list > .menu-item-has-children > a::after {
	content: "▼";
	display: inline-block;
	position: static;
	left: auto;
	right: auto;
	bottom: auto;
	width: auto;
	height: auto;
	margin-left: 8px;
	background: none;
	border-radius: 0;
	font-size: 10px;
	transform: translateY(-1px);
	transition: none;
}

@media (max-width: 1180px) {
	.sg-header__inner {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 18px 0;
	}

	.sg-header__center {
		padding-left: 0;
	}

	.sg-brand,
	.sg-brand--logo {
		justify-content: center;
	}

	.sg-header__actions {
		justify-content: center;
		flex-wrap: wrap;
	}

	.sg-nav__list {
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: thin;
	}
}

@media (max-width: 640px) {
	.sg-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"brand actions"
			"search search";
		align-items: center;
		gap: 12px 14px;
		width: 100%;
		padding: 14px 16px 12px;
	}

	.sg-brand {
		grid-area: brand;
		justify-content: flex-start;
		min-width: 0;
	}

	.sg-brand__image {
		height: 44px;
		max-width: 82px;
	}

	body.woocommerce .sg-brand__image,
	body.woocommerce-page .sg-brand__image {
		height: 44px;
		max-width: 82px;
	}

	.sg-brand__name {
		font-size: 15px;
		transform: translateY(-5px);
	}

	.sg-header__center {
		grid-area: search;
		padding-left: 0;
	}

	.sg-search {
		height: 44px;
		padding-left: 18px;
	}

	.sg-search button {
		width: 48px;
		height: 44px;
	}

	.sg-header__actions {
		grid-area: actions;
		align-items: center;
		justify-content: flex-end;
		flex-direction: row;
		gap: 9px;
		flex-wrap: nowrap;
	}

	.sg-header-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		font-size: 0;
	}

	.sg-header-link > span:not(.sg-header-link__icon):not(.sg-cart-count) {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.sg-header-link--whatsapp,
	.sg-header-link--account {
		display: inline-flex;
	}

	.sg-header-link--cart {
		min-height: 34px;
	}

	.sg-header-link__icon,
	.sg-header-link--whatsapp .sg-header-link__icon,
	.sg-header-link--account .sg-header-link__icon,
	.sg-header-link--cart .sg-header-link__icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
	}

	.sg-header-link__icon svg,
	.sg-header-link--whatsapp .sg-header-link__icon svg,
	.sg-header-link--account .sg-header-link__icon svg,
	.sg-header-link--cart .sg-header-link__icon svg {
		width: 27px;
		height: 27px;
	}

	.sg-cart-count {
		top: -5px;
		left: 20px;
		min-width: 16px;
		height: 16px;
		font-size: 10px;
	}

	.sg-menu-toggle {
		display: none;
	}

	.sg-nav {
		display: block;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(5, 5, 5, 0.99) 100%);
	}

	.sg-nav__list {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
		padding: 0 16px;
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: thin;
	}

	.sg-nav__list > li > a {
		display: inline-flex;
		height: 50px;
		min-height: 0;
		padding: 0 16px;
		border-bottom: 0;
		font-size: 15px;
		font-weight: 700;
	}

	.sg-nav__list > .current-menu-item::after,
	.sg-nav__list > .current_page_item::after {
		display: block;
		left: 16px;
		right: 16px;
	}

	.sg-nav__mobile-actions {
		display: none;
	}
}

/* Refinamento visual - etapa 5: hero com assets reais do mockup */
.sg-hero {
	position: relative;
	padding: 78px 0 82px;
	background:
		radial-gradient(circle at 72% 22%, rgba(226, 27, 45, 0.36), transparent 28%),
		radial-gradient(circle at 90% 72%, rgba(226, 27, 45, 0.18), transparent 25%),
		linear-gradient(90deg, #050505 0%, #111111 48%, #350710 100%);
}

.sg-hero__grid {
	position: relative;
	grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
	min-height: 520px;
	gap: 28px;
}

.sg-hero__content {
	position: relative;
	z-index: 4;
	max-width: 610px;
	padding-top: 20px;
}

.sg-hero h1 {
	max-width: 640px;
	font-size: clamp(42px, 5.4vw, 70px);
	line-height: 0.98;
}

.sg-hero h1 span {
	display: block;
	color: #ffffff;
}

.sg-hero p:not(.sg-kicker) {
	max-width: 520px;
	margin-top: 20px;
}

.sg-hero__badges {
	grid-template-columns: 1fr;
	max-width: 460px;
}

.sg-hero__badges span {
	width: fit-content;
	max-width: 100%;
}

.sg-hero-assets {
	position: relative;
	z-index: 3;
	min-height: 520px;
	display: block;
	filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.5));
}

.sg-hero-asset {
	display: none;
	position: absolute;
	margin: 0;
	line-height: 0;
}

.sg-hero-asset img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.sg-hero-asset--battery,
.sg-hero-asset--tire,
.sg-hero-asset--controller,
.sg-hero-asset--brake,
.sg-hero-asset--charger {
	display: block;
}

.sg-hero-asset--battery {
	top: 0;
	right: 6%;
	width: min(390px, 58%);
	z-index: 5;
}

.sg-hero-asset--tire {
	right: 4%;
	bottom: -22px;
	width: min(390px, 54%);
	z-index: 4;
}

.sg-hero-asset--controller {
	left: 2%;
	top: 112px;
	width: min(260px, 36%);
	z-index: 3;
	opacity: 0.96;
}

.sg-hero-asset--brake {
	left: 8%;
	bottom: 80px;
	width: min(210px, 30%);
	z-index: 2;
	opacity: 0.92;
}

.sg-hero-asset--charger {
	right: 2%;
	top: 252px;
	width: min(170px, 24%);
	z-index: 6;
	opacity: 0.94;
}

.sg-category-grid--assets {
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 12px;
	margin-top: 0;
}

.sg-category-grid--assets .sg-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	min-height: 154px;
	padding: 14px 10px 16px;
	border-radius: 12px;
	text-align: center;
}

.sg-category-grid--assets .sg-category-card::before,
.sg-category-grid--assets .sg-category-card::after {
	display: none;
}

.sg-category-grid--assets .sg-category-card img {
	order: 0;
	width: 86px;
	height: 84px;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.16));
}

.sg-category-grid--assets .sg-category-card span {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.12;
}

#categorias.sg-section {
	padding: 22px 0 42px;
}

#produtos.sg-section {
	padding: 34px 0 24px;
}

#produtos.sg-section--gray {
	background: #ffffff;
}

#produtos .sg-section__header--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	max-width: none;
	margin-bottom: 18px;
}

#produtos .sg-section__header h2 {
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: 0;
}

.sg-section__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--sg-red);
	font-size: 14px;
	font-weight: 900;
}

.sg-section__link::after {
	content: "\2192";
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-1px);
}

.sg-products-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.sg-product-card {
	display: flex;
	flex-direction: column;
	min-height: 334px;
	padding: 16px 14px 14px;
	border: 1px solid var(--sg-gray-2);
	border-radius: 10px;
	background: var(--sg-white);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-weight: 400;
}

.sg-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 148px;
	margin-bottom: 12px;
}

.sg-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sg-product-card__title {
	min-height: 42px;
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: 0;
}

.sg-product-card__meta {
	display: -webkit-box;
	min-height: 36px;
	margin: 0 0 10px;
	overflow: hidden;
	color: #343434;
	font-size: 11.8px;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sg-product-card__price {
	margin: auto 0 12px;
	color: #111111;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
}

.sg-product-card__price .amount {
	color: inherit;
}

.sg-product-card__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.sg-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	min-height: 34px;
	gap: 5px;
	padding: 8px 7px;
	border: 1px solid #cfcfcf;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 750;
	line-height: 1;
	white-space: nowrap;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.sg-product-card__button--buy {
	order: 1;
	position: relative;
	border-color: var(--sg-red);
	background: var(--sg-red);
	color: #ffffff;
	font-size: 11.5px;
}

.sg-product-card__button--buy span,
.sg-product-card__button--buy .sg-product-card__button-icon {
	color: #ffffff;
}

.sg-product-card__button--buy .sg-product-card__button-icon {
	width: 23px;
	height: 23px;
	flex: 0 0 23px;
}

.sg-product-card__button--buy .sg-product-card__button-icon.sg-icon--stroke {
	fill: none;
	stroke: #ffffff;
	stroke-width: 2.35;
}

.sg-product-card__button--buy .sg-product-card__button-icon.sg-icon--fill,
.sg-product-card__button--buy .sg-product-card__button-icon.sg-icon--fill * {
	fill: #ffffff;
	stroke: none;
}

.sg-product-card__button--buy.loading {
	opacity: 0.62;
	cursor: wait;
}

a.button.sg-product-card__button.sg-product-card__button--buy.added::after,
.woocommerce a.button.sg-product-card__button.sg-product-card__button--buy.added::after,
.sg-product-card__button--buy.added::after {
	content: "";
	position: static;
	display: block;
	flex: 0 0 8px;
	width: 8px;
	height: 13px;
	margin: 0 0 2px 1px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	font-family: inherit;
	line-height: 1;
	transform: rotate(42deg);
	box-sizing: border-box;
}

.sg-product-card__button--whatsapp {
	order: 2;
	background: #ffffff;
	color: #111111;
}

.sg-product-card__actions .added_to_cart.wc-forward {
	order: 3;
	grid-column: 1 / -1;
	color: var(--sg-red);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.2;
}

.sg-product-card__button--whatsapp .sg-product-card__button-icon {
	width: 23px;
	height: 23px;
	flex-basis: 23px;
}

.sg-product-card__button-icon {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
}

.sg-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0 auto 14px;
	padding: 16px 14px;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	background: #f9f9f9;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
	font-family: Inter, Arial, Helvetica, sans-serif;
}

.sg-trust-strip > div {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 12px;
	row-gap: 3px;
	min-height: 64px;
	padding: 0 20px;
}

.sg-trust-strip > div:not(:last-child) {
	border-right: 1px solid #dddddd;
}

.sg-trust-strip > div::before {
	content: "";
	grid-row: 1 / 3;
	display: block;
	width: 44px;
	height: 44px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.sg-trust-strip > div:nth-child(1)::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000000' fill-rule='evenodd' clip-rule='evenodd' d='M12 2.25c-3.8 0-6.88 3.02-6.88 6.74 0 4.96 5.45 10.92 6.4 11.91.26.27.7.27.96 0 .95-.99 6.4-6.95 6.4-11.91 0-3.72-3.08-6.74-6.88-6.74Zm0 9.6a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8Z'/%3E%3C/svg%3E");
	background-size: 39px 39px;
}

.sg-trust-strip > div:nth-child(2)::before {
	background-image: url("../img/icons/suporte.png");
}

.sg-trust-strip > div:nth-child(3)::before {
	background-image: url("../img/icons/envio.png");
}

.sg-trust-strip > div:nth-child(4)::before {
	background-image: url("../img/icons/seguranca.png");
}

.sg-trust-strip strong,
.sg-trust-strip span {
	display: block;
	grid-column: 2;
	min-width: 0;
}

.sg-trust-strip strong {
	margin-bottom: 4px;
	color: #111111;
	font-size: 13.5px;
	font-weight: 800;
	line-height: 1.15;
}

.sg-trust-strip span {
	color: #222222;
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.3;
	max-width: 170px;
}

.sg-support--asset {
	padding: 0 0 32px;
	background: #ffffff;
	color: #ffffff;
}

.sg-support--asset .sg-support__inner {
	display: grid;
	grid-template-columns: 350px minmax(0, 1fr) 260px;
	align-items: stretch;
	gap: 0;
	min-height: 164px;
	overflow: hidden;
	border-radius: 12px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.84)),
		linear-gradient(135deg, #111111, #26060b);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.sg-support--asset .sg-support__media {
	min-height: 164px;
}

.sg-support--asset .sg-support__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sg-support--asset .sg-support__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 24px 26px 22px;
}

.sg-support--asset h2 {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0;
}

.sg-support--asset p {
	max-width: 520px;
	margin: 0;
	color: #f0f0f0;
	font-size: 15px;
	line-height: 1.4;
}

.sg-support__tags {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.sg-support__tags > span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 30px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.15;
}

.sg-support__tag-icon {
	width: 25px;
	height: 25px;
	margin-right: 8px;
	flex: 0 0 25px;
	color: var(--sg-red);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sg-support--asset .sg-support__actions {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	padding: 26px 28px 26px 0;
}

.sg-support--asset .sg-btn {
	min-height: 46px;
	width: 100%;
	padding: 12px 20px;
	gap: 10px;
	border-radius: 7px;
	font-size: 15px;
	font-weight: 800;
}

.sg-support--asset .sg-btn span {
	white-space: nowrap;
}

.sg-support--asset .sg-btn__icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: currentColor;
}

.sg-support--asset .sg-btn__icon.sg-icon--stroke {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.sg-support--asset .sg-btn__icon.sg-icon--fill {
	fill: currentColor;
	stroke: none;
}

.sg-support--asset .sg-btn--secondary {
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: transparent;
	color: #ffffff;
}

/* WooCommerce - pagina de produto */
body.single-product .sg-main {
	background: #ffffff;
}

body.woocommerce .sg-brand__image,
body.woocommerce-page .sg-brand__image {
	width: auto;
	height: 58px;
	max-width: 104px;
}

body.woocommerce .sg-footer__logo img,
body.woocommerce-page .sg-footer__logo img {
	width: 96px;
	height: auto;
	max-width: 96px;
}

.sg-woo-page {
	padding: 34px 0 56px;
	font-family: Inter, Arial, Helvetica, sans-serif;
}

.sg-woo-page .woocommerce-breadcrumb {
	margin: 0 0 22px;
	color: #6d6d6d;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.sg-woo-page .woocommerce-breadcrumb a {
	color: #111111;
	font-weight: 700;
}

.single-product .sg-woo-page div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	gap: 32px;
	align-items: start;
	margin: 0;
}

.single-product.woocommerce div.product div.images,
.single-product.woocommerce-page div.product div.images,
.single-product.woocommerce div.product div.summary,
.single-product.woocommerce-page div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}

.single-product .woocommerce-product-gallery {
	opacity: 1 !important;
	padding: 30px;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

.single-product .woocommerce-product-gallery__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
}

.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.single-product .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	max-height: 460px;
	object-fit: contain;
}

.single-product .summary.entry-summary {
	padding: 32px;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	background: #fbfbfb;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.single-product .product_title.entry-title {
	margin: 0 0 14px;
	color: #111111;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0;
}

.single-product div.product p.price,
.single-product div.product span.price {
	margin: 0 0 18px;
	color: var(--sg-red);
	font-size: 27px;
	font-weight: 850;
	line-height: 1;
}

.single-product div.product p.price .amount,
.single-product div.product span.price .amount {
	color: inherit;
	font-weight: inherit;
}

.single-product .woocommerce-product-details__short-description {
	margin: 0 0 18px;
	color: #303030;
	font-size: 16px;
	line-height: 1.55;
}

.single-product .woocommerce-product-details__short-description p {
	margin: 0;
}

.single-product .stock {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	margin: 0 0 18px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(226, 27, 45, 0.08);
	color: #111111;
	font-size: 13px;
	font-weight: 800;
}

.single-product div.product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
	padding: 18px 0 0;
	border-top: 1px solid #e5e5e5;
}

.single-product div.product form.cart div.quantity {
	float: none;
	margin: 0;
}

.single-product .quantity .qty {
	width: 76px;
	height: 46px;
	border: 1px solid #d4d4d4;
	border-radius: 7px;
	background: #ffffff;
	color: #111111;
	font-size: 16px;
	font-weight: 800;
	text-align: center;
}

.single-product div.product form.cart .button.single_add_to_cart_button {
	display: inline-flex;
	float: none;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 24px;
	border: 1px solid var(--sg-red);
	border-radius: 7px;
	background: var(--sg-red);
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.single-product div.product form.cart .button.single_add_to_cart_button:hover {
	border-color: var(--sg-red-dark);
	background: var(--sg-red-dark);
	transform: translateY(-1px);
}

.single-product .product_meta {
	display: grid;
	gap: 8px;
	margin-top: 0;
	padding-top: 18px;
	border-top: 1px solid #e5e5e5;
	color: #555555;
	font-size: 13px;
	line-height: 1.35;
}

.single-product .product_meta > span {
	display: block;
}

.single-product .product_meta .sku,
.single-product .product_meta a {
	color: #111111;
	font-weight: 800;
}

.single-product .product_meta a {
	border-bottom: 1px solid rgba(226, 27, 45, 0.35);
}

.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 26px;
	padding: 28px;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 22px;
	padding: 0;
	border: 0;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 1px solid #dcdcdc;
	border-radius: 999px;
	background: #ffffff;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 10px 16px;
	color: #111111;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-color: #111111;
	background: #111111;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #ffffff;
}

.single-product .woocommerce-Tabs-panel h2,
.single-product .related.products > h2 {
	margin: 0 0 16px;
	color: #111111;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
}

.single-product .woocommerce-Tabs-panel {
	color: #2f2f2f;
	font-size: 15px;
	line-height: 1.6;
}

.single-product .woocommerce-Tabs-panel p {
	margin: 0 0 14px;
}

.single-product #reviews input[type="text"],
.single-product #reviews input[type="email"],
.single-product #reviews textarea,
.single-product #reviews select {
	width: 100%;
	border: 1px solid #d8d8d8;
	border-radius: 7px;
	background: #ffffff;
	color: #111111;
	font: inherit;
}

.single-product #reviews input[type="text"],
.single-product #reviews input[type="email"],
.single-product #reviews select {
	min-height: 42px;
	padding: 9px 11px;
}

.single-product #reviews textarea {
	min-height: 120px;
	padding: 11px;
	resize: vertical;
}

.single-product #reviews .submit {
	min-height: 42px;
	padding: 11px 20px;
	border: 0;
	border-radius: 7px;
	background: var(--sg-red);
	color: #ffffff;
	font-weight: 800;
	cursor: pointer;
}

.single-product .related.products {
	grid-column: 1 / -1;
	margin-top: 28px;
}

.single-product .related.products ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	margin: 0;
}

.single-product .related.products ul.products::before,
.single-product .related.products ul.products::after {
	display: none;
}

.single-product .related.products ul.products li.product {
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	min-height: 318px;
	margin: 0;
	padding: 16px;
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.single-product .related.products li.product img {
	width: 100%;
	height: 168px;
	margin: 0 0 12px;
	object-fit: contain;
}

.single-product .related.products .woocommerce-loop-product__title {
	min-height: 38px;
	padding: 0;
	margin: 0 0 8px;
	color: #111111;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.15;
}

.single-product .related.products li.product .price {
	margin: auto 0 12px;
	color: #111111;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
}

.single-product .related.products li.product .price .amount {
	color: inherit;
}

.single-product .related.products li.product .button {
	align-self: center;
	min-height: 34px;
	margin: 0;
	padding: 9px 18px;
	border-radius: 5px;
	background: var(--sg-red);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.single-product .related.products li.product .button:hover {
	background: var(--sg-red-dark);
}

@media (max-width: 1180px) {
	.sg-category-grid--assets {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.sg-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sg-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 16px;
	}

	.sg-trust-strip > div:nth-child(2) {
		border-right: 0;
	}

	.sg-support--asset .sg-support__inner {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.sg-support--asset .sg-support__actions {
		grid-column: 1 / -1;
		flex-direction: row;
		padding: 0 24px 24px;
	}

	.sg-hero__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.sg-hero__content {
		padding-top: 0;
	}

	.sg-hero-assets {
		min-height: 460px;
	}
}

@media (max-width: 760px) {
	.sg-hero {
		padding: 54px 0 64px;
	}

	.sg-category-grid--assets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sg-products-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	#produtos .sg-product-card {
		min-height: 0;
		padding: 18px;
	}

	#produtos .sg-product-card__image {
		height: 210px;
		margin-bottom: 16px;
	}

	#produtos .sg-product-card__title {
		min-height: 0;
		margin-bottom: 10px;
		font-size: 22px;
		line-height: 1.08;
	}

	#produtos .sg-product-card__meta {
		min-height: 0;
		font-size: 15px;
		line-height: 1.42;
		-webkit-line-clamp: 3;
	}

	#produtos .sg-product-card__price {
		margin-top: 18px;
		font-size: 22px;
	}

	#produtos .sg-product-card__actions {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	#produtos .sg-product-card__button {
		min-height: 44px;
		padding: 9px 10px;
		font-size: 14px;
	}

	#produtos .sg-product-card__button--buy {
		font-size: 14px;
	}

	.sg-trust-strip {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.sg-trust-strip > div {
		padding: 14px 0;
		border-right: 0;
	}

	.sg-trust-strip > div:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid #dddddd;
	}

	.sg-support--asset .sg-support__inner {
		grid-template-columns: 1fr;
	}

	.sg-support--asset .sg-support__media {
		min-height: 180px;
	}

	.sg-support--asset .sg-support__content {
		padding: 22px 18px;
	}

	.sg-support__tags {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.sg-support--asset .sg-support__actions {
		flex-direction: column;
		padding: 0 18px 22px;
	}

	#produtos .sg-section__header--row {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.sg-hero h1 {
		font-size: clamp(36px, 12vw, 52px);
	}

	.sg-hero-assets {
		min-height: 340px;
		margin-top: 22px;
	}

	.sg-hero-asset--battery {
		right: 0;
		width: 64%;
	}

	.sg-hero-asset--tire {
		right: 2%;
		bottom: 0;
		width: 58%;
	}

	.sg-hero-asset--controller {
		left: 0;
		top: 86px;
		width: 38%;
	}

	.sg-hero-asset--brake {
		left: 2%;
		bottom: 52px;
		width: 31%;
	}

	.sg-hero-asset--charger {
		right: 0;
		top: 160px;
		width: 27%;
	}

	.sg-category-grid--assets .sg-category-card {
		min-height: 128px;
	}

	.sg-category-grid--assets .sg-category-card img {
		width: 76px;
		height: 72px;
	}
}

/* Refinamento visual - etapa 6: hero como imagem base + botões em código */
.sg-hero--image-block {
	padding: 0;
	background: #070707;
	overflow: hidden;
}

.sg-hero-image-stage {
	position: relative;
	width: min(1260px, calc(100% - 32px));
	aspect-ratio: 1260 / 544;
	overflow: hidden;
	line-height: 0;
}

.sg-hero-image-stage__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.sg-hero-image-stage__actions {
	position: absolute;
	left: 3.2%;
	bottom: 13.5%;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1;
}

.sg-hero-image-stage__actions .sg-btn {
	min-width: 0;
	min-height: 44px;
	padding: 10px 20px;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.01em;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.sg-hero-image-stage__actions .sg-btn__icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: currentColor;
}

.sg-hero-image-stage__actions .sg-btn__icon.sg-icon--stroke {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sg-hero-image-stage__actions .sg-btn__icon.sg-icon--fill {
	fill: currentColor;
	stroke: none;
}

.sg-hero-image-stage__actions .sg-btn--primary {
	background: #f21d32;
	color: #ffffff;
}

.sg-hero-image-stage__actions .sg-btn--secondary {
	border-color: rgba(255, 255, 255, 0.82);
	background: rgba(0, 0, 0, 0.22);
	color: #ffffff;
	box-shadow: none;
}

@media (max-width: 760px) {
	.sg-hero-image-stage {
		width: 100%;
	}

	.sg-hero-image-stage__actions {
		left: 6%;
		bottom: 7%;
		gap: 8px;
	}

	.sg-hero-image-stage__actions .sg-btn {
		min-width: auto;
		min-height: 38px;
		padding: 10px 13px;
		font-size: 12px;
	}

	.sg-hero-image-stage__actions .sg-btn__icon {
		width: 18px;
		height: 18px;
		flex-basis: 18px;
	}
}

@media (max-width: 1180px) {
	.single-product .sg-woo-page div.product {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.single-product .woocommerce-product-gallery__wrapper {
		min-height: 380px;
	}

	.single-product .summary.entry-summary {
		width: 100%;
	}
}

@media (max-width: 760px) {
	.sg-woo-page {
		padding: 26px 0 42px;
	}

	.single-product .woocommerce-product-gallery,
	.single-product .summary.entry-summary,
	.single-product .woocommerce-tabs {
		padding: 22px;
	}

	.single-product .woocommerce-product-gallery__wrapper {
		min-height: 300px;
	}

	.single-product .woocommerce-product-gallery__image img {
		max-height: 300px;
	}

	.single-product div.product form.cart {
		align-items: stretch;
	}

	.single-product div.product form.cart .button.single_add_to_cart_button {
		flex: 1 1 180px;
		white-space: normal;
	}

	.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.single-product .product_title.entry-title {
		font-size: 30px;
	}

	.single-product div.product form.cart {
		display: grid;
		grid-template-columns: 1fr;
	}

	.single-product .quantity .qty {
		width: 100%;
	}

	.single-product div.product form.cart .button.single_add_to_cart_button {
		width: 100%;
		min-width: 0;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 14px;
		line-height: 1.05;
	}

	.single-product .related.products ul.products {
		grid-template-columns: 1fr;
	}
}
