
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/roboto-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
		U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
		U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/roboto-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
		U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
		U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
		U+A720-A7FF;
}

:root {
	--primary:  #EF6B2F;	--beige:    #E4D5CC;	--text:     #747474;	--overlay:  #1D1D1D;	--font-roboto: Roboto, sans-serif;
	--font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
	               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: #fff;
	color: #333;
	font-family: var(--font-system);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

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

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

.site-main { padding-bottom: 20px; }
.site-main:has(.legal) { padding-bottom: 0; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 16px 0;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

html { scroll-padding-top: 83px; }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo img { width: 129px; height: auto; display: block; }

.site-nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	display: block;
	padding: 8px 15px;
	color: var(--primary);
	text-decoration: none;
}

.nav-toggle { display: none; }


.site-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	margin-top: 10px;
	max-height: 0;
	overflow: hidden;
	transform: scaleY(0);
	transform-origin: top;
	transition: max-height .3s, transform .3s;
	z-index: 10000;
}

.site-nav-dropdown.open { max-height: 100vh; transform: scaleY(1); }

.site-nav-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
}

.site-nav-dropdown a {
	display: block;
	padding: 20px;
	background: #fff;
	color: #55595c;
	text-decoration: none;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .102);
}

.site-nav-dropdown a[aria-current="page"] { background: #55595c; color: #fff; }

.divider { padding: 15px 0; }

.divider::before {
	content: "";
	display: block;
	height: 20px;
	width: 45%;
	background: var(--primary);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%25' viewBox='0 0 24 24' fill='black' stroke='none'%3E%3Cpolygon points='9.4,2 24,2 14.6,21.6 0,21.6'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%25' viewBox='0 0 24 24' fill='black' stroke='none'%3E%3Cpolygon points='9.4,2 24,2 14.6,21.6 0,21.6'/%3E%3C/svg%3E");
	-webkit-mask-size: 20px 100%;
	mask-size: 20px 100%;
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
}

.divider--right::before  { margin-left: auto; }
.divider--center::before { margin: 0 auto; width: 25%; }

.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	min-height: 75vh;
	padding: 0 10px;
	background:
		linear-gradient(rgba(29, 29, 29, .56), rgba(29, 29, 29, .56)),
		var(--beige) url("/wp-content/uploads/2026/01/la-tecnologia-en-la-moto.webp") center / cover no-repeat;
}

.hero-block { width: 100%; max-width: 1140px; margin: 0 auto; padding: 10px; }

.hero h1 {
	margin: 20px 0 0;
	color: var(--beige);
	font-family: var(--font-roboto);
	font-size: 46px;
	font-weight: 600;
	line-height: 63px;
	letter-spacing: 6px;
	word-spacing: 12px;
}

.section--beige { background: var(--beige); }

.section-head { padding: 100px 10px 10px; }

.section-head h2 {
	max-width: 1140px;
	margin: 0 auto;
	color: var(--text);
	font-family: var(--font-roboto);
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.section-head .divider { max-width: 1140px; margin: 20px auto 0; }

.section--narrow .section-head h2,
.section--narrow .section-head .divider { max-width: 645px; }

.strip { height: 70px; }

.cols {
	display: flex;
	width: calc(100% - 20px);
	max-width: 1140px;
	margin: 0 auto;
	padding: 10px 0;
}

.col { width: 50%; padding: 10px; }

.col:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.col img { display: block; }

.col p {
	margin: 0 0 .9em;
	color: var(--text);
	font-family: var(--font-roboto);
}

.cards {
	display: flex;
	flex-wrap: wrap;
	max-width: 1160px;
	margin: 80px auto 0;
}

.card {
	display: flex;
	flex-direction: column;
	width: 33.333%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.card::after { content: ""; height: 20px; margin-top: auto; }

.card a { text-decoration: none; }

.card img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.card h3 {
	margin: 12px 0 0;
	font-size: 1.1em;
	line-height: 1.2;
}

.card h3 a { color: var(--primary); }

.card p {
	margin: 20px 0 8px;
	color: #333;
	font-family: var(--font-roboto);
	font-size: .9em;
	line-height: 1.2;
}

.section--products { padding-bottom: 60px; }
.section--contact  { padding-bottom: 70px; }

.contact-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 645px;
	margin: 30px auto 0;
	padding: 0 10px;
}


.product { padding-top: 80px; padding-bottom: 150px; }

.page-pulsadores-manillar .product { padding-bottom: 80px; }

.product-intro {
	display: flex;
	gap: 20px;
	padding: 10px;
}

.product-info { flex: 1; padding: 10px; }

.page-desconectador-de-bateria .product-photo { width: 35.45%; }
.page-pulsadores-manillar      .product-photo { width: 40.63%; }

.product-photo img { display: block; width: 100%; }

.product h2 {
	margin: 0;
	color: var(--primary);
	font-family: var(--font-roboto);
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
}

.product-info .divider,
.product-details .divider { margin-top: 20px; }

.product-info p,
.product-info ul,
.product-details p,
.product-details ul {
	margin: 20px 0 0;
	color: var(--text);
	font-family: var(--font-roboto);
}

.product-info p { margin-bottom: .9em; }
.product-info p + ul,
.product-details p + ul { margin-top: 0; }

.product-info ul,
.product-details ul { padding-left: 40px; }

.product-info li,
.product-details li { margin: 0; }

.btns { margin-top: 20px; padding: 10px; }

.btns p { margin: 0 0 20px; }

.btns p:first-of-type { margin-bottom: 40px; }
.btns p:last-child    { margin-bottom: 0; }

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 3px;
	background: var(--primary);
	color: #fff;
	font-family: var(--font-roboto);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	text-decoration: none;
}

.btn--gray { background: var(--text); font-weight: 400; border-radius: 0; }

.btn--icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 12px;
}

.btn--icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.product-details { margin-top: 90px; }

.product-details table {
	width: 100%;
	margin: 19px 0 15px;
	border-collapse: collapse;
	color: var(--text);
	font-family: var(--font-roboto);
	font-size: .9em;
	line-height: 1.5;
}

.product-details td {
	padding: 15px;
	border: 1px solid hsla(0, 0%, 50%, .5);
}

.product-details tbody { border-top: 2px solid hsla(0, 0%, 50%, .5); }

.product-details tr:nth-child(odd) td { background: hsla(0, 0%, 50%, .07); }

.legal {
	padding-top: 10px;
	padding-bottom: 10px;
	color: #000;
	font-family: "Times New Roman", serif;
	font-size: 12px;
	line-height: normal;
}

.legal h1 {
	margin: 0 0 29px;
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
}

.legal h2 {
	margin: 25px 0 5px;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
}

.legal h3 {
	margin: 0 0 5px;
	font-size: 13.5px;
	font-weight: 700;
	line-height: normal;
}

.legal p  { margin: 0 0 5px; }
.legal ul { margin: 0; padding-left: 40px; }
.legal li { margin: 0 0 5px; }
.legal a  { color: #00f; }

.legal .loose p,
.legal .loose li { line-height: 19px; }
.legal .loose li { margin: 0; }
.legal .loose h2 { margin-top: 29px; }
.legal .loose p:first-child { line-height: normal; }

.legal .dot { margin-left: 36px; }
.legal .dot + h2 { margin-top: 5px; }

.legal .gap4 { margin-top: 29px; }

.page-politica-de-privacidad .legal h1 { margin: 0 0 5px; }
.page-politica-de-privacidad .legal h1:not(:first-child) { margin-top: 25px; }
.page-politica-de-privacidad .legal h2 { margin-top: 0; }

.site-footer { padding: 16px 0; }

.site-footer ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer a {
	display: block;
	padding: 5px 15px;
	color: var(--text);
	text-decoration: none;
}


@media (max-width: 1199px) {
	.header-inner { max-width: 800px; padding: 0; }
}

@media (max-width: 1024px) {
	.hero h1 { line-height: 1.1em; }

	.page-desconectador-de-bateria .product-photo { width: 43.95%; }
	.page-pulsadores-manillar      .product-photo { width: 49.2%; }

	.btns p:nth-of-type(2) .btn--gray { max-width: 122px; }
	.btns p:nth-of-type(3) .btn--gray { max-width: 185px; }
}

@media (max-width: 991px) {
	.header-inner { max-width: 600px; }

	.site-nav { display: none; }

	.nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 8px 15px;
		padding: .5rem;
		border: 0;
		border-radius: 3px;
		background: rgba(0, 0, 0, .05);
		color: #494c4f;
		cursor: pointer;
	}

	.nav-toggle-icon { display: block; width: 1.25rem; }

	.nav-toggle-icon::before,
	.nav-toggle-icon::after {
		content: "";
		display: block;
		height: 3px;
		border-radius: 3px;
		background: currentColor;
		transition: all .2s ease-in-out;
	}

	.nav-toggle-icon::before {
		margin-bottom: .5rem;
		box-shadow: 0 .35rem 0 currentColor;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
		box-shadow: none;
		transform: translateY(.35rem) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
		transform: translateY(-.35rem) rotate(-45deg);
	}

	.card { width: 50%; }
}

@media (min-width: 992px) {
	.site-nav-dropdown { display: none; }
}

@media (max-width: 767px) {
	.header-inner { max-width: 500px; }
}

@media (max-width: 767px) {
	.hero h1 {
		font-size: 29px;
		line-height: 1.3em;
		letter-spacing: .1px;
		word-spacing: 5px;
	}

	.cols { flex-wrap: wrap; }
	.col  { width: 100%; }

	.card { width: 100%; }

	.product-intro { flex-wrap: wrap; }

	.page-desconectador-de-bateria .product-photo,
	.page-pulsadores-manillar      .product-photo { width: 100%; }

	.btns p:nth-of-type(2) .btn--gray { max-width: 49.7%; }
	.btns p:nth-of-type(3) .btn--gray { max-width: 82.1%; }
}

@media (max-width: 575px) {
	.header-inner { max-width: none; padding: 0 10px; }

	.site-footer ul { flex-direction: column; text-align: center; }
}
