:root {
	--mahle-red: #E30613;
	--mahle-red-dark: #B40510;
	--mahle-gold: #FDB813;
	--mahle-green: #5CB130;
	--asphalt: #15171c;
	--asphalt-2: #1e2128;
	--asphalt-deep: #0a0b0d;
	--paper: #f6f3ec;
	--ink: #1b1a17;
	--ink-soft: #56534c;
	--line: rgba(27,26,23,0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
	font-family: 'Oswald', 'Arial Narrow', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mahle-red);
}

.kicker::before {
	content: '';
	width: 26px;
	height: 2px;
	background: var(--mahle-gold);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 24px;
	background: rgba(10,11,13,0.55);
	transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.topbar.is-scrolled {
	background: rgba(10,11,13,0.92);
	backdrop-filter: blur(10px);
	padding: 8px 24px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.topbar .brand { display: flex; align-items: center; gap: 10px; }
.topbar .brand-logo { height: 78px; width: auto; }

.topbar .cta-mini {
	display: none;
	background: var(--mahle-red);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 999px;
}

@media (min-width: 640px) {
	.topbar .cta-mini { display: inline-block; }
}

.hero {
	position: relative;
	min-height: 100svh;
	background:
		linear-gradient(90deg, rgba(9,10,12,0.92) 0%, rgba(9,10,12,0.72) 38%, rgba(9,10,12,0.32) 68%, rgba(9,10,12,0.18) 100%),
		linear-gradient(0deg, rgba(9,10,12,0.6) 0%, transparent 32%),
		radial-gradient(1200px 600px at 15% -10%, rgba(227,6,19,0.18), transparent 60%),
		url('../img/bg-hero/estrada-curvada.jpg') center 55% / cover no-repeat;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 190px 24px 90px;
	overflow: hidden;
}

.hero .road-lines {
	display: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	max-width: 1160px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 900px) {
	.hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mahle-gold);
	margin-bottom: 18px;
}

.hero-eyebrow::before {
	content: '';
	width: 30px;
	height: 2px;
	background: var(--mahle-gold);
}

.hero h1 {
	font-size: clamp(46px, 9vw, 92px);
	line-height: 0.94;
	font-weight: 700;
	margin-bottom: 14px;
}

.hero h1 span {
	display: block;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
}

.hero .subline {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(18px, 2.6vw, 24px);
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--mahle-gold);
	text-transform: uppercase;
	margin-bottom: 22px;
}

.hero p.lead {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,0.78);
	max-width: 480px;
	margin-bottom: 34px;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 6px;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--mahle-red);
	color: #fff;
	border: none;
	font-family: 'Oswald', sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 18px 30px;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(227,6,19,0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(227,6,19,0.45);
	background: var(--mahle-red-dark);
}

.btn-primary .play-dot {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
}

.saiba-mais-section {
	background: var(--paper);
	padding: 90px 0 100px;
}

.saiba-mais-section .section-head-center {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 44px;
}

.saiba-mais-section .kicker { justify-content: center; }

.saiba-mais-section h2 {
	font-size: clamp(28px, 4.5vw, 42px);
	margin-top: 12px;
}

.button-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 560px;
	margin: 0 auto;
}

.stack-btn {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 20px 22px;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ink);
	box-shadow: 0 6px 18px rgba(27,26,23,0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.stack-btn:hover {
	transform: translateY(-3px);
	border-color: var(--mahle-red);
	box-shadow: 0 12px 26px rgba(27,26,23,0.1);
}

.stack-btn .btn-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(227,6,19,0.08);
	color: var(--mahle-red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.stack-btn .btn-label { flex: 1; text-align: left; }

.stack-btn .btn-arrow {
	color: var(--ink-soft);
	font-size: 14px;
	transition: transform 0.2s ease;
}

.stack-btn:hover .btn-arrow { transform: translateX(4px); color: var(--mahle-red); }

.hero-photo {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 0;
}

.hero-photo .stage {
	position: relative;
	width: min(560px, 98%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-photo .glow {
	position: absolute;
	width: 120%;
	padding-bottom: 120%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, rgba(227,6,19,0.4) 0%, rgba(227,6,19,0.12) 38%, transparent 62%),
		radial-gradient(circle at 65% 35%, rgba(253,184,19,0.28) 0%, transparent 55%);
	filter: blur(4px);
	animation: pulseGlow 6s ease-in-out infinite;
	z-index: 0;
}

.hero-photo .ring {
	position: absolute;
	width: 78%;
	padding-bottom: 78%;
	border-radius: 50%;
	border: 1px dashed rgba(253,184,19,0.35);
	z-index: 0;
}

.hero-photo .ground {
	position: absolute;
	bottom: 6%;
	width: 74%;
	height: 34px;
	background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 72%);
	z-index: 0;
}

@keyframes pulseGlow {
	0%, 100% { transform: scale(1); opacity: 0.85; }
	50% { transform: scale(1.07); opacity: 1; }
}

.hero-photo .truck-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	animation: float 5s ease-in-out infinite;
}

.hero-photo .truck-wrap img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 26px 30px rgba(0,0,0,0.5));
}

.hero-photo .tag {
	position: absolute;
	top: 4%;
	right: 2%;
	z-index: 2;
	background: var(--mahle-green);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 8px 12px;
	border-radius: 999px;
	transform: rotate(-6deg);
	box-shadow: 0 8px 16px rgba(0,0,0,0.35);
}

.hero-photo .caption {
	position: relative;
	z-index: 2;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.65);
	text-align: center;
	margin-top: 8px;
	text-transform: uppercase;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.scroll-cue {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.55);
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	z-index: 2;
}

.scroll-cue .bar {
	width: 1px;
	height: 34px;
	background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
	animation: scrolldown 1.8s ease-in-out infinite;
}

@keyframes scrolldown {
	0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
	40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
	60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
	100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

section { position: relative; }

.video-section {
	background: var(--ink);
	color: #fff;
	padding: 100px 0;
}

.video-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
}

.video-head h2 {
	font-size: clamp(30px, 5vw, 46px);
	color: #fff;
	margin-top: 12px;
}

.video-head p {
	color: rgba(255,255,255,0.65);
	margin-top: 14px;
	line-height: 1.6;
}

.video-frame {
	max-width: 900px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, #26292f, #0e0f12);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,0.08);
}

.video-frame .placeholder {
	text-align: center;
	color: rgba(255,255,255,0.55);
}

.video-frame .play-btn {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: var(--mahle-red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	box-shadow: 0 0 0 14px rgba(227,6,19,0.12);
}

.video-frame .play-btn { font-size: 22px; color: #fff; }
.video-frame .play-btn i { margin-left: 4px; }

.video-frame .badge-soon {
	display: inline-block;
	margin-top: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mahle-gold);
	border: 1px solid rgba(253,184,19,0.4);
	padding: 6px 14px;
	border-radius: 999px;
}

.historia-section { background: var(--paper); padding: 110px 0; }

.historia-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	margin-top: 26px;
}

@media (min-width: 900px) {
	.historia-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
}

.historia-section h2 {
	font-size: clamp(32px, 5vw, 52px);
	margin-top: 12px;
	line-height: 1.02;
}

.historia-text p {
	font-size: 16.5px;
	line-height: 1.85;
	color: var(--ink-soft);
	margin: 0 0 20px;
}

.historia-text strong { color: var(--ink); }

.pull-fact {
	background: var(--asphalt);
	color: #fff;
	border-radius: 14px;
	padding: 28px 26px;
	margin-top: 8px;
}

.pull-fact .num {
	font-family: 'Oswald', sans-serif;
	font-size: 46px;
	font-weight: 700;
	color: var(--mahle-gold);
	line-height: 1;
}

.pull-fact p {
	margin-top: 10px;
	font-size: 14.5px;
	color: rgba(255,255,255,0.72);
	line-height: 1.6;
}

.timeline {
	position: relative;
	padding-left: 28px;
	border-left: 2px solid var(--line);
}

.timeline-item {
	position: relative;
	padding-bottom: 34px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
	content: '';
	position: absolute;
	left: -34px;
	top: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--mahle-red);
	border: 3px solid var(--paper);
	box-shadow: 0 0 0 2px var(--mahle-red);
}

.timeline-item .year {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: var(--mahle-red);
}

.timeline-item p {
	margin: 6px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink-soft);
}

.outras-lendas-section { background: #fff; padding: 110px 0; border-top: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 46px; }

.section-head h2 {
	font-size: clamp(30px, 5vw, 46px);
	margin-top: 12px;
}

.section-head p {
	margin-top: 14px;
	color: var(--ink-soft);
	line-height: 1.6;
	font-size: 16px;
}

.lendas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
}

.lenda-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(rgba(10,11,13,0.4), rgba(10,11,13,0.4)), var(--asphalt) url('../img/estrada-reta.jpg') no-repeat;
	background-size: 300% 130%;
	aspect-ratio: 3 / 4;
}

.lenda-card:nth-child(1) { background-position: 0% 50%; animation: lenda-bg-drift-1 24s ease-in-out infinite; }
.lenda-card:nth-child(2) { background-position: 50% 50%; animation: lenda-bg-drift-2 24s ease-in-out infinite; }
.lenda-card:nth-child(3) { background-position: 100% 50%; animation: lenda-bg-drift-3 24s ease-in-out infinite; }

@keyframes lenda-bg-drift-1 {
	0%, 100% { background-position: 0% 47%; }
	50% { background-position: 0% 53%; }
}
@keyframes lenda-bg-drift-2 {
	0%, 100% { background-position: 50% 47%; }
	50% { background-position: 50% 53%; }
}
@keyframes lenda-bg-drift-3 {
	0%, 100% { background-position: 100% 47%; }
	50% { background-position: 100% 53%; }
}

.lenda-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.35) sepia(0.15) saturate(1.4) contrast(1.05);
	transition: transform 0.5s ease, opacity 0.5s ease;
	animation: lenda-truck-float 9s ease-in-out infinite;
}

@keyframes lenda-truck-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-2px) scale(1); }
}

.lenda-card:hover img { animation-play-state: paused; transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
	.lenda-card, .lenda-card img { animation: none; }
}

.lenda-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,11,13,0.05) 40%, rgba(10,11,13,0.9));
}

.lenda-card .ribbon {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	background: var(--mahle-gold);
	color: var(--asphalt-deep);
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
}

.lenda-card .info {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
}

.lenda-card .info .label {
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
}

.lenda-card .info h3 {
	font-size: 20px;
	margin-top: 4px;
}

.colecao-section {
	position: relative;
	background: #000;
	overflow: hidden;
}

.colecao-media {
	position: relative;
	height: 620px;
	overflow: hidden;
}

.colecao-media img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 130%;
	transform: translateY(-50%);
	object-fit: cover;
	object-position: center 35%;
	display: block;
	opacity: 0.94;
	will-change: transform;
}

@media (max-width: 640px) {
	.colecao-media { height: 420px; }
}

.colecao-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(0deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.6) 32%, rgba(0,0,0,0.05) 70%, transparent 100%);
	padding-bottom: 56px;
}

.colecao-overlay h2 {
	color: #fff;
	font-size: clamp(28px, 4.5vw, 44px);
	margin-top: 12px;
	max-width: 640px;
}

.colecao-overlay p {
	color: rgba(255,255,255,0.72);
	margin-top: 14px;
	max-width: 460px;
	line-height: 1.6;
	font-size: 15.5px;
}

.colecao-overlay .kicker::before { background: #FDB813; }

.contato-section {
	background: var(--asphalt);
	color: #fff;
	padding: 110px 0;
}

.contato-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 44px;
}

@media (min-width: 900px) {
	.contato-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
}

.contato-section .kicker { color: var(--mahle-gold); }
.contato-section .kicker::before { background: var(--mahle-red); }

.contato-section h2 {
	color: #fff;
	font-size: clamp(30px, 5vw, 44px);
	margin-top: 12px;
	line-height: 1.05;
}

.contato-section p.desc {
	margin-top: 16px;
	color: rgba(255,255,255,0.65);
	line-height: 1.7;
	max-width: 420px;
}

.form-card {
	background: #fff;
	color: var(--ink);
	border-radius: 18px;
	padding: 36px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 0;
	height: 0;
	overflow: hidden;
}

.form-row { margin-bottom: 18px; }

.form-row label {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 8px;
}

.form-row input {
	width: 100%;
	border: 1px solid rgba(27,26,23,0.16);
	border-radius: 10px;
	padding: 13px 15px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--ink);
	background: #faf9f6;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input:focus {
	outline: none;
	border-color: var(--mahle-red);
	background: #fff;
}

.form-card button {
	width: 100%;
	background: var(--mahle-red);
	color: #fff;
	border: none;
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 16px;
	border-radius: 10px;
	margin-top: 6px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.form-card button:hover { background: var(--mahle-red-dark); transform: translateY(-2px); }
.form-card button:disabled { opacity: .65; cursor: not-allowed; transform: none; }


.rede-mahle-section {
	background: var(--paper);
	padding: 90px 0;
}

.rede-mahle-card {
	background: linear-gradient(120deg, var(--mahle-red), var(--mahle-red-dark));
	border-radius: 22px;
	padding: 50px 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	box-shadow: 0 30px 60px rgba(227,6,19,0.25);
}

.rede-mahle-card .text h2 {
	font-size: clamp(26px, 4vw, 36px);
	color: #fff;
}

.rede-mahle-card .text p {
	margin-top: 10px;
	color: rgba(255,255,255,0.85);
	max-width: 460px;
	line-height: 1.6;
}

.rede-mahle-card .btn-white {
	background: #fff;
	color: var(--mahle-red);
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 14px;
	padding: 16px 28px;
	border-radius: 999px;
	white-space: nowrap;
	transition: transform 0.2s ease;
	display: inline-block;
}

.rede-mahle-card .btn-white:hover { transform: translateY(-3px); }

.disclaimer-section {
	background: var(--paper);
	padding: 0 0 40px;
}

.disclaimer-box {
	border-top: 1px solid var(--line);
	padding-top: 30px;
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	max-width: 760px;
}

.info-strip {
	background: var(--paper);
	padding: 40px 0 60px;
	border-bottom: 1px solid var(--line);
}

.info-strip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}

.info-strip .item .label {
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.info-strip .item .value {
	margin-top: 6px;
	font-size: 15.5px;
	font-weight: 600;
}

.footer-banner {
	position: relative;
	min-height: 340px;
	background:
		linear-gradient(90deg, rgba(10,11,13,0.75), rgba(10,11,13,0.25)),
		linear-gradient(135deg, #2a2d33, #0d0e10);
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.footer-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 26px);
}

.footer-banner .inner {
	position: relative;
	z-index: 2;
	max-width: 1160px;
	margin: 0 auto;
	padding: 60px 24px;
	width: 100%;
}

.footer-banner .tag {
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mahle-gold);
	border: 1px solid rgba(253,184,19,0.4);
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.footer-banner h3 {
	font-size: clamp(24px, 4vw, 34px);
	color: #fff;
	max-width: 560px;
	line-height: 1.15;
}

.footer-banner p.spec {
	margin-top: 14px;
	color: rgba(255,255,255,0.55);
	font-size: 13px;
	max-width: 480px;
	line-height: 1.6;
}

footer.site-footer {
	background: var(--asphalt-deep);
	color: rgba(255,255,255,0.6);
	padding: 40px 0;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.footer-bottom .brand { display: flex; align-items: center; gap: 10px; }
.footer-bottom .brand-logo { height: 30px; width: auto; }

.social-row { display: flex; gap: 10px; }

.social-row a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.social-row a:hover { border-color: var(--mahle-gold); background: rgba(253,184,19,0.08); }
.social-row a { font-size: 15px; color: rgba(255,255,255,0.75); }

.footer-bottom .copy { font-size: 12.5px; }

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 200;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 10px 26px rgba(37,211,102,0.5);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	box-shadow: 0 14px 32px rgba(37,211,102,0.6);
	color: #fff;
}

@media (max-width: 640px) {
	.whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; font-size: 25px; }
}

.sub-footer {
	background: #0F0F1E;
	height: 50px;
	width: 100%;
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #fff;
	font-family: sans-serif;
	font-weight: 500;
}
.sub-footer:hover {color: #fff;}

.sub-footer img {
	height: 30px;
}

.back-to-top {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 200;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(10,11,13,0.85);
	border: 1px solid rgba(255,255,255,0.15);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--mahle-red);
	border-color: var(--mahle-red);
	color: #fff;
}

@media (max-width: 640px) {
	.back-to-top { left: 16px; bottom: 16px; width: 46px; height: 46px; font-size: 20px; }
}

.btn-subir-menu {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 36px;
	padding: 12px 24px;
	background: var(--asphalt-deep);
	border: 1px solid rgba(255,255,255,0.14);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-subir-menu i {
	font-size: 13px;
}

.btn-subir-menu:hover {
	background: var(--mahle-red);
	border-color: var(--mahle-red);
	transform: translateY(-2px);
}

.video-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #000;
}

.video-play-btn {
	position: relative;
	z-index: 2;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: var(--mahle-red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	box-shadow: 0 0 0 14px rgba(227,6,19,0.12);
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}

.video-play-btn i { margin-left: 4px; }

.video-play-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 0 0 18px rgba(227,6,19,0.16);
}

.video-play-btn.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.85);
}
