/* ==========================================================================
   Suplinet – Página de Produto  ([pagina_produto])
   Tudo escopado em .spp para não conflitar com tema/Elementor.
   Troque as cores nas variáveis abaixo.
   ========================================================================== */

.spp {
	--spp-navy: #011333;
	--spp-navy-2: #000026;
	--spp-blue: #009bdb;
	--spp-blue-soft: rgba(0, 155, 219, .12);
	--spp-cta: #fd8632;
	--spp-cta-hover: #f0731b;
	--spp-eco: #1f9d55;
	--spp-ink: #0d1526;
	--spp-muted: #5b6475;
	--spp-line: #e5e9f0;
	--spp-surface: #f4f6fa;
	--spp-white: #ffffff;
	--spp-radius: 18px;
	--spp-radius-sm: 12px;
	--spp-shadow: 0 1px 2px rgba(13, 21, 38, .06), 0 10px 30px -12px rgba(13, 21, 38, .18);
	--spp-wrap: 1240px;
	--spp-gutter: clamp(16px, 4vw, 40px);

	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: var(--spp-ink);
	background: var(--spp-surface);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
.spp *, .spp *::before, .spp *::after { box-sizing: border-box; }
.spp img { max-width: 100%; height: auto; }
.spp a { text-decoration: none; }
.spp svg { width: 1em; height: 1em; flex: 0 0 auto; fill: currentColor; }
.spp svg[fill="none"] { fill: none; }

/* Reset de botões (o Hello Elementor pinta todo <button> de rosa). */
.spp button {
	font: inherit; color: inherit; background: transparent; border: 0; border-radius: 0;
	padding: 0; margin: 0; text-transform: none; letter-spacing: inherit; line-height: inherit;
	box-shadow: none; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.spp button:hover, .spp button:focus { background: transparent; color: inherit; }
.spp :focus-visible { outline: 3px solid var(--spp-blue); outline-offset: 2px; }

.spp-wrap { max-width: var(--spp-wrap); margin: 0 auto; padding: 0 var(--spp-gutter); }

/* ---------------------------------------------------------------- HERO */
.spp-hero {
	position: relative;
	color: #fff;
	padding: clamp(24px, 5vw, 64px) 0 clamp(40px, 6vw, 80px);
	isolation: isolate;
}
.spp-hero__bg {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(900px 480px at 85% -10%, rgba(0, 155, 219, .35), transparent 60%),
		radial-gradient(700px 420px at -10% 110%, rgba(0, 155, 219, .18), transparent 60%),
		linear-gradient(160deg, var(--spp-navy) 0%, var(--spp-navy-2) 100%);
}
.spp-hero__bg::after {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
	-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.spp-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
}

/* ---------------------------------------------------------------- GALERIA */
.spp-gallery { position: sticky; top: 110px; min-width: 0; }
.spp-gallery__stage {
	position: relative;
	background: #fff;
	border-radius: var(--spp-radius);
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .55);
	overflow: hidden;
}
.spp-gallery__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	aspect-ratio: 4 / 3;
}
.spp-gallery__track::-webkit-scrollbar { display: none; }
.spp-gallery__slide {
	flex: 0 0 100%;
	margin: 0;
	scroll-snap-align: center;
	display: flex; align-items: center; justify-content: center;
	padding: clamp(16px, 3vw, 36px);
	cursor: zoom-in;
}
.spp-gallery__slide img { width: 100%; height: 100%; object-fit: contain; display: block; }

.spp .spp-gallery__nav,
.spp .spp-gallery__zoom {
	position: absolute; z-index: 2;
	width: 42px; height: 42px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, .9);
	color: var(--spp-ink);
	box-shadow: 0 4px 14px rgba(13, 21, 38, .15);
	font-size: 20px;
	transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}
.spp .spp-gallery__nav:hover, .spp .spp-gallery__zoom:hover { background: var(--spp-navy); color: #fff; transform: scale(1.06); }
.spp .spp-gallery__nav { top: 50%; margin-top: -21px; opacity: 0; }
.spp .spp-gallery__nav--prev { left: 12px; }
.spp .spp-gallery__nav--next { right: 12px; }
.spp-gallery__stage:hover .spp-gallery__nav, .spp-gallery__stage:focus-within .spp-gallery__nav { opacity: 1; }
.spp .spp-gallery__zoom { top: 12px; right: 12px; font-size: 17px; }
.spp-gallery__count {
	position: absolute; left: 14px; bottom: 12px; z-index: 2;
	font-size: 12px; font-weight: 600; letter-spacing: .04em;
	background: rgba(13, 21, 38, .72); color: #fff;
	padding: 4px 10px; border-radius: 999px;
}

.spp-gallery__thumbs {
	display: flex; gap: 10px;
	margin-top: 14px;
	overflow-x: auto; scrollbar-width: thin;
	padding-bottom: 4px;
}
.spp .spp-gallery__thumb {
	flex: 0 0 76px; height: 76px;
	background: #fff;
	border-radius: 12px;
	padding: 6px;
	border: 2px solid transparent;
	opacity: .6;
	transition: opacity .2s, border-color .2s, transform .2s;
}
.spp .spp-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.spp .spp-gallery__thumb:hover { opacity: 1; background: #fff; }
.spp .spp-gallery__thumb.is-active { opacity: 1; border-color: var(--spp-blue); background: #fff; }

/* ---------------------------------------------------------------- INFO */
.spp-info { min-width: 0; display: flex; flex-direction: column; gap: 18px; }

.spp-crumbs { display: flex; flex-wrap: wrap; gap: 6px 8px; font-size: 13px; color: rgba(255, 255, 255, .6); }
.spp-crumbs a { color: rgba(255, 255, 255, .78); transition: color .2s; }
.spp-crumbs a:hover { color: #fff; }
.spp-crumbs [aria-current] { color: rgba(255, 255, 255, .95); }

.spp-brandcard {
	display: flex; align-items: center; gap: 14px;
	align-self: flex-start;
	max-width: 100%;
	padding: 8px 18px 8px 8px;
	border-radius: 20px;
	background: linear-gradient(120deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
	border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 18px 40px -24px rgba(0, 0, 0, .8);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	color: #fff !important;
	transition: border-color .25s, background-color .25s, transform .25s;
}
a.spp-brandcard:hover { border-color: rgba(0, 155, 219, .7); transform: translateY(-2px); }
.spp-brandcard__logo {
	flex: 0 0 auto;
	display: flex; align-items: center; justify-content: center;
	width: 96px; height: 64px; padding: 8px 12px;
	background: #fff; border-radius: 14px;
	box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .6);
}
.spp-brandcard__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.spp-brandcard__logo.is-text { color: var(--spp-navy); font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.spp-brandcard__text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.spp-brandcard__text small { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--spp-blue); }
.spp-brandcard__text strong { font-size: 16px; font-weight: 600; color: #fff; }
.spp-brandcard__go {
	display: inline-flex; align-items: center; gap: 6px;
	margin-left: 10px; padding-left: 16px;
	border-left: 1px solid rgba(255, 255, 255, .16);
	font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .75);
	white-space: nowrap;
}
.spp-brandcard__go svg { transition: transform .2s; }
a.spp-brandcard:hover .spp-brandcard__go { color: #fff; }
a.spp-brandcard:hover .spp-brandcard__go svg { transform: translateX(3px); }
@media (max-width: 600px) {
	.spp-brandcard { align-self: stretch; }
	.spp-brandcard__logo { width: 80px; height: 54px; }
	.spp-brandcard__go span { display: none; }
	.spp-brandcard__go { margin-left: auto; padding-left: 12px; font-size: 18px; }
}

.spp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.spp-chip {
	display: inline-flex; align-items: center;
	font-size: 13px; font-weight: 500; line-height: 1;
	padding: 8px 14px; border-radius: 999px;
	color: #fff !important;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .18);
	transition: background-color .2s, border-color .2s;
}
a.spp-chip:hover { background: var(--spp-blue); border-color: var(--spp-blue); }

.spp h1.spp-title {
	margin: 0;
	font-family: inherit;
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -.02em;
	color: #fff;
	text-wrap: balance;
}
.spp-sku { margin: -8px 0 0; font-size: 13px; color: rgba(255, 255, 255, .6); }
.spp-sku strong { color: rgba(255, 255, 255, .9); font-weight: 600; }

.spp-short { font-size: clamp(15px, 1.2vw, 17px); color: rgba(255, 255, 255, .82); }
.spp-short > :first-child { margin-top: 0; }
.spp-short > :last-child { margin-bottom: 0; }
.spp-short, .spp-short * { color: rgba(255, 255, 255, .82) !important; }

/* Principais características */
.spp-highlights {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--spp-radius);
	padding: 18px 20px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.spp h2.spp-highlights__title {
	display: flex; align-items: center; gap: 8px;
	margin: 0 0 10px;
	font-family: inherit; font-size: 13px; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--spp-blue);
}
.spp-highlights__body { font-size: 15px; }
.spp-highlights__body, .spp-highlights__body * { color: rgba(255, 255, 255, .9) !important; background: transparent !important; }
.spp-highlights__body > :first-child { margin-top: 0; }
.spp-highlights__body > :last-child { margin-bottom: 0; }
.spp-highlights__body ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.spp-highlights__body li { position: relative; padding-left: 26px; }
.spp-highlights__body li::before {
	content: ""; position: absolute; left: 0; top: .3em;
	width: 16px; height: 16px; border-radius: 50%;
	background: var(--spp-blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009bdb' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* Botões principais */
.spp-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.spp .spp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 54px; padding: 0 24px;
	border-radius: 14px;
	font-size: 16px; font-weight: 600; line-height: 1.1;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s;
}
.spp .spp-btn svg { font-size: 20px; }
.spp button.spp-btn--cta, .spp .spp-btn--cta {
	flex: 1 1 100%;
	background: var(--spp-cta); color: #fff;
	box-shadow: 0 12px 28px -12px rgba(253, 134, 50, .9);
}
.spp button.spp-btn--cta:hover, .spp button.spp-btn--cta:focus-visible {
	background: var(--spp-cta-hover); color: #fff; transform: translateY(-2px);
	box-shadow: 0 16px 32px -12px rgba(253, 134, 50, 1);
}
.spp a.spp-btn--ghost {
	flex: 1 1 200px;
	color: #fff; border: 1.5px solid rgba(255, 255, 255, .35);
	background: rgba(255, 255, 255, .04);
}
.spp a.spp-btn--ghost:hover { background: #fff; color: var(--spp-navy); border-color: #fff; transform: translateY(-2px); }

/* Downloads */
.spp-downloads { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.spp-download {
	display: flex; align-items: center; gap: 12px;
	padding: 12px 14px;
	border-radius: var(--spp-radius-sm);
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	color: #fff !important;
	transition: background-color .2s, border-color .2s, transform .2s;
}
.spp-download:hover { background: rgba(0, 155, 219, .18); border-color: var(--spp-blue); transform: translateY(-1px); }
.spp-download__icon {
	width: 40px; height: 40px; border-radius: 10px; flex: 0 0 40px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--spp-blue); color: #fff; font-size: 19px;
}
.spp-download__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.spp-download__text strong { font-size: 14px; font-weight: 600; }
.spp-download__text small { font-size: 12px; color: rgba(255, 255, 255, .6); }
.spp-download__arrow { margin-left: auto; font-size: 18px; opacity: .7; }

/* Segmentos / tags / share */
.spp-segments { display: flex; flex-direction: column; gap: 10px; }
.spp-label {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
}
.spp-chip--seg { background: var(--spp-blue-soft); border-color: rgba(0, 155, 219, .45); }

.spp-share {
	display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
	padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.spp-share .spp-label { margin-right: 6px; }
.spp .spp-share__btn {
	position: relative;
	width: 38px; height: 38px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, .08); color: #fff;
	font-size: 16px;
	transition: background-color .2s, transform .2s;
}
.spp .spp-share__btn:hover { transform: translateY(-2px); color: #fff; }
.spp .spp-share__btn.is-wa:hover { background: #25d366; }
.spp .spp-share__btn.is-fb:hover { background: #1877f2; }
.spp .spp-share__btn.is-in:hover { background: #0a66c2; }
.spp .spp-share__btn.is-tg:hover { background: #229ed9; }
.spp button.spp-share__btn.is-copy:hover { background: var(--spp-blue); }
.spp-share__tip {
	position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
	white-space: nowrap; font-size: 12px; font-weight: 600;
	background: #fff; color: var(--spp-ink); padding: 5px 9px; border-radius: 8px;
	opacity: 0; pointer-events: none; transition: opacity .2s;
}
.spp-share__tip.is-on { opacity: 1; }

/* ---------------------------------------------------------------- SEÇÕES */
.spp-section { padding: clamp(40px, 6vw, 80px) 0; }
.spp-section + .spp-section { padding-top: 0; }
.spp-section__head { margin-bottom: clamp(20px, 3vw, 32px); }
.spp-section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.spp-eyebrow {
	display: inline-block; margin-bottom: 6px;
	font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: var(--spp-blue);
}
.spp h2.spp-section__title {
	margin: 0; font-family: inherit;
	font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; font-weight: 700; letter-spacing: -.01em;
	color: var(--spp-ink);
}

/* Vídeo */
.spp-video__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--spp-radius);
	overflow: hidden;
	background: #000;
	box-shadow: var(--spp-shadow);
}
.spp-video__frame iframe, .spp-video__frame video, .spp-video__frame > * {
	position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: 0; display: block;
}
.spp button.spp-video__poster { position: absolute; inset: 0; width: 100%; height: 100%; }
.spp-video__poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease, filter .3s; filter: brightness(.78); }
.spp-video__poster:hover img { transform: scale(1.03); filter: brightness(.65); }
.spp-video__play {
	position: absolute; top: 50%; left: 50%;
	width: 84px; height: 84px; margin: -42px 0 0 -42px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--spp-cta); color: #fff; font-size: 34px;
	box-shadow: 0 0 0 10px rgba(253, 134, 50, .25);
	transition: transform .25s, box-shadow .25s;
}
.spp-video__play svg { margin-left: 4px; }
.spp-video__poster:hover .spp-video__play { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(253, 134, 50, .2); }

/* ---------------------------------------------------------------- ABAS */
.spp-tabs {
	background: #fff;
	border-radius: var(--spp-radius);
	box-shadow: var(--spp-shadow);
	overflow: hidden;
}
.spp-tabs__list {
	display: flex; gap: 6px;
	padding: 10px;
	background: #fff;
	border-bottom: 1px solid var(--spp-line);
	overflow-x: auto; scrollbar-width: none;
}
.spp-tabs__list::-webkit-scrollbar { display: none; }
.spp button.spp-tab {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 18px;
	border-radius: 12px;
	font-size: 15px; font-weight: 600;
	color: var(--spp-muted);
	white-space: nowrap;
	transition: background-color .2s, color .2s;
}
.spp button.spp-tab svg { font-size: 17px; }
.spp button.spp-tab:hover { background: var(--spp-surface); color: var(--spp-ink); }
.spp button.spp-tab[aria-selected="true"] { background: var(--spp-navy); color: #fff; }
.spp button.spp-tab--eco[aria-selected="true"] { background: var(--spp-eco); }
.spp button.spp-tab--eco:not([aria-selected="true"]) svg { color: var(--spp-eco); }

.spp-panel { padding: clamp(20px, 3.5vw, 44px); animation: spp-fade .35s ease; }
.spp-panel[hidden] { display: none; }
.spp-panel:focus-visible { outline-offset: -3px; }
@keyframes spp-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Tipografia de conteúdo (ficha técnica, características, sustentabilidade) */
.spp-prose { font-size: 15px; color: #2b3445; }
.spp-prose > :first-child { margin-top: 0; }
.spp-prose > :last-child { margin-bottom: 0; }
.spp-prose p { margin: 0 0 .7em; }
.spp-prose strong, .spp-prose b { color: var(--spp-ink); font-weight: 700; }
.spp-prose a { color: var(--spp-blue); text-decoration: underline; text-underline-offset: 2px; }
.spp-prose h2, .spp-prose h3, .spp-prose h4 {
	font-family: inherit; color: var(--spp-ink); line-height: 1.25;
	margin: 1.4em 0 .5em; font-size: 17px; font-weight: 700;
}
.spp-prose ul, .spp-prose ol { margin: 0 0 1em; padding-left: 1.2em; }
.spp-prose li { margin-bottom: .35em; }
.spp-prose img { border-radius: 10px; }
.spp-prose table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 14px; }
.spp-prose th, .spp-prose td { border: 1px solid var(--spp-line); padding: 8px 10px; text-align: left; }

/* Ficha técnica: cada título + parágrafos vira um bloco (.spp-spec) */
.spp-spec {
	margin: 0 0 12px;
	padding: 14px 16px 14px 18px;
	background: var(--spp-surface);
	border-left: 3px solid var(--spp-blue);
	border-radius: 10px;
	break-inside: avoid;
}
.spp-spec p { margin: 0 0 .35em; }
.spp-spec p:last-child { margin-bottom: 0; }
.spp-spec > p:first-child > strong:first-child,
.spp-spec > p:first-child > b:first-child { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--spp-navy); margin-bottom: 2px; }
.spp-spec > p:first-child > br:first-of-type { display: none; }
@media (min-width: 1025px) {
	.spp-prose--cols { column-count: 2; column-gap: 28px; }
	.spp-prose--cols > * { break-inside: avoid; }
}

.spp-specs { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 24px; font-size: 14px; border: 1px solid var(--spp-line); border-radius: 12px; overflow: hidden; }
.spp-specs caption { text-align: left; font-weight: 700; font-size: 17px; padding-bottom: 10px; color: var(--spp-ink); }
.spp-specs th, .spp-specs td { padding: 12px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--spp-line); background: #fff; }
.spp-specs tr:last-child th, .spp-specs tr:last-child td { border-bottom: 0; }
.spp-specs th { width: 34%; color: var(--spp-muted); font-weight: 600; background: var(--spp-surface); }

/* Características 1/2/3 */
.spp-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.spp-feature {
	position: relative;
	padding: 26px 24px 24px;
	border-radius: 16px;
	background: linear-gradient(180deg, var(--spp-surface), #fff);
	border: 1px solid var(--spp-line);
	transition: transform .25s, box-shadow .25s, border-color .25s;
}
.spp-feature:hover { transform: translateY(-4px); box-shadow: var(--spp-shadow); border-color: transparent; }
.spp-feature__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
	background: var(--spp-navy); color: #fff;
	font-weight: 700; font-size: 15px; letter-spacing: .02em;
}
.spp-feature__body > .caracteristica-item > strong:first-child,
.spp-feature__body > p:first-child > strong:first-child { display: block; font-size: 17px; line-height: 1.3; margin-bottom: 6px; }
.spp-feature__body { font-size: 14.5px; }

/* Sustentabilidade */
.spp-eco__badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px; margin-bottom: 20px;
	border-radius: 999px;
	background: rgba(31, 157, 85, .1); color: var(--spp-eco);
	font-size: 13px; font-weight: 700;
}
.spp-eco__body { counter-reset: none; }
.spp-eco__body h3 {
	display: flex; align-items: center; gap: 10px;
	padding-top: 18px; margin-top: 18px;
	border-top: 1px dashed var(--spp-line);
	color: var(--spp-ink);
}
.spp-eco__body h3::before {
	content: ""; flex: 0 0 10px; height: 10px; border-radius: 50%;
	background: var(--spp-eco); box-shadow: 0 0 0 4px rgba(31, 157, 85, .15);
}
.spp-eco__body > h3:first-child, .spp-eco__body > .sustentabilidade-produto > h3:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
@media (min-width: 1025px) {
	.spp-eco__body .sustentabilidade-produto, .spp-eco__body:not(:has(.sustentabilidade-produto)) { column-count: 2; column-gap: 40px; }
	.spp-eco__body h3 { break-after: avoid; }
	.spp-eco__body p { break-inside: avoid; }
}

/* ---------------------------------------------------------------- RELACIONADOS */
.spp-related__nav { display: flex; gap: 8px; }
.spp .spp-roundbtn {
	width: 46px; height: 46px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff; color: var(--spp-ink); font-size: 20px;
	border: 1px solid var(--spp-line);
	transition: background-color .2s, color .2s, opacity .2s;
}
.spp button.spp-roundbtn:hover { background: var(--spp-navy); color: #fff; border-color: var(--spp-navy); }
.spp button.spp-roundbtn:disabled { opacity: .35; cursor: default; background: #fff; color: var(--spp-ink); }

.spp-related__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 3 * 18px) / 4);
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 6px 2px 18px;
	margin: -6px -2px 0;
}
.spp-related__track::-webkit-scrollbar { display: none; }
.spp-related__stage { position: relative; }
.spp .spp-related__arrow { display: none; }
.spp-related__dots { display: none; }
.spp-card {
	scroll-snap-align: start;
	display: flex; flex-direction: column;
	background: #fff; border-radius: 16px; overflow: hidden;
	border: 1px solid var(--spp-line);
	color: var(--spp-ink) !important;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}
.spp-card:hover { transform: translateY(-4px); box-shadow: var(--spp-shadow); border-color: transparent; }
.spp-card__media { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; padding: 18px; background: #fff; }
.spp-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.spp-card:hover .spp-card__media img { transform: scale(1.05); }
.spp-card__body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; border-top: 1px solid var(--spp-line); flex: 1; }
.spp-card__logo { height: 22px; width: auto; max-width: 70px; object-fit: contain; object-position: left; }
.spp-card__brand { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--spp-blue); }
.spp-card__title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.spp-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--spp-blue); }
.spp-card__more svg { transition: transform .2s; }
.spp-card:hover .spp-card__more svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- LIGHTBOX */
.spp-lightbox {
	position: fixed; inset: 0; z-index: 100000;
	display: flex; align-items: center; justify-content: center;
	background: rgba(1, 8, 22, .94);
	opacity: 0; visibility: hidden; transition: opacity .25s, visibility 0s linear .25s;
	font-family: "Roboto", Arial, sans-serif;
}
.spp-lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .25s; }
.spp-lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; background: #fff; border-radius: 12px; padding: 12px; user-select: none; }
.spp-lightbox button {
	position: absolute; width: 48px; height: 48px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, .12) !important; color: #fff !important; border: 0 !important; padding: 0 !important;
	cursor: pointer; font-size: 22px; transition: background-color .2s;
}
.spp-lightbox button:hover { background: rgba(255, 255, 255, .25) !important; }
.spp-lightbox svg { width: 1em; height: 1em; }
.spp-lightbox [data-lb-close] { top: 18px; right: 18px; }
.spp-lightbox [data-lb-prev] { left: 18px; top: 50%; margin-top: -24px; }
.spp-lightbox [data-lb-next] { right: 18px; top: 50%; margin-top: -24px; }
.spp-lightbox__count { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .75); font-size: 13px; }
body.spp-noscroll { overflow: hidden; }

/* ---------------------------------------------------------------- RESPONSIVO */
@media (max-width: 1100px) {
	.spp-related__track { grid-auto-columns: calc((100% - 2 * 18px) / 3); }
}
@media (max-width: 900px) {
	.spp-hero__grid { grid-template-columns: 1fr; }
	.spp-gallery { position: static; }
	.spp .spp-gallery__nav { opacity: 1; }
	.spp-related__track { grid-auto-columns: calc((100% - 18px) / 2); }
}
@media (max-width: 600px) {
	.spp-hero { padding-top: 16px; }
	.spp-gallery__track { aspect-ratio: 1 / 1; }
	.spp .spp-gallery__nav { width: 36px; height: 36px; margin-top: -18px; font-size: 17px; }
	.spp .spp-gallery__thumb { flex-basis: 62px; height: 62px; }
	.spp .spp-btn { width: 100%; flex-basis: 100%; }
	/* Celular: 1 card por vez, deslizar com o dedo ou pelas setas */
	.spp-related__track { grid-auto-columns: 100%; gap: 14px; }
	.spp-card { scroll-snap-stop: always; }
	.spp-related__nav { display: none; }
	.spp .spp-related__arrow {
		position: absolute; z-index: 3; top: calc(50% - 30px);
		width: 42px; height: 42px; border-radius: 50%;
		display: inline-flex; align-items: center; justify-content: center;
		background: rgba(255, 255, 255, .95); color: var(--spp-ink); font-size: 20px;
		box-shadow: 0 6px 18px rgba(13, 21, 38, .18);
		transition: opacity .2s, background-color .2s;
	}
	.spp .spp-related__arrow--prev { left: 8px; }
	.spp .spp-related__arrow--next { right: 8px; }
	.spp button.spp-related__arrow:hover { background: var(--spp-navy); color: #fff; }
	.spp button.spp-related__arrow:disabled { opacity: 0; pointer-events: none; }
	.spp-related__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
	.spp-related__dot { width: 7px; height: 7px; border-radius: 999px; background: #c9d1de; transition: width .25s, background-color .25s; }
	.spp-related__dot.is-active { width: 22px; background: var(--spp-blue); }
	.spp-video__play { width: 64px; height: 64px; margin: -32px 0 0 -32px; font-size: 26px; }
	.spp button.spp-tab { padding: 10px 14px; font-size: 14px; }
	.spp-specs th { width: 42%; }
}

@media (prefers-reduced-motion: reduce) {
	.spp *, .spp-lightbox { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
