:root {
	--trechao-ink: #111827;
	--trechao-muted: #596579;
	--trechao-line: #dfe4ea;
	--trechao-surface: #ffffff;
	--trechao-soft: #f3f5f7;
	--trechao-brand: #ef6c00;
	--trechao-brand-dark: #b94700;
	--trechao-accent: #f6bd16;
	--trechao-radius: 18px;
	--trechao-shadow: 0 16px 44px rgba(17, 24, 39, 0.09);
}

html {
	overflow-x: hidden;
}

body {
	background: var(--trechao-surface);
	color: var(--trechao-ink);
	overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
	background: #fff;
	border-bottom: 4px solid var(--trechao-brand);
	border-top: 0;
	box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
}

.site-header .inside-header {
	align-items: center;
	max-width: 1240px;
	min-height: 92px;
	padding-left: 24px;
	padding-right: 24px;
}

.site-branding,
.site-logo {
	display: none;
}

.trechao-header-logo {
	display: inline-flex;
	margin-right: auto;
	max-width: 230px;
	padding: 0;
}

.trechao-header-logo img {
	display: block;
	height: auto;
	width: 100%;
}

.main-navigation .main-nav ul li a {
	font-weight: 750;
}

a {
	color: var(--trechao-brand-dark);
}

.trechao-shell {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1240px;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}

.trechao-section {
	margin-left: calc((min(1200px, 100vw) - 100vw) / 2);
	padding-bottom: 84px;
	padding-top: 84px;
	width: 100vw;
}

.trechao-section--soft {
	background: var(--trechao-soft);
}

.trechao-kicker,
.trechao-eyebrow {
	color: var(--trechao-brand-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.trechao-section-heading {
	align-items: end;
	display: flex;
	gap: 48px;
	justify-content: space-between;
	margin-bottom: 36px;
}

.trechao-section-heading h2,
.trechao-manifesto h2,
.trechao-archive__header h1 {
	font-size: clamp(2rem, 4vw, 3.6rem);
	letter-spacing: -0.045em;
	line-height: 1.04;
	margin: 0;
}

.trechao-section-heading > p {
	color: var(--trechao-muted);
	margin: 0;
	max-width: 560px;
}

.trechao-home {
	min-width: 0;
	width: 100%;
}

.trechao-hero {
	background:
		linear-gradient(115deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.88)),
		linear-gradient(45deg, var(--trechao-ink), #263246);
	color: #fff;
	margin-left: calc((min(1200px, 100vw) - 100vw) / 2);
	overflow: hidden;
	padding: 96px 0;
	position: relative;
	width: 100vw;
}

.trechao-hero::after {
	background: var(--trechao-brand);
	border-radius: 50%;
	content: "";
	filter: blur(2px);
	height: 340px;
	opacity: 0.17;
	position: absolute;
	right: -120px;
	top: -160px;
	width: 340px;
}

.trechao-hero__grid {
	align-items: center;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	position: relative;
	z-index: 1;
}

.trechao-hero h1 {
	font-size: clamp(2.8rem, 6vw, 5.7rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
	margin: 0 0 26px;
	max-width: 900px;
}

.trechao-hero__lead {
	color: #d9dee7;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.65;
	margin: 0 0 32px;
	max-width: 760px;
}

.trechao-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.trechao-button,
.trechao-cta {
	align-items: center;
	background: var(--trechao-brand);
	border: 2px solid var(--trechao-brand);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	padding: 14px 24px;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease;
}

.trechao-button:hover,
.trechao-button:focus,
.trechao-cta:hover,
.trechao-cta:focus {
	background: var(--trechao-brand-dark);
	border-color: var(--trechao-brand-dark);
	color: #fff;
	transform: translateY(-2px);
}

.trechao-button--ghost {
	background: transparent;
	border-color: #687386;
}

.trechao-hero__trust {
	color: #aeb7c5;
	font-size: 0.9rem;
	margin: 24px 0 0;
}

.trechao-hero__panel {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 26px;
	box-shadow: var(--trechao-shadow);
	padding: 34px;
}

.trechao-hero__badge {
	background: var(--trechao-accent);
	border-radius: 999px;
	color: var(--trechao-ink);
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
	padding: 7px 12px;
	text-transform: uppercase;
}

.trechao-hero__panel h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	letter-spacing: -0.035em;
	line-height: 1.14;
	margin: 0 0 22px;
}

.trechao-hero__panel ul {
	color: #d9dee7;
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.trechao-hero__panel li::before {
	color: var(--trechao-accent);
	content: "✓";
	font-weight: 900;
	margin-right: 10px;
}

.trechao-category-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trechao-category-card,
.trechao-product-card,
.trechao-guide-card {
	background: #fff;
	border: 1px solid var(--trechao-line);
	border-radius: var(--trechao-radius);
	color: var(--trechao-ink);
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.trechao-category-card {
	padding: 28px;
}

.trechao-category-card:hover,
.trechao-category-card:focus,
.trechao-product-card:hover,
.trechao-guide-card:hover {
	border-color: rgba(239, 108, 0, 0.5);
	box-shadow: var(--trechao-shadow);
	color: var(--trechao-ink);
	transform: translateY(-4px);
}

.trechao-category-card__icon {
	align-items: center;
	background: #fff2e7;
	border-radius: 12px;
	color: var(--trechao-brand-dark);
	display: inline-flex;
	font-size: 1.5rem;
	height: 48px;
	justify-content: center;
	margin-bottom: 22px;
	width: 48px;
}

.trechao-category-card h3,
.trechao-product-card h3,
.trechao-guide-card h3 {
	font-size: 1.25rem;
	letter-spacing: -0.025em;
	line-height: 1.25;
	margin: 0 0 12px;
}

.trechao-category-card p,
.trechao-product-card p,
.trechao-guide-card p {
	color: var(--trechao-muted);
}

.trechao-text-link {
	color: var(--trechao-brand-dark);
	font-weight: 800;
	text-decoration: none;
}

.trechao-product-grid,
.trechao-guide-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trechao-guide-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trechao-product-card__image {
	aspect-ratio: 4 / 3;
	background: #fff;
	display: block;
	overflow: hidden;
}

.trechao-product-card__image img,
.trechao-guide-card img {
	height: 100%;
	object-fit: contain;
	padding: 16px;
	width: 100%;
}

.trechao-product-card__body,
.trechao-guide-card__body {
	padding: 22px;
}

.trechao-product-card h3 a,
.trechao-guide-card h3 a {
	color: var(--trechao-ink);
	text-decoration: none;
}

.trechao-price {
	font-size: 0.86rem;
	margin: 12px 0;
}

.trechao-empty-state {
	background: var(--trechao-soft);
	border-radius: var(--trechao-radius);
	grid-column: 1 / -1;
	padding: 30px;
}

.trechao-manifesto {
	background: var(--trechao-accent);
	margin-left: calc((min(1200px, 100vw) - 100vw) / 2);
	padding: 64px 0;
	width: 100vw;
}

.trechao-manifesto__inner {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.trechao-manifesto p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin: 0;
}

.trechao-archive__header {
	background: var(--trechao-ink);
	color: #fff;
	padding: 70px 0;
}

.trechao-archive__header > .trechao-shell > p,
.trechao-archive__description {
	color: #d9dee7;
	font-size: 1.1rem;
	margin-top: 20px;
	max-width: 760px;
}

.trechao-breadcrumb {
	color: var(--trechao-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.88rem;
	gap: 8px;
	padding: 24px 0;
}

.trechao-product__hero {
	align-items: start;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
	padding: 32px 0 64px;
}

.trechao-product__media {
	background: #fff;
	border: 1px solid var(--trechao-line);
	border-radius: 24px;
	overflow: hidden;
}

.trechao-product__media img {
	display: block;
	height: auto;
	max-height: 680px;
	object-fit: contain;
	padding: 28px;
	width: 100%;
}

.trechao-product__summary h1 {
	font-size: clamp(2.2rem, 4.4vw, 4.3rem);
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0 0 22px;
}

.trechao-product__verdict {
	color: var(--trechao-muted);
	font-size: 1.18rem;
	line-height: 1.7;
}

.trechao-product__facts {
	border-bottom: 1px solid var(--trechao-line);
	border-top: 1px solid var(--trechao-line);
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 28px 0;
	padding: 22px 0;
}

.trechao-product__facts span,
.trechao-spec-strip span {
	color: var(--trechao-muted);
	display: block;
	font-size: 0.78rem;
	margin-bottom: 4px;
}

.trechao-product__facts strong,
.trechao-spec-strip strong {
	font-size: 1.08rem;
}

.trechao-cta-wrap {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 24px 0;
}

.trechao-cta-wrap small,
.trechao-product__updated {
	color: var(--trechao-muted);
	font-size: 0.78rem;
}

.trechao-spec-strip {
	background: var(--trechao-soft);
	border-radius: var(--trechao-radius);
	display: flex;
	gap: 48px;
	margin-bottom: 54px;
	padding: 24px;
}

.trechao-product__content {
	font-size: 1.08rem;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 840px;
}

.trechao-product__content h2 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	letter-spacing: -0.035em;
	line-height: 1.15;
	margin-top: 56px;
}

.trechao-disclosure {
	background: #fff7df;
	border-left: 4px solid var(--trechao-accent);
	border-radius: 8px;
	font-size: 0.9rem;
	margin-bottom: 32px;
	padding: 16px 18px;
}

.trechao-final-cta {
	align-items: center;
	background: var(--trechao-ink);
	border-radius: 24px;
	color: #fff;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 72px 0;
	padding: 42px;
}

.trechao-final-cta h2 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	letter-spacing: -0.04em;
	margin: 0 0 10px;
}

.trechao-final-cta p {
	color: #cdd4de;
	margin: 0;
}

.trechao-final-cta .trechao-cta-wrap {
	margin: 0;
	min-width: 280px;
}

.trechao-final-cta small {
	color: #cdd4de;
}

.trechao-footer-note {
	opacity: 0.85;
}

.site-info {
	background: var(--trechao-ink);
	border-top: 0;
	color: #eef1f5;
	padding: 28px 20px;
}

.site-info a {
	color: #fff;
}

.site-info strong {
	color: var(--trechao-accent);
}

@media (max-width: 1024px) {
	.trechao-hero__grid,
	.trechao-product__hero {
		grid-template-columns: 1fr;
	}

	.trechao-category-grid,
	.trechao-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trechao-product__media {
		max-width: 720px;
	}
}

@media (max-width: 720px) {
	.trechao-shell {
		padding-left: 18px;
		padding-right: 18px;
	}

	.site-header .inside-header {
		min-height: 76px;
	}

	.trechao-header-logo {
		max-width: 190px;
	}

	.trechao-section {
		padding-bottom: 58px;
		padding-top: 58px;
	}

	.trechao-hero {
		padding: 70px 0;
	}

	.trechao-section-heading,
	.trechao-manifesto__inner,
	.trechao-final-cta {
		align-items: start;
		display: flex;
		flex-direction: column;
	}

	.trechao-category-grid,
	.trechao-product-grid,
	.trechao-guide-grid {
		grid-template-columns: 1fr;
	}

	.trechao-product__facts {
		grid-template-columns: 1fr;
	}

	.trechao-spec-strip {
		flex-direction: column;
		gap: 16px;
	}

	.trechao-final-cta {
		padding: 28px;
	}

	.trechao-final-cta .trechao-cta-wrap {
		min-width: 0;
		width: 100%;
	}
}

	padding-right: 24px;
}

.site-branding,
.site-logo {
	display: none;
}

.trechao-header-logo {
	display: inline-flex;
	margin-right: auto;
	max-width: 230px;
	padding: 0;
}

.trechao-header-logo img {
	display: block;
	height: auto;
	width: 100%;
}

.main-navigation .main-nav ul li a {
	font-weight: 750;
}

a {
	color: var(--trechao-brand-dark);
}

.trechao-shell {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1240px;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}

.trechao-section {
	padding-bottom: 84px;
	padding-top: 84px;
}

.trechao-section--soft {
	background: var(--trechao-soft);
}

.trechao-kicker,
.trechao-eyebrow {
	color: var(--trechao-brand-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.trechao-section-heading {
	align-items: end;
	display: flex;
	gap: 48px;
	justify-content: space-between;
	margin-bottom: 36px;
}

.trechao-section-heading h2,
.trechao-manifesto h2,
.trechao-archive__header h1 {
	font-size: clamp(2rem, 4vw, 3.6rem);
	letter-spacing: -0.045em;
	line-height: 1.04;
	margin: 0;
}

.trechao-section-heading > p {
	color: var(--trechao-muted);
	margin: 0;
	max-width: 560px;
}

.trechao-home {
	min-width: 0;
	width: 100%;
}

.trechao-hero {
	background:
		linear-gradient(115deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.88)),
		linear-gradient(45deg, var(--trechao-ink), #263246);
	color: #fff;
	margin-left: calc((min(1200px, 100vw) - 100vw) / 2);
	overflow: hidden;
	padding: 96px 0;
	position: relative;
	width: 100vw;
}

.trechao-hero::after {
	background: var(--trechao-brand);
	border-radius: 50%;
	content: "";
	filter: blur(2px);
	height: 340px;
	opacity: 0.17;
	position: absolute;
	right: -120px;
	top: -160px;
	width: 340px;
}

.trechao-hero__grid {
	align-items: center;
	display: grid;
	gap: 70px;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	position: relative;
	z-index: 1;
}

.trechao-hero h1 {
	font-size: clamp(2.8rem, 6vw, 5.7rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
	margin: 0 0 26px;
	max-width: 900px;
}

.trechao-hero__lead {
	color: #d9dee7;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.65;
	margin: 0 0 32px;
	max-width: 760px;
}

.trechao-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.trechao-button,
.trechao-cta {
	align-items: center;
	background: var(--trechao-brand);
	border: 2px solid var(--trechao-brand);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	padding: 14px 24px;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease;
}

.trechao-button:hover,
.trechao-button:focus,
.trechao-cta:hover,
.trechao-cta:focus {
	background: var(--trechao-brand-dark);
	border-color: var(--trechao-brand-dark);
	color: #fff;
	transform: translateY(-2px);
}

.trechao-button--ghost {
	background: transparent;
	border-color: #687386;
}

.trechao-hero__trust {
	color: #aeb7c5;
	font-size: 0.9rem;
	margin: 24px 0 0;
}

.trechao-hero__panel {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 26px;
	box-shadow: var(--trechao-shadow);
	padding: 34px;
}

.trechao-hero__badge {
	background: var(--trechao-accent);
	border-radius: 999px;
	color: var(--trechao-ink);
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
	padding: 7px 12px;
	text-transform: uppercase;
}

.trechao-hero__panel h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	letter-spacing: -0.035em;
	line-height: 1.14;
	margin: 0 0 22px;
}

.trechao-hero__panel ul {
	color: #d9dee7;
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.trechao-hero__panel li::before {
	color: var(--trechao-accent);
	content: "✓";
	font-weight: 900;
	margin-right: 10px;
}

.trechao-category-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trechao-category-card,
.trechao-product-card,
.trechao-guide-card {
	background: #fff;
	border: 1px solid var(--trechao-line);
	border-radius: var(--trechao-radius);
	color: var(--trechao-ink);
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.trechao-category-card {
	padding: 28px;
}

.trechao-category-card:hover,
.trechao-category-card:focus,
.trechao-product-card:hover,
.trechao-guide-card:hover {
	border-color: rgba(239, 108, 0, 0.5);
	box-shadow: var(--trechao-shadow);
	color: var(--trechao-ink);
	transform: translateY(-4px);
}

.trechao-category-card__icon {
	align-items: center;
	background: #fff2e7;
	border-radius: 12px;
	color: var(--trechao-brand-dark);
	display: inline-flex;
	font-size: 1.5rem;
	height: 48px;
	justify-content: center;
	margin-bottom: 22px;
	width: 48px;
}

.trechao-category-card h3,
.trechao-product-card h3,
.trechao-guide-card h3 {
	font-size: 1.25rem;
	letter-spacing: -0.025em;
	line-height: 1.25;
	margin: 0 0 12px;
}

.trechao-category-card p,
.trechao-product-card p,
.trechao-guide-card p {
	color: var(--trechao-muted);
}

.trechao-text-link {
	color: var(--trechao-brand-dark);
	font-weight: 800;
	text-decoration: none;
}

.trechao-product-grid,
.trechao-guide-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trechao-guide-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trechao-product-card__image {
	aspect-ratio: 4 / 3;
	background: #fff;
	display: block;
	overflow: hidden;
}

.trechao-product-card__image img,
.trechao-guide-card img {
	height: 100%;
	object-fit: contain;
	padding: 16px;
	width: 100%;
}

.trechao-product-card__body,
.trechao-guide-card__body {
	padding: 22px;
}

.trechao-product-card h3 a,
.trechao-guide-card h3 a {
	color: var(--trechao-ink);
	text-decoration: none;
}

.trechao-price {
	font-size: 0.86rem;
	margin: 12px 0;
}

.trechao-empty-state {
	background: var(--trechao-soft);
	border-radius: var(--trechao-radius);
	grid-column: 1 / -1;
	padding: 30px;
}

.trechao-manifesto {
	background: var(--trechao-accent);
	margin-left: calc((min(1200px, 100vw) - 100vw) / 2);
	padding: 64px 0;
	width: 100vw;
}

.trechao-manifesto__inner {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.trechao-manifesto p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin: 0;
}

.trechao-archive__header {
	background: var(--trechao-ink);
	color: #fff;
	padding: 70px 0;
}

.trechao-archive__header > .trechao-shell > p,
.trechao-archive__description {
	color: #d9dee7;
	font-size: 1.1rem;
	margin-top: 20px;
	max-width: 760px;
}

.trechao-breadcrumb {
	color: var(--trechao-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.88rem;
	gap: 8px;
	padding: 24px 0;
}

.trechao-product__hero {
	align-items: start;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
	padding: 32px 0 64px;
}

.trechao-product__media {
	background: #fff;
	border: 1px solid var(--trechao-line);
	border-radius: 24px;
	overflow: hidden;
}

.trechao-product__media img {
	display: block;
	height: auto;
	max-height: 680px;
	object-fit: contain;
	padding: 28px;
	width: 100%;
}

.trechao-product__summary h1 {
	font-size: clamp(2.2rem, 4.4vw, 4.3rem);
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0 0 22px;
}

.trechao-product__verdict {
	color: var(--trechao-muted);
	font-size: 1.18rem;
	line-height: 1.7;
}

.trechao-product__facts {
	border-bottom: 1px solid var(--trechao-line);
	border-top: 1px solid var(--trechao-line);
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 28px 0;
	padding: 22px 0;
}

.trechao-product__facts span,
.trechao-spec-strip span {
	color: var(--trechao-muted);
	display: block;
	font-size: 0.78rem;
	margin-bottom: 4px;
}

.trechao-product__facts strong,
.trechao-spec-strip strong {
	font-size: 1.08rem;
}

.trechao-cta-wrap {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 24px 0;
}

.trechao-cta-wrap small,
.trechao-product__updated {
	color: var(--trechao-muted);
	font-size: 0.78rem;
}

.trechao-spec-strip {
	background: var(--trechao-soft);
	border-radius: var(--trechao-radius);
	display: flex;
	gap: 48px;
	margin-bottom: 54px;
	padding: 24px;
}

.trechao-product__content {
	font-size: 1.08rem;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 840px;
}

.trechao-product__content h2 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	letter-spacing: -0.035em;
	line-height: 1.15;
	margin-top: 56px;
}

.trechao-disclosure {
	background: #fff7df;
	border-left: 4px solid var(--trechao-accent);
	border-radius: 8px;
	font-size: 0.9rem;
	margin-bottom: 32px;
	padding: 16px 18px;
}

.trechao-final-cta {
	align-items: center;
	background: var(--trechao-ink);
	border-radius: 24px;
	color: #fff;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 72px 0;
	padding: 42px;
}

.trechao-final-cta h2 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	letter-spacing: -0.04em;
	margin: 0 0 10px;
}

.trechao-final-cta p {
	color: #cdd4de;
	margin: 0;
}

.trechao-final-cta .trechao-cta-wrap {
	margin: 0;
	min-width: 280px;
}

.trechao-final-cta small {
	color: #cdd4de;
}

.trechao-footer-note {
	opacity: 0.85;
}

.site-info {
	background: var(--trechao-ink);
	border-top: 0;
	color: #eef1f5;
	padding: 28px 20px;
}

.site-info a {
	color: #fff;
}

.site-info strong {
	color: var(--trechao-accent);
}

@media (max-width: 1024px) {
	.trechao-hero__grid,
	.trechao-product__hero {
		grid-template-columns: 1fr;
	}

	.trechao-category-grid,
	.trechao-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trechao-product__media {
		max-width: 720px;
	}
}

@media (max-width: 720px) {
	.trechao-shell {
		padding-left: 18px;
		padding-right: 18px;
	}

	.site-header .inside-header {
		min-height: 76px;
	}

	.trechao-header-logo {
		max-width: 190px;
	}

	.trechao-section {
		padding-bottom: 58px;
		padding-top: 58px;
	}

	.trechao-hero {
		padding: 70px 0;
	}

	.trechao-section-heading,
	.trechao-manifesto__inner,
	.trechao-final-cta {
		align-items: start;
		display: flex;
		flex-direction: column;
	}

	.trechao-category-grid,
	.trechao-product-grid,
	.trechao-guide-grid {
		grid-template-columns: 1fr;
	}

	.trechao-product__facts {
		grid-template-columns: 1fr;
	}

	.trechao-spec-strip {
		flex-direction: column;
		gap: 16px;
	}

	.trechao-final-cta {
		padding: 28px;
	}

	.trechao-final-cta .trechao-cta-wrap {
		min-width: 0;
		width: 100%;
	}
}
