/* =========================================================================
   Grupo Beyond — main.css
   Variables · reset · tipografía · componentes · plantillas · responsive
   Paleta oficial (brief §3). Solo modo claro hoy; dark mode es fase 2.
   ========================================================================= */

/* ---- Fuente autohosteada --------------------------------------------------
 *
 * font-display: optional → si la fuente carga en <100ms (siempre, gracias al
 * preload con fetchpriority="high" + cache de Kinsta/Cloudflare), se renderea
 * con Inter. Si no, queda el fallback PERMANENTEMENTE para esa sesión: sin
 * "swap" = sin shift del LCP candidate (el <h1> del hero) = Lighthouse mide
 * LCP/TBT correctamente. Tradeoff aceptado: en primera visita con red lenta
 * el usuario ve fallback (system-ui) por esa sesión.
 *
 * "Inter Fallback" usa system-ui con métricas ajustadas (size-adjust,
 * ascent-override) para que las dimensiones del texto coincidan con Inter
 * y no haya CLS visual entre la primera visita y la cacheada.
 * --------------------------------------------------------------------------- */
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: optional;
	src: url("../fonts/Inter-Variable.woff2") format("woff2");
}

@font-face {
	font-family: "Inter Fallback";
	src: local("Arial");
	ascent-override: 90%;
	descent-override: 22%;
	line-gap-override: 0%;
	size-adjust: 107%;
}

/* ---- Variables ------------------------------------------------------------ */
:root {
	/* Marca madre */
	--beyond-teal: #1AA5B5;
	--beyond-navy: #003E5C;
	/* Teal oscurecido SOLO para texto pequeño sobre fondo claro.
	 * #1AA5B5 sobre blanco da 3.05:1 (FAIL WCAG AA 4.5:1 para texto <18px).
	 * #0E7A88 sobre blanco da 5.4:1 (PASS WCAG AA). Visualmente casi idéntico. */
	--beyond-teal-text: #0E7A88;

	/* Categorías */
	--promos:  #004D71;
	--fabric:  #789C4A;
	--office:  #5E7775;
	--unik:    #CB9700;
	--protect: #FF6B00;

	/* Neutros */
	--off-white: #FAFAF7;
	--warm-gray: #F1EFE8;
	--line:      #E5E5E0;
	--muted:     #5E6B73;
	--tertiary:  #888780;

	/* Acento dinámico (lo fija header.php por vista; teal por defecto).
	 * --accent → para botones, fills grandes, decoración (3:1 OK).
	 * --accent-text → versión más oscura para texto pequeño (eyebrows, labels). */
	--accent: #1AA5B5;
	--accent-text: #0E7A88;

	/* Radios */
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 20px;

	/* Layout */
	--container: 1280px;
	--gutter: clamp(20px, 5vw, 60px);

	/* Sistema de spacing — reglas universales (consistencia vertical + container) */
	--section-padding-y: 96px;          /* desktop */
	--section-padding-y-mobile: 64px;   /* mobile */
	--section-gap-internal: 48px;       /* entre (eyebrow+h2+lead) y el contenido */
	--container-max-width: 1280px;
	--container-padding-x: 32px;
	--container-padding-x-mobile: 24px;

	/* Tipografía */
	--font: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

/* Spacing responsivo: cambiar las variables en un solo lugar (sin !important) */
@media (max-width: 768px) {
	:root {
		--section-padding-y: var(--section-padding-y-mobile);
		--container-padding-x: var(--container-padding-x-mobile);
	}
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--beyond-navy);
	background: var(--off-white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }

/* ---- Utilidades ----------------------------------------------------------- */
.container,
.section-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-inline: auto;
	padding-inline: var(--container-padding-x);
}
.container--narrow { max-width: 760px; }

/* Regla universal: mismo padding vertical en todas las secciones */
.section { padding: var(--section-padding-y) 0; }

.eyebrow {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--muted);
	margin-bottom: 18px;
}
.eyebrow--accent { color: var(--accent-text); }
.eyebrow--accent::before { content: "— "; }

.mono { font-family: var(--font-mono); }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--beyond-navy);
	color: #fff;
	padding: 12px 18px;
	border-radius: var(--radius-sm);
	z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- Botones -------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--beyond-navy); color: #fff; }
.btn--primary:hover { box-shadow: 0 8px 24px rgba(0, 62, 92, 0.18); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14); }
.btn--ghost { background: transparent; color: var(--beyond-navy); border-color: var(--beyond-navy); }
.btn--ghost:hover { background: var(--beyond-navy); color: #fff; }
.btn--lg { padding: 18px 32px; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Header --------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-header__bar { height: 4px; background: var(--accent); }
.site-header__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: 14px var(--container-padding-x);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-logo {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
	color: var(--beyond-navy);
	flex-shrink: 0;
}
.site-logo span { color: var(--beyond-teal); }
.site-logo__img { display: block; height: 40px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
	display: inline-block;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 8px;
	color: var(--muted);
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}
.nav-menu a:hover { background: var(--warm-gray); color: var(--accent); }
.nav-menu .current-menu-item > a { color: var(--accent); font-weight: 500; }
.nav-menu .current-menu-item > a::after {
	content: "";
	display: block;
	height: 2px;
	margin-top: 3px;
	border-radius: 2px;
	background: var(--accent);
}

.site-cta {
	flex-shrink: 0;
	background: var(--accent);
	color: #fff;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: transform 0.15s, box-shadow 0.15s;
}
.site-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); }
.site-cta--mobile { display: none; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
}
.nav-toggle__bar {
	width: 22px;
	height: 2px;
	background: var(--beyond-navy);
	border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}

/* ---- Hero (home) ---------------------------------------------------------- */
.hero { padding: clamp(40px, 6vw, 76px) 0 clamp(32px, 5vw, 60px); }
.hero__title {
	font-size: clamp(44px, 8vw, 84px);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.035em;
	color: var(--beyond-navy);
	margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: var(--beyond-teal); }
.hero__lead {
	font-size: clamp(16px, 2vw, 18px);
	color: var(--muted);
	line-height: 1.55;
	max-width: 600px;
	margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Bento grid ----------------------------------------------------------- */
.bento-section { padding-bottom: clamp(40px, 6vw, 72px); }
.bento {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-auto-rows: 220px;
	gap: 12px;
}
.bento__item { display: contents; }
.bento__card {
	position: relative;
	isolation: isolate; /* contiene el mix-blend-mode al propio card */
	height: 100%;
	border-radius: var(--radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #fff;
	text-decoration: none;
	background: var(--card-color, var(--beyond-navy));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}
.bento__card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18); }
.bento__card--featured { grid-row: span 2; }

/* Duotone tenue: la foto hero como textura sobre el color de marca */
.bento__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.25;             /* imagen muy tenue — solo textura */
	mix-blend-mode: overlay;
	z-index: 0;
	transition: opacity 0.3s ease, transform 0.5s ease;
}
.bento__card:hover .bento__bg { opacity: 0.35; transform: scale(1.05); }
.bento__top,
.bento__arrow { position: relative; z-index: 1; } /* contenido siempre encima */
.bento__tag {
	display: block;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 500;
	opacity: 0.7;
	margin-bottom: 12px;
}
.bento__title { font-size: 28px; font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
.bento__card--featured .bento__title { font-size: clamp(30px, 4vw, 40px); }
.bento__meta { font-size: 13px; opacity: 0.85; margin-top: 8px; max-width: 22ch; }
.bento__arrow { font-size: 22px; opacity: 0.85; align-self: flex-end; }

/* ---- Stats ---------------------------------------------------------------- */
.stats { background: #fff; border-block: 1px solid var(--line); }
.stats .container { padding-block: clamp(36px, 5vw, 50px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding-inline: clamp(16px, 3vw, 32px); border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat__num {
	font-size: clamp(40px, 6vw, 56px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--beyond-navy);
}
.stat__label {
	font-size: 12px;
	color: var(--muted);
	margin-top: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ---- Clientes (grid estático) --------------------------------------------- */
.clients-grid-section {
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.clients-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px 24px;
	align-items: center;
	justify-items: center;
}
.client-cell {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
}
.client-cell img {
	max-width: 100%;
	max-height: 44px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.65;
	filter: grayscale(100%);
	transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.client-cell:hover img {
	opacity: 1;
	filter: grayscale(0);
	transform: scale(1.08);
}
@media (max-width: 1024px) {
	.clients-grid { grid-template-columns: repeat(4, 1fr); }
	.client-cell img { max-height: 40px; }
}
@media (max-width: 640px) {
	.clients-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 12px; }
	.client-cell { padding: 0 6px; }
	.client-cell img { max-height: 32px; }
}

/* ---- Testimonios (carrusel) ----------------------------------------------- */
.testimonials-carousel-section { background: var(--off-white); }
.testi-carousel-wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.testi-carousel {
	flex: 1;
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 4px;
	margin: -4px;
}
.testi-carousel::-webkit-scrollbar { display: none; }
.testi-card {
	flex: 0 0 calc(33.333% - 11px);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	min-height: 260px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 62, 92, 0.08); }
.testi-stars { display: flex; gap: 2px; color: var(--beyond-teal); margin-bottom: 18px; }
.testi-quote { font-size: 15px; line-height: 1.55; color: var(--beyond-navy); margin: 0 0 24px; flex-grow: 1; letter-spacing: -0.003em; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: var(--beyond-navy); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 500; color: var(--beyond-navy); line-height: 1.3; }
.testi-company { font-size: 12px; color: var(--muted); line-height: 1.3; }
.testi-nav { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--beyond-navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, border-color 0.15s, transform 0.15s; flex-shrink: 0; }
.testi-nav:hover { background: var(--beyond-navy); color: #fff; border-color: var(--beyond-navy); }
.testi-nav:active { transform: scale(0.96); }
@media (max-width: 1024px) {
	.testi-card { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 640px) {
	.testi-carousel-wrap { gap: 8px; }
	.testi-card { flex: 0 0 calc(100% - 8px); padding: 24px 20px; min-height: 220px; }
	.testi-nav { width: 36px; height: 36px; }
}

/* ---- Breadcrumbs ---------------------------------------------------------- */
.breadcrumbs { font-size: 13px; color: var(--muted); }
.breadcrumbs .container { padding-block: 20px; display: flex; gap: 8px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs__current { color: var(--accent); font-weight: 500; }

/* ---- Categoría: hero ------------------------------------------------------ */
.cat-hero { padding: clamp(24px, 3vw, 40px) 0 clamp(20px, 2.5vw, 28px); }
/* Trust strip después del hero: padding top intermedio — aire suficiente para
   respirar pero menos que el padding por defecto (era 40-64px). */
.cat-hero + .gb-trust-strip { padding-top: clamp(24px, 3vw, 36px); }
.cat-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(28px, 5vw, 60px);
	align-items: center;
}
.cat-hero__title {
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--beyond-navy);
	margin-bottom: 20px;
}
.cat-hero__lead { font-size: clamp(15px, 2vw, 16px); color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.cat-hero-image {
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--warm-gray);
}
.cat-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cat-hero-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--font-mono);
	font-size: 12px;
	opacity: 0.9;
	text-align: center;
	padding: 16px;
}

/* ---- Categoría: catálogo próximamente ------------------------------------- */
.catalog-soon { padding-block: clamp(16px, 3vw, 24px) clamp(40px, 6vw, 60px); }
.catalog-soon__card {
	background: var(--warm-gray);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	padding: clamp(36px, 6vw, 64px);
	text-align: center;
}
.catalog-soon__badge {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--accent);
	background: #fff;
	border: 1px solid var(--line);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 20px;
}
.catalog-soon__title {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 500;
	color: var(--beyond-navy);
	max-width: 18ch;
	margin: 0 auto 16px;
}
.catalog-soon__lead { font-size: 15px; color: var(--muted); max-width: 52ch; margin: 0 auto 28px; line-height: 1.6; }

/* ---- Industrias ----------------------------------------------------------- */
.industries { background: #fff; border-top: 1px solid var(--line); }
.industries .container { padding-block: clamp(40px, 5vw, 50px); }
.industries__title {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 500;
	margin-bottom: 20px;
}
.industries__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.industries__item {
	background: var(--off-white);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 24px 16px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: var(--beyond-navy);
}

/* ---- Banda CTA ------------------------------------------------------------ */
.cta-band { background: var(--beyond-navy); color: #fff; }
.cta-band__grid {
	padding-block: clamp(32px, 4vw, 44px);
	display: grid;
	grid-template-columns: 1.5fr auto;
	gap: 32px;
	align-items: center;
}
.cta-band__title { font-size: clamp(24px, 4vw, 36px); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
.cta-band__sub { font-size: 14px; opacity: 0.7; margin-top: 8px; }

/* ---- Contacto ------------------------------------------------------------- */
.contact-hero { padding: clamp(48px, 7vw, 72px) 0 clamp(28px, 4vw, 40px); }
.contact-hero__title { font-size: clamp(36px, 6vw, 52px); font-weight: 500; letter-spacing: -0.025em; color: var(--beyond-navy); margin-bottom: 14px; }
.contact-hero__lead { font-size: 16px; color: var(--muted); max-width: 56ch; line-height: 1.55; }

.contact { padding-bottom: clamp(56px, 8vw, 96px); }
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: clamp(20px, 3vw, 36px);
	align-items: stretch;
}

/* Tarjeta lateral con info de contacto (mismo estilo visual que el form) */
.contact__info {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 36px);
	display: flex;
	flex-direction: column;
}
.contact__info-title,
.contact__info .contact__info-title {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 500;
	margin: 0 0 24px;
}

/* Lista de canales con separadores horizontales suaves */
.contact__channels { display: grid; gap: 0; margin-bottom: 28px; padding: 0; list-style: none; }
.contact__channels li {
	display: grid;
	gap: 6px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}
.contact__channels li:first-child { padding-top: 0; }
.contact__channels li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact__channels a { color: var(--beyond-navy); text-decoration: none; font-weight: 500; font-size: 16px; transition: color 0.15s ease; }
.contact__channels a:hover { color: var(--accent); }
.contact__channels li > span:last-child { color: var(--beyond-navy); font-size: 15px; line-height: 1.5; }
.contact__channel-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tertiary); font-weight: 500; }

/* Trust badges: sin líneas verticales, sin pegado a la línea superior */
.contact__trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	border-top: 1px solid var(--line);
	padding-top: 28px;
	margin-top: auto;
}
.trust-item {
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
}
.trust-item__num {
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--beyond-navy);
	margin: 0 0 10px;
}
.trust-item__label {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 500;
	margin: 0;
}

/* ---- Form ----------------------------------------------------------------- */
.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 36px); }

/* ---- Single producto (PDP v2) -------------------------------------------- */
.pdp { padding: 24px 0 64px; }
.pdp-crumbs { font-size: 12px; color: var(--muted); margin-bottom: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pdp-crumbs a { color: var(--muted); text-decoration: none; }
.pdp-crumbs a:hover { color: var(--accent); }
.pdp-crumbs .last { color: var(--beyond-navy); }

.pdp-main { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 48px); align-items: start; margin-bottom: 48px; }

.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-gallery__main { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--off-white); border: 1px solid var(--line); }
.pdp-gallery__main img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 24px; }
.pdp-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.pdp-gallery__thumbs .thumb { aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; border: 1px solid var(--line); background: var(--off-white); transition: border-color 0.15s; }
.pdp-gallery__thumbs .thumb:hover { border-color: var(--beyond-navy); }
.pdp-gallery__thumbs .thumb.active { border: 2px solid var(--accent); }
.pdp-gallery__thumbs .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.pdp-info { display: flex; flex-direction: column; gap: 18px; }

.pdp-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pdp-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.pdp-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.pdp-badge--top { background: #FAEEDA; color: #633806; }
.pdp-badge--top svg { color: #BA7517; }

.pdp-title { font-size: clamp(28px, 4vw, 40px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; margin: 0; color: var(--beyond-navy); }

.pdp-trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.pdp-rating { display: inline-flex; align-items: center; gap: 5px; }
.pdp-rating strong { color: var(--beyond-navy); font-weight: 500; }
.pdp-rating__count { color: var(--muted); }
.pdp-divider { width: 1px; height: 14px; background: var(--line); }
.pdp-stock-inline { display: inline-flex; align-items: center; gap: 6px; color: #0F6E56; font-weight: 500; }
.pdp-stock-inline strong { font-weight: 600; }

.pdp-sku { font-size: 12px; color: var(--tertiary); font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; margin: 0; letter-spacing: 0.04em; }
.pdp-desc { font-size: 14px; color: var(--beyond-navy); line-height: 1.6; margin: 0; }
.pdp-desc p { margin: 0; }

.pdp-section { margin-top: 4px; }
.pdp-section-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin: 0 0 12px; }
.pdp-section-label #varColorLabel { color: var(--beyond-navy); text-transform: none; letter-spacing: 0; font-weight: 500; }

.pdp-colors { display: flex; flex-wrap: wrap; gap: 8px; }
.cs { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-size: 13px; color: var(--beyond-navy); font-family: inherit; transition: all 0.15s; }
.cs:hover { border-color: var(--beyond-navy); }
.cs.active { border: 2px solid var(--accent); padding: 5px 13px 5px 5px; }
.cs.is-out { opacity: 0.5; }
.cs-dot { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); display: inline-block; flex-shrink: 0; }
.cs-label { font-weight: 500; }
.cs-stock { font-size: 11px; color: var(--tertiary); margin-left: 2px; }

.pdp-stock-line { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #E1F5EE; border-radius: var(--radius-md); font-size: 13px; color: #0F6E56; }
.pdp-stock-line strong { color: #085041; font-weight: 600; }

.pdp-benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pdp-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--beyond-navy); line-height: 1.45; }
.pdp-benefits svg { margin-top: 3px; flex-shrink: 0; }

.pdp-confirm { padding: 10px 14px; background: var(--off-white); border-radius: var(--radius-md); font-size: 13px; color: var(--beyond-navy); margin-top: 4px; }
.pdp-confirm strong { color: var(--beyond-navy); font-weight: 500; }

.pdp-cta-row { display: flex; gap: 10px; align-items: stretch; margin-top: 4px; }
.pdp-qty { display: flex; flex-direction: column; gap: 4px; }
.pdp-qty__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.pdp-qty__input { width: 90px; height: 56px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0 14px; font-size: 16px; font-family: inherit; font-weight: 500; color: var(--beyond-navy); text-align: center; background: #fff; }
.pdp-qty__input:focus { outline: none; border-color: var(--accent); }
.pdp-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 80px; padding: 0 24px; margin-top: 18px; background: var(--beyond-navy); color: #fff; border: none; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.15s, transform 0.15s; font-family: inherit; letter-spacing: -0.005em; }
.pdp-cta:hover { background: var(--accent); transform: translateY(-1px); }
.pdp-cta-sub { font-size: 12px; color: var(--muted); text-align: center; margin: 0; }

.pdp-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 32px 0; margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pdp-trust__item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 0 12px; }
.pdp-trust__item svg { color: var(--accent); }
.pdp-trust__item strong { font-size: 13px; font-weight: 500; color: var(--beyond-navy); line-height: 1.3; }
.pdp-trust__item span { font-size: 12px; color: var(--muted); line-height: 1.45; }

.pdp-testimonial { display: flex; align-items: flex-start; gap: 16px; padding: 40px 0; }
.pdp-testimonial > svg { flex-shrink: 0; opacity: 0.5; }
.pdp-testimonial blockquote { margin: 0; flex: 1; }
.pdp-testimonial p { font-size: 20px; color: var(--beyond-navy); margin: 0 0 12px; line-height: 1.4; font-weight: 500; letter-spacing: -0.01em; }
.pdp-testimonial footer { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.pdp-testimonial footer strong { color: var(--beyond-navy); font-weight: 500; }
.pdp-testimonial__avatar { width: 36px; height: 36px; border-radius: 50%; background: #E1F5EE; color: #085041; display: inline-flex; align-items: center; justify-content: center; font-weight: 500; font-size: 13px; }

.pdp-specs { padding: 32px 0; }
.pdp-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin: 0; }
.pdp-spec { background: #fff; padding: 14px 18px; display: flex; flex-direction: column; gap: 4px; }
.pdp-spec dt { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.pdp-spec dd { font-size: 14px; color: var(--beyond-navy); font-weight: 500; margin: 0; }

@media (max-width: 820px) {
	.pdp-main { grid-template-columns: 1fr; }
	.pdp-trust { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.pdp-specs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.pdp-cta-row { flex-wrap: wrap; }
	.pdp-qty { width: 100%; }
	.pdp-qty__input { width: 100%; }
	.pdp-cta { width: 100%; height: 64px; margin-top: 0; }
	.pdp-trust { grid-template-columns: 1fr; }
	.pdp-testimonial { flex-direction: column; }
	.pdp-testimonial p { font-size: 17px; }
}

/* ---- Proyectos ------------------------------------------------------------ */
.proyectos-hero { padding: clamp(48px, 7vw, 72px) 0 clamp(20px, 3vw, 28px); }
.proyectos-hero__title { font-size: clamp(36px, 6vw, 52px); font-weight: 500; letter-spacing: -0.025em; color: var(--beyond-navy); margin: 8px 0 14px; }
.proyectos-hero__lead { font-size: 16px; color: var(--muted); max-width: 64ch; line-height: 1.55; }

.proyectos { padding-bottom: clamp(64px, 9vw, 96px); }
.proyectos__filters { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.proyecto-chip { background: transparent; border: 1px solid var(--line); color: var(--beyond-navy); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s ease; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; }
.proyecto-chip:hover { border-color: var(--beyond-navy); }
.proyecto-chip.is-active { background: var(--beyond-navy); color: #fff; border-color: var(--beyond-navy); }
.proyecto-chip__count { font-size: 11px; opacity: 0.7; background: rgba(0,0,0,0.06); padding: 2px 8px; border-radius: 999px; }
.proyecto-chip.is-active .proyecto-chip__count { background: rgba(255,255,255,0.18); opacity: 0.9; }

.proyectos__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.proyecto-card { position: relative; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; padding: 0; border: 1px solid var(--line); background: var(--off-white); transition: transform 0.18s ease, box-shadow 0.18s ease; font-family: inherit; display: block; }
.proyecto-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,62,92,0.10); }
.proyecto-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proyecto-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; padding: 16px; text-align: center; line-height: 1.15; }
.proyecto-card__overlay {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 62, 92, 0.92) 0%, rgba(0, 62, 92, 0.55) 55%, rgba(0, 62, 92, 0) 100%);
	color: #fff;
	opacity: 0;
	transition: opacity 0.18s ease;
	text-align: left;
}
.proyecto-card:hover .proyecto-card__overlay,
.proyecto-card:focus-visible .proyecto-card__overlay { opacity: 1; }
.proyecto-card__cliente { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.proyecto-card__producto { font-size: 11px; opacity: 0.92; margin-top: 4px; line-height: 1.4; }
.proyecto-card__cat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.78; margin-top: 8px; }

.proyectos__empty { padding: 64px 24px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.proyectos__empty a { color: var(--accent); text-decoration: none; font-weight: 500; }

/* Lightbox */
.proyecto-lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.proyecto-lightbox[hidden] { display: none; }
.proyecto-lightbox__backdrop { position: absolute; inset: 0; background: rgba(0, 22, 36, 0.85); cursor: pointer; }
.proyecto-lightbox__panel { position: relative; max-width: 900px; width: 100%; max-height: 90vh; overflow: auto; background: #fff; border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.proyecto-lightbox__close { position: absolute; top: 12px; right: 16px; background: transparent; border: none; font-size: 32px; line-height: 1; color: var(--beyond-navy); cursor: pointer; padding: 4px 10px; border-radius: 8px; transition: background 0.15s; }
.proyecto-lightbox__close:hover { background: var(--off-white); }
.proyecto-lightbox__img { width: 100%; max-height: 60vh; object-fit: contain; border-radius: var(--radius-md); background: var(--off-white); }
.proyecto-lightbox__caption { display: flex; flex-direction: column; gap: 4px; }
.proyecto-lightbox__cat { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.proyecto-lightbox__cliente { font-size: 24px; font-weight: 500; color: var(--beyond-navy); margin: 0; letter-spacing: -0.02em; }
.proyecto-lightbox__producto { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.proyecto-lightbox__cta { align-self: flex-start; }

@media (max-width: 640px) {
	.proyectos__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.proyecto-card__cliente { font-size: 14px; }
	.proyecto-card__overlay { padding: 14px; }
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field__label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 8px; }
.field__input, .field__textarea {
	width: 100%;
	background: var(--off-white);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
	color: var(--beyond-navy);
}
.field__textarea { min-height: 110px; resize: vertical; }
.field__input::placeholder, .field__textarea::placeholder { color: var(--tertiary); }
.field__input:focus, .field__textarea:focus { outline: none; border-color: var(--accent); background: #fff; }

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

.form-notice { padding: 14px 18px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; }
.form-notice--ok { background: #EAF6EC; border: 1px solid #BFE3C6; color: #265c33; }
.form-notice--error { background: #FBECEC; border: 1px solid #F0C9C9; color: #8a2b2b; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--beyond-navy); color: #fff; }
.site-footer__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: clamp(20px, 2.5vw, 28px) var(--container-padding-x) clamp(36px, 4vw, 48px);
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 32px;
}
.footer-logo { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.footer-logo span { color: var(--beyond-teal); }
.footer-logo__img { display: block; height: 40px; width: auto; margin-bottom: 16px; }
.footer-address { font-size: 12px; opacity: 0.7; line-height: 1.6; }
.footer-col__title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; font-weight: 500; margin-bottom: 16px; }
.footer-col a { display: block; color: #fff; font-size: 13px; text-decoration: none; opacity: 0.85; margin-bottom: 8px; transition: opacity 0.15s, color 0.15s; }
.footer-col a:hover { opacity: 1; color: var(--beyond-teal); }
.site-footer__legal {
	max-width: var(--container);
	margin-inline: auto;
	padding: 20px var(--container-padding-x);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12px;
	opacity: 0.7;
}
.site-footer__legal-links { display: flex; gap: 18px; }
.site-footer__legal a { color: #fff; text-decoration: none; }
.site-footer__legal a:hover { color: var(--beyond-teal); }

/* ---- Footer trust row (SSL, CFDI, pagos, bandera) ---------------------- */
.site-footer__trust {
	max-width: var(--container);
	margin-inline: auto;
	padding: 14px var(--container-padding-x) 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}
.site-footer__trust .trust-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.82);
	letter-spacing: 0.01em;
}
.site-footer__trust .trust-icon {
	color: var(--beyond-teal);
	flex-shrink: 0;
}
.site-footer__trust .trust-pay {
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.01em;
}
.site-footer__trust .trust-dot {
	color: rgba(255, 255, 255, 0.25);
	user-select: none;
}
.site-footer__trust .trust-flag-item {
	margin-left: auto;
}
.site-footer__trust .trust-flag {
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.10);
	flex-shrink: 0;
}
@media (max-width: 720px) {
	.site-footer__trust { gap: 10px; font-size: 11.5px; padding: 12px var(--container-padding-x); }
	.site-footer__trust .trust-flag-item { margin-left: 0; width: 100%; padding-top: 6px; border-top: 1px dashed rgba(255, 255, 255, 0.08); margin-top: 4px; }
}

/* ---- Páginas genéricas + 404 ---------------------------------------------- */
.page-body { padding-block: clamp(40px, 6vw, 72px); }
.page-body__title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 24px; }
.error-404 { padding-block: clamp(48px, 8vw, 96px); }
.error-404__title { font-size: clamp(36px, 6vw, 64px); margin-bottom: 16px; }
.error-404__lead { color: var(--muted); margin-bottom: 24px; }
.error-404__links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-bottom: 32px; }
.error-404__links a { color: var(--accent); text-decoration: none; font-weight: 500; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
	/* Nav mobile */
	.nav-toggle { display: flex; }
	.site-cta--desktop { display: none; }
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 12px var(--container-padding-x) 20px;
		box-shadow: 0 12px 24px rgba(0, 62, 92, 0.08);
		display: none;
	}
	.site-nav.is-open { display: flex; }
	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.nav-menu a { padding: 12px 4px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 15px; }
	.site-cta--mobile { display: inline-flex; justify-content: center; margin-top: 16px; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	/* Bento → una columna, sin span doble */
	.bento { grid-template-columns: 1fr; grid-auto-rows: 180px; }
	.bento__card--featured { grid-row: auto; }

	/* Stats → 2x2 */
	.stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
	.stat { border-right: 0; padding-inline: 0; }
	.stat:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }

	/* Grids a una columna */
	.cat-hero__grid,
	.cta-band__grid,
	.contact__grid { grid-template-columns: 1fr; }

	.industries__grid { grid-template-columns: repeat(2, 1fr); }

	.footer-col { /* mantiene columnas pero permite envolver */ }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
	.field-row { grid-template-columns: 1fr; }
	.industries__grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
}

/* ---- Accesibilidad: respetar reduce-motion -------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =========================================================================
   Secciones nuevas del home: ¿Por qué nosotros?, Fabricantes, Presencia
   Encabezados de sección compartidos + componentes. Usan .container global.
   ========================================================================= */
.section-eyebrow {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--beyond-teal-text);
	font-weight: 500;
	margin-bottom: 16px;
}
.section-h2 {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: var(--beyond-navy);
	margin: 0 0 20px;
}
.section-lead {
	font-size: clamp(16px, 2vw, 18px);
	color: var(--muted);
	line-height: 1.6;
	max-width: 720px;
	margin: 0 0 var(--section-gap-internal);
}

/* ¿Por qué nosotros? */
.why-us { background: var(--off-white); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.benefit-num { font-size: 48px; font-weight: 500; color: var(--beyond-teal); line-height: 1; letter-spacing: -0.03em; margin-bottom: 12px; }
.benefit-label { font-size: 15px; color: var(--beyond-navy); font-weight: 500; margin: 0 0 6px; }
.benefit-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Fabricantes estratégicos */
.manufacturers { background: #fff; }
.world-map { background: var(--off-white); border-radius: var(--radius-xl); padding: clamp(16px, 3vw, 32px); border: 1px solid var(--line); }
.world-map img { width: 100%; height: auto; display: block; max-width: 1100px; margin: 0 auto; }

/* Presencia */
/* Presencia comparte fondo off-white con Testimonios (sección anterior): sin
   cambio de color, el padding doble (96+96) se ve como un hueco enorme. Anulamos
   el padding-top para que suba y quede pegada al ritmo de los testimonios. */
.presence { background: var(--off-white); padding-top: 0; }
.presence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.presence-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.2s, box-shadow 0.2s; }
.presence-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 62, 92, 0.08); }
.presence-tag { font-size: 11px; letter-spacing: 0.18em; color: var(--beyond-teal-text); font-weight: 500; margin-bottom: 14px; text-transform: uppercase; }
.presence-city { font-size: 24px; font-weight: 500; color: var(--beyond-navy); margin: 0 0 14px; letter-spacing: -0.015em; }
.presence-addr { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: normal; margin-bottom: 18px; }
.presence-link { font-size: 13px; color: var(--beyond-navy); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--beyond-teal); padding-bottom: 2px; }
.presence-link:hover { color: var(--beyond-teal); }

/* Footer: tagline + direcciones */
.footer-tagline { font-size: 12px; opacity: 0.7; line-height: 1.6; max-width: 36ch; }
.footer-addresses { margin-top: 18px; }
.footer-addr-label { font-size: 10px; letter-spacing: 0.15em; opacity: 0.6; margin: 12px 0 4px; text-transform: uppercase; font-weight: 500; }
.footer-addr { font-size: 12px; opacity: 0.85; margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
	.benefit-grid { grid-template-columns: 1fr; }
	.presence-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Detalle de producto (single-producto.php) — basado en wireframe 3
   ========================================================================= */
.crumbs { font-size: 13px; color: var(--muted); padding-block: 20px; display: flex; gap: 6px; flex-wrap: wrap; }
.crumbs a { text-decoration: none; color: inherit; }
.crumbs a:hover { color: var(--cat-color, var(--beyond-navy)); }
.crumbs .last { color: var(--cat-color, var(--promos)); font-weight: 500; }

.product-main {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(28px, 4vw, 50px);
	align-items: start;
	padding-bottom: clamp(40px, 5vw, 56px);
}
.gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
.thumbs { display: flex; flex-direction: column; gap: 8px; }
.thumb { aspect-ratio: 1; background: var(--warm-gray); border-radius: 8px; border: 1px solid var(--line); cursor: pointer; overflow: hidden; transition: opacity 0.15s, border-color 0.15s; }
.thumb:not(.active) { opacity: 0.6; }
.thumb:hover { opacity: 1; }
.thumb.active { border: 2px solid var(--beyond-teal); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.main-img { background: var(--warm-gray); border-radius: var(--radius-lg); aspect-ratio: 1; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.main-img img { width: 100%; height: 100%; object-fit: contain; }

.prod-eyebrow { font-size: 11px; letter-spacing: 0.18em; font-weight: 500; margin-bottom: 12px; text-transform: uppercase; }
.prod-h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.1; letter-spacing: -0.025em; color: var(--beyond-navy); margin-bottom: 8px; }
.prod-sku { font-size: 13px; color: var(--tertiary); font-family: var(--font-mono); margin-bottom: 22px; }
.prod-desc { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }

.option-block { margin-bottom: 22px; }
.option-label { font-size: 11px; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 12px; font-weight: 500; text-transform: uppercase; }
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.cs { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border: 1px solid #D3D1C7; border-radius: 999px; background: var(--warm-gray); color: var(--beyond-navy); font-size: 12px; font-weight: 500; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.cs:hover { transform: translateY(-1px); border-color: var(--promos); }
.cs.active { border-color: var(--promos); box-shadow: 0 0 0 2px rgba(0, 77, 113, 0.18); }
.cs-label { white-space: nowrap; }

.stock-info { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.stock-info strong { color: var(--beyond-navy); }
.qty-row { display: flex; gap: 12px; align-items: center; }
.qty-input { width: 90px; padding: 14px 16px; border: 1px solid #D3D1C7; border-radius: 8px; font-size: 14px; text-align: center; font-weight: 500; color: var(--beyond-navy); font-family: inherit; }
.cta-add { flex: 1; background: var(--beyond-navy); color: #fff; padding: 16px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; text-align: center; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.cta-add:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 62, 92, 0.18); }

.specs-section { background: #fff; border-top: 1px solid var(--line); }
.specs-section .container { padding-block: clamp(40px, 5vw, 50px); }
.specs-title { font-size: 12px; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 24px; font-weight: 500; text-transform: uppercase; }
.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 60px; }
.spec-row { display: grid; grid-template-columns: 180px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-key { color: var(--muted); }
.spec-val { color: var(--beyond-navy); font-weight: 500; }

@media (max-width: 900px) {
	.product-main { grid-template-columns: 1fr; }
	.specs-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
	.gallery { grid-template-columns: 64px 1fr; }
}

/* Tabla de disponibilidad por color */
.stock-table { margin: 24px 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; }
.stock-table-title { font-size: 11px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
.stock-table table { width: 100%; border-collapse: collapse; font-family: inherit; }
.stock-table tr { border-bottom: 1px solid var(--line); }
.stock-table tr:last-child { border-bottom: none; }
.stock-table tr.total { border-top: 1px solid var(--beyond-navy); }
.stock-table tr.out { opacity: 0.5; }
.stock-table td { padding: 12px 0; font-size: 14px; color: var(--beyond-navy); font-weight: 400; }
.stock-table tr.total td { font-weight: 500; font-size: 15px; }
.stock-table td.sc-color { text-transform: capitalize; }
.stock-table td.sc-qty { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.stock-table td.sc-status { text-align: right; width: 60px; }
.badge { display: inline-flex; align-items: center; font-size: 13px; font-weight: 500; }
.badge.in { color: #2A8F4F; }
.badge.out { background: transparent; color: #A32D2D; font-size: 11px; padding: 0; }

/* Confirmación de color/stock seleccionado */
.cotizar-confirm { font-size: 13px; color: var(--muted); margin: 20px 0 12px; padding: 12px 16px; background: var(--warm-gray); border-radius: 8px; border-left: 3px solid var(--beyond-teal); }
.cotizar-confirm strong { color: var(--beyond-navy); font-weight: 500; text-transform: capitalize; }

/* Productos relacionados */
.related-section { padding: 48px 0 96px; background: #fff; border-top: 1px solid var(--line); }
.related-title { font-size: 24px; font-weight: 500; color: var(--beyond-navy); margin: 0 0 24px; letter-spacing: -0.02em; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rel-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 62, 92, 0.08); }
.rel-img { aspect-ratio: 1; background: var(--warm-gray); overflow: hidden; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-body { padding: 14px 16px; }
.rel-name { font-size: 14px; font-weight: 500; color: var(--beyond-navy); line-height: 1.3; margin-bottom: 4px; }
.rel-sku { font-size: 11px; font-family: var(--font-mono); color: var(--muted); }
@media (max-width: 768px) {
	.related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   Catálogo de categoría (grid + filtros)
   ========================================================================= */
.catalog-wrap { max-width: 1400px; margin: 0 auto; padding: 32px var(--container-padding-x) 96px; }
.catalog-toolbar { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); margin-bottom: 32px; flex-wrap: wrap; }
.catalog-search { flex: 1; min-width: 280px; display: flex; gap: 8px; }
.catalog-search input { flex: 1; background: var(--warm-gray); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--beyond-navy); font-family: inherit; }
.catalog-search input:focus { outline: none; border-color: var(--beyond-teal); background: #fff; }
.catalog-search button { background: var(--beyond-navy); color: #fff; border: none; padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; }
.catalog-toolbar select { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; font-size: 13px; color: var(--beyond-navy); cursor: pointer; font-family: inherit; }
.catalog-count { font-size: 13px; color: var(--muted); margin-left: auto; }

.catalog-grid-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
/* Cada filtro es su propia cajita; el sidebar solo los apila con gap. */
.catalog-filters { background: transparent; border: none; padding: 0 6px 0 0; display: flex; flex-direction: column; gap: 12px; position: sticky; top: 100px; align-self: start; max-height: calc(100vh - 120px); overflow-y: auto; scrollbar-width: thin; }
.catalog-filters::-webkit-scrollbar { width: 6px; }
.catalog-filters::-webkit-scrollbar-track { background: transparent; }
.catalog-filters::-webkit-scrollbar-thumb { background: rgba(11, 37, 64, 0.15); border-radius: 3px; }
.filter-block { background: #fff; border: 0.5px solid var(--line); border-radius: 12px; padding: 18px 20px; margin: 0; }
.filter-block:last-of-type { margin: 0; }
.filter-block-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
/* Lista de opciones con altura máxima y scroll interno propio. */
/* Solo el filtro de Categoría (no .filter-block--collapsible) sigue con scroll
   interno + fade. Color y stock se muestran completos siempre. */
.filter-block:not(.filter-block--collapsible):not(.filter-block--expanded) .filter-options-list,
.filter-block:not(.filter-block--collapsible):not(.filter-block--expanded) .color-swatch-grid { max-height: 240px; overflow-y: auto; overflow-x: hidden; padding-right: 6px; }
.filter-block.filter-block--expanded .filter-options-list { max-height: none; overflow-y: visible; }
.filter-block.filter-block--expanded .filter-fade-indicator { display: none; }
/* Color filter: TODOS los colores visibles, sin scroll ni "↓ Más" */
.filter-block:has(.color-swatch-grid) .color-swatch-grid { max-height: none !important; overflow: visible !important; padding-right: 0 !important; }
.filter-block:has(.color-swatch-grid) .filter-fade-indicator { display: none !important; }

/* === Filtro de categoría colapsable: 7 visibles + botón "Ver todas" === */
.filter-block.filter-block--collapsible .filter-options-list { max-height: none; overflow: visible; }
.filter-block.filter-block--collapsible .filter-option--extra { display: none; }
.filter-block.filter-block--collapsible.is-expanded .filter-option--extra { display: flex; }
.filter-show-all { display: block; width: 100%; margin-top: 10px; padding: 8px 12px; background: transparent; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 500; color: var(--beyond-navy); cursor: pointer; transition: background 0.15s, border-color 0.15s; letter-spacing: 0.02em; }
.filter-show-all:hover { background: #FFF8F2; border-color: var(--accent); color: var(--accent); }
.filter-show-all:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.filter-block .filter-options-list::-webkit-scrollbar, .filter-block .color-swatch-grid::-webkit-scrollbar { width: 4px; }
.filter-block .filter-options-list::-webkit-scrollbar-track, .filter-block .color-swatch-grid::-webkit-scrollbar-track { background: transparent; }
.filter-block .filter-options-list::-webkit-scrollbar-thumb, .filter-block .color-swatch-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
/* Indicador "hay más opciones" (fade + ↓ Más) cuando la lista tiene scroll. */
.filter-options-wrap { position: relative; }
.filter-fade-indicator { position: absolute; bottom: 0; left: 0; right: 6px; height: 40px; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 70%); display: flex; align-items: flex-end; justify-content: center; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.filter-fade-indicator.visible { opacity: 1; }
.filter-fade-indicator span { font-size: 11px; color: var(--muted); background: var(--warm-gray); padding: 3px 10px; border-radius: 999px; margin-bottom: 4px; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--beyond-navy); cursor: pointer; line-height: 1.3; }
.filter-option input { accent-color: var(--beyond-navy); width: 14px; height: 14px; flex-shrink: 0; }
.filter-option-count { margin-left: auto; color: var(--tertiary); font-size: 11px; }
.clear-filters { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--beyond-teal); text-decoration: none; font-weight: 500; }
.clear-filters-top { display: block; background: var(--warm-gray); border: 0.5px solid var(--line); border-radius: 12px; padding: 10px 16px; margin: 0; text-align: center; color: var(--beyond-navy); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.15s; }
.clear-filters-top:hover { background: #E5DFD5; }
/* El scroll vive en cada .filter-options-list, no en el sidebar. */
.catalog-filters { word-wrap: break-word; overflow-wrap: break-word; }
.catalog-filters form, .catalog-filters .filter-block { width: 100%; box-sizing: border-box; max-width: 100%; }
.color-swatch-grid { max-width: 100%; }
.filter-option { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }

.catalog-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 16px; min-width: 0; }
@media (min-width: 1200px) { .catalog-grid { grid-template-columns: repeat(4, 1fr) !important; } }

.prod-card { background: #fff; border: 0.5px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; min-width: 0; max-width: 100%; }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 62, 92, 0.08); }
.prod-card-img { aspect-ratio: 1 / 1 !important; width: 100%; background: var(--warm-gray); position: relative; overflow: hidden; }
.prod-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
.prod-card-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; padding: 4px 8px; border-radius: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.prod-card-badge.out { background: #FCEBEB; color: #A32D2D; }
.prod-card-badge.low { background: #FAEEDA; color: #854F0B; }
.prod-card-body { padding: 12px 14px; }
.prod-card-eyebrow { font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.prod-card-name { font-size: 13px; font-weight: 500; color: var(--beyond-navy); line-height: 1.3; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card-meta { font-size: 11px; color: var(--muted); line-height: 1.3; }
.prod-card-sku { font-family: var(--font-mono, monospace); }

.catalog-empty { grid-column: 1 / -1; text-align: center; padding: 80px 20px; color: var(--muted); }
.catalog-empty a { display: inline-block; margin-top: 12px; color: var(--beyond-teal); text-decoration: none; font-weight: 500; }

.catalog-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.catalog-pagination .page-numbers { display: inline-flex; align-items: center; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; color: var(--beyond-navy); text-decoration: none; }
.catalog-pagination .page-numbers.current { background: var(--beyond-navy); color: #fff; border-color: var(--beyond-navy); }

@media (max-width: 768px) {
	.catalog-wrap { padding: 24px var(--container-padding-x) 64px; }
	.catalog-grid-wrap { grid-template-columns: 1fr; }
	.catalog-filters { position: static; max-height: none; }
	.catalog-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
}

/* Filtro de color con swatches visuales */
.color-swatch-grid { display: grid; grid-template-columns: 1fr; gap: 5px; }
.color-swatch { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border: 0.5px solid var(--line); border-radius: 8px; cursor: pointer; transition: border-color 0.15s, background 0.15s; background: #fff; }
.color-swatch:hover { border-color: var(--beyond-navy); }
.color-swatch.selected { border: 1.5px solid var(--beyond-teal); background: var(--warm-gray); }
.color-swatch input { display: none; }
.swatch-color { width: 16px; height: 16px; border-radius: 50%; border: 0.5px solid rgba(0, 0, 0, 0.15); flex-shrink: 0; }
.swatch-name { font-size: 12px; color: var(--beyond-navy); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.swatch-count { font-size: 11px; color: var(--tertiary); flex-shrink: 0; white-space: nowrap; }
.color-all { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border: 0.5px solid var(--line); border-radius: 8px; cursor: pointer; margin-bottom: 6px; font-size: 12px; color: var(--beyond-navy); }
.color-all input { display: none; }
.color-all input:checked + .swatch-color { border: 2px solid var(--beyond-navy); }
.swatch-color.all-colors { width: 16px; height: 16px; border-radius: 50%; background: conic-gradient(#E53935 0%, #FDD835 16%, #43A047 33%, #1E88E5 50%, #8E24AA 66%, #EC407A 83%, #E53935 100%); flex-shrink: 0; }
.color-swatch input[type="radio"]:checked + .swatch-color { border: 2px solid var(--beyond-navy); box-shadow: 0 0 0 3px var(--warm-gray); }
/* Opciones sin resultados con los demás filtros activos (faceted): grayed out. */
.filter-option.disabled { opacity: 0.4; cursor: not-allowed; }
.filter-option.disabled input { cursor: not-allowed; }
.color-swatch.disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

/* Filtro de color como pills horizontales (arriba del grid) */
.catalog-color-pills { margin-bottom: 24px; padding: 16px 0; border-bottom: 0.5px solid var(--line); }
.color-pills-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pills-label { font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; font-weight: 500; margin-right: 8px; }
.color-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; background: #fff; border: 0.5px solid var(--line); border-radius: 999px; cursor: pointer; transition: border-color 0.15s, background 0.15s, transform 0.1s; font-size: 13px; color: var(--beyond-navy); }
.color-pill:hover { border-color: var(--beyond-navy); transform: translateY(-1px); }
.color-pill.active { background: var(--beyond-navy); color: #fff; border-color: var(--beyond-navy); }
.color-pill input { display: none; }
.pill-dot { width: 16px; height: 16px; border-radius: 50%; border: 0.5px solid rgba(0, 0, 0, 0.15); flex-shrink: 0; }
.pill-dot.all-dot { background: conic-gradient(#E53935, #FDD835, #43A047, #1E88E5, #8E24AA, #E53935); }
.pill-count { opacity: 0.7; font-size: 11px; }
.color-pill.active .pill-count { opacity: 0.8; }
@media (max-width: 640px) {
	.color-pills-form { gap: 6px; }
	.color-pill { padding: 5px 10px 5px 6px; font-size: 12px; }
	.pill-dot { width: 14px; height: 14px; }
}

/* =========================================================================
   Cotizador (fase 2): toast, contador del header y página /cotizacion/.
   ========================================================================= */

/* #prodAddQuote pasó de <a> a <button>: normaliza el reset del botón. */
.cta-add { border: none; cursor: pointer; font-family: inherit; }

/* ---- Toast "agregado a cotización" ---------------------------------------- */
.gb-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: var(--beyond-navy);
	color: #fff;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 14px;
	z-index: 9999;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 0.3s, opacity 0.3s;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
	max-width: 360px;
}
.gb-toast.visible { transform: translateY(0); opacity: 1; }
.gb-toast a { color: var(--beyond-teal); text-decoration: none; font-weight: 500; margin-left: 6px; }
.gb-toast a:hover { text-decoration: underline; }

/* ---- Contador del header --------------------------------------------------- */
.quote-counter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--beyond-teal);
	color: #fff;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}
.quote-counter:hover { filter: brightness(0.95); }
.quote-counter-num {
	background: #fff;
	color: var(--beyond-teal);
	border-radius: 999px;
	padding: 1px 8px;
	font-weight: 600;
	font-size: 11px;
	min-width: 18px;
	text-align: center;
}

/* ---- Página /cotizacion/ --------------------------------------------------- */
.cot-page .section-lead { max-width: 620px; margin-bottom: var(--section-gap-internal); }
.cot-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: start;
}

/* Carrito (columna izquierda) */
.cot-cart-empty { text-align: center; padding: 48px 24px; background: var(--off-white); border-radius: var(--radius-lg); }
.cot-cart-empty p { color: var(--muted); margin-bottom: 20px; }
.cot-cart-list { display: flex; flex-direction: column; gap: 16px; }
.cot-item {
	display: grid;
	grid-template-columns: 72px 1fr auto auto;
	gap: 16px;
	align-items: center;
	padding: 16px;
	background: #fff;
	border: 0.5px solid var(--line);
	border-radius: var(--radius-md);
}
.cot-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); background: var(--warm-gray); }
.cot-item-body { min-width: 0; }
.cot-item-name { display: block; font-size: 15px; font-weight: 500; color: var(--beyond-navy); text-decoration: none; line-height: 1.3; }
.cot-item-name:hover { color: var(--beyond-teal); }
.cot-item-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cot-item-qty { display: inline-flex; align-items: center; gap: 4px; }
.cot-item-qty .qty-btn {
	width: 30px; height: 30px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--radius-sm);
	color: var(--beyond-navy);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
}
.cot-item-qty .qty-btn:hover { border-color: var(--beyond-navy); }
.cot-item-qty .qty-input {
	width: 56px; padding: 7px 6px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: var(--beyond-navy);
	font-family: inherit;
}
.cot-item-remove {
	border: none; background: none; cursor: pointer;
	color: var(--tertiary); font-size: 16px; line-height: 1;
	padding: 4px;
}
.cot-item-remove:hover { color: var(--protect); }

/* Form (columna derecha) */
.cot-form {
	background: var(--off-white);
	border: 0.5px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
}
.cot-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cot-form .form-field { margin-bottom: 16px; }
.cot-form label { display: block; font-size: 13px; font-weight: 500; color: var(--beyond-navy); margin-bottom: 6px; }
.cot-form input,
.cot-form select,
.cot-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-family: inherit;
	color: var(--beyond-navy);
	background: #fff;
}
.cot-form input::placeholder,
.cot-form textarea::placeholder { color: var(--tertiary); }
.cot-form input:focus,
.cot-form select:focus,
.cot-form textarea:focus { outline: none; border-color: var(--accent); }
.cot-form textarea { resize: vertical; min-height: 80px; }
.cot-submit {
	width: 100%;
	margin-top: 8px;
	background: var(--beyond-navy);
	color: #fff;
	border: none;
	padding: 16px;
	border-radius: var(--radius-md);
	font-size: 15px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s;
}
.cot-submit:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 62, 92, 0.18); }
.cot-submit:disabled { opacity: 0.6; cursor: default; }
.cot-disclaimer { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

@media (max-width: 860px) {
	.cot-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
	.cot-form .form-row { grid-template-columns: 1fr; }
	.cot-item { grid-template-columns: 56px 1fr; grid-template-areas: "img body" "qty remove"; row-gap: 12px; }
	.cot-item-img { width: 56px; height: 56px; grid-area: img; }
	.cot-item-body { grid-area: body; }
	.cot-item-qty { grid-area: qty; }
	.cot-item-remove { grid-area: remove; justify-self: end; }
	.gb-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ---- Single producto: extras del toggle ?v2=1 ---------------------------- */
.color-swatches .cs--dot { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; }
.color-swatches .cs--dot.active { padding: 5px 13px 5px 5px; }
.color-swatches .cs-dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); display: inline-block; flex-shrink: 0; }

.prod-info .pdp-stock-line { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #E1F5EE; border-radius: var(--radius-md); font-size: 13px; color: #0F6E56; margin: 16px 0; }
.prod-info .pdp-stock-line strong { color: #085041; font-weight: 600; }

.prod-info .pdp-benefits { list-style: none; padding: 0; margin: 16px 0 24px; display: grid; gap: 10px; }
.prod-info .pdp-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--beyond-navy); line-height: 1.45; }
.prod-info .pdp-benefits svg { margin-top: 3px; flex-shrink: 0; }

.prod-info .pdp-stock-line--soon { background: #FAEEDA; color: #854F0B; }
.prod-info .pdp-stock-line--soon strong { color: #633806; }

/* ---- Trust strip (Ellos ya confían en nosotros) -------------------------- */
/* CATALOG DIVIDER — separador editorial elegante "empieza el catálogo".
   Líneas a los lados que se desvanecen + texto sutil al centro. */
.catalog-divider { display: flex; align-items: center; justify-content: center; gap: 18px; padding: clamp(32px, 4vw, 48px) 0 clamp(8px, 1vw, 16px); }
.catalog-divider::before,
.catalog-divider::after { content: ''; flex: 1; max-width: 280px; height: 1px; background: linear-gradient(90deg, transparent, rgba(11, 37, 64, 0.18), transparent); }
.catalog-divider span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beyond-navy); opacity: 0.55; font-weight: 500; white-space: nowrap; }

/* TRUST STRIP — Diseño elegante sin líneas planas
   Fondo cream sutil que crea separación visual sin sentirse "cortado".
   Título con líneas decorativas tipo eyebrow editorial. */
.gb-trust-strip { position: relative; padding: clamp(40px, 5vw, 64px) 0; overflow: hidden; background: linear-gradient(180deg, #FBFAF5 0%, #F7F5EE 100%); pointer-events: none; }
.gb-trust-strip__title { display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beyond-navy); font-weight: 500; margin: 0 0 28px; }
.gb-trust-strip__title::before,
.gb-trust-strip__title::after { content: ''; display: block; width: 36px; height: 1px; background: linear-gradient(90deg, transparent, rgba(11, 37, 64, 0.28), transparent); }
.gb-trust-track-wrap {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.gb-trust-track { display: flex; gap: 64px; align-items: center; animation: gb-marquee 90s linear infinite; width: max-content; }
.gb-trust-brand { font-size: 17px; font-weight: 500; letter-spacing: 0.06em; color: var(--beyond-navy); opacity: 0.55; white-space: nowrap; padding: 0 4px; font-family: inherit; cursor: default; }
.gb-trust-sep { display: none; }
@keyframes gb-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
	.gb-trust-strip { padding: 28px 0; }
	.gb-trust-strip__title { font-size: 10px; margin-bottom: 18px; }
	.gb-trust-track { gap: 32px; animation-duration: 70s; }
	.gb-trust-brand { font-size: 14px; }
}

/* ---- Página Fabricación (sigue patrón .section del sitio) ---------------- */

/* Servicios de fabricación nacional — tarjetas estilo benefit-card */
.fab-services-section { background: transparent; }
.fab-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.fab-svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.fab-svc:hover { border-color: #CB9700; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 62, 92, 0.06); }
.fab-svc__icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: #FAEEDA; color: #854F0B; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fab-svc__title { font-size: 18px; font-weight: 500; color: var(--beyond-navy); margin: 0; line-height: 1.25; letter-spacing: -0.01em; }
.fab-svc__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }
.fab-svc__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.fab-tag { font-size: 11px; background: var(--off-white); color: var(--muted); padding: 4px 11px; border-radius: 999px; font-weight: 500; }

/* Bloque China — 2 columnas: lista + visualización México→China */
.fab-china-section { background: #FAFAF7; }
.fab-china { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 32px; padding: clamp(28px, 4vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.fab-china__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.fab-china__list li { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; align-items: flex-start; color: var(--beyond-navy); }
.fab-china__list li svg { flex-shrink: 0; margin-top: 4px; }
.fab-china__list li strong { font-weight: 500; }
.fab-china__visual { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 28px 12px; background: var(--off-white); border-radius: var(--radius-md); }
.fab-china__route { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 8px; align-items: center; width: 100%; }
.fab-china__node { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.fab-china__node > svg { color: #CB9700; }
.fab-china__node-label { font-size: 17px; font-weight: 500; color: var(--beyond-navy); letter-spacing: -0.01em; }
.fab-china__node-sub { font-size: 11px; color: var(--muted); line-height: 1.35; max-width: 14ch; }
.fab-china__arrow { padding: 0 4px; opacity: 0.7; }
.fab-china__visual-cap { font-size: 12px; color: var(--muted); margin: 0; text-align: center; font-style: italic; }

.fab-process-section { background: transparent; }
.fab-process-track { position: relative; padding: 32px 0 0; margin-top: 16px; }
.fab-process-track::before {
	content: '';
	position: absolute;
	top: 52px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: repeating-linear-gradient(90deg, #CB9700 0, #CB9700 6px, transparent 6px, transparent 12px);
	opacity: 0.45;
	z-index: 0;
}
.fab-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; z-index: 1; }
.fab-pstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 6px; }
.fab-pstep__icon {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: #FCFAF4;
	border: 2px solid #CB9700;
	display: flex; align-items: center; justify-content: center;
	color: #CB9700;
	margin-bottom: 20px;
	position: relative;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fab-pstep:hover .fab-pstep__icon { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(203, 151, 0, 0.18); }
.fab-pstep__num {
	position: absolute;
	bottom: -6px; right: -6px;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--beyond-navy);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	display: flex; align-items: center; justify-content: center;
	border: 2px solid #fff;
}
.fab-pstep h3 { font-size: 15px; font-weight: 500; color: var(--beyond-navy); margin: 0 0 8px; line-height: 1.25; }
.fab-pstep p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; max-width: 18ch; }

/* Capacidades técnicas — 2 columnas con checkmarks dorados */
.fab-caps-section { background: #FAFAF7; }
.fab-caps { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; padding: clamp(28px, 4vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.fab-caps__title { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin: 0 0 16px; }
.fab-caps__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fab-caps__list li { font-size: 15px; color: var(--beyond-navy); padding-left: 26px; position: relative; line-height: 1.45; }
.fab-caps__list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #CB9700; font-weight: 500; font-size: 16px; }

/* Proyectos recientes — grid 4 cols con hover overlay */
.fab-projects-section { background: transparent; }
.fab-projects__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 24px; }
.fab-project { position: relative; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); background: var(--off-white); }
.fab-project img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.fab-project:hover img { transform: scale(1.04); }
.fab-project__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--tertiary); font-size: 11px; }
.fab-project__overlay { position: absolute; inset: 0; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; background: linear-gradient(to top, rgba(0,62,92,0.92) 0%, rgba(0,62,92,0.55) 55%, rgba(0,62,92,0) 100%); color: #fff; opacity: 0; transition: opacity 0.2s ease; }
.fab-project:hover .fab-project__overlay { opacity: 1; }
.fab-project__cli { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.fab-project__prod { font-size: 11px; opacity: 0.9; margin-top: 4px; line-height: 1.4; }

/* Trust section — el strip va abajo del eyebrow/h2 */
.fab-trust-section { background: #FAFAF7; padding-bottom: 0; }
.fab-trust-section .container { margin-bottom: 24px; }
.fab-trust-section .gb-trust-strip { border-top: none; padding-top: 0; }

@media (max-width: 820px) {
	.fab-services { grid-template-columns: 1fr; }
	.fab-china { grid-template-columns: 1fr; gap: 28px; }
	.fab-process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
	.fab-process-track::before { display: none; }
	.fab-caps { grid-template-columns: 1fr; gap: 32px; }
	.fab-projects__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
	.fab-process-grid { grid-template-columns: 1fr; }
}

/* ---- Fabricación: overrides para tamaños y spacing más compactos ------- */
.fab-services-section.section,
.fab-china-section.section,
.fab-process-section.section,
.fab-caps-section.section,
.fab-projects-section.section,
.fab-trust-section.section { padding: 36px 0; }

.fab-services-section .section-h2,
.fab-china-section .section-h2,
.fab-process-section .section-h2,
.fab-caps-section .section-h2,
.fab-projects-section .section-h2,
.fab-trust-section .section-h2 {
	font-size: clamp(24px, 3vw, 30px);
	line-height: 1.2;
	margin-bottom: 10px;
}

.fab-services-section .section-eyebrow,
.fab-china-section .section-eyebrow,
.fab-process-section .section-eyebrow,
.fab-caps-section .section-eyebrow,
.fab-projects-section .section-eyebrow,
.fab-trust-section .section-eyebrow {
	font-size: 11px;
	margin-bottom: 10px;
	color: #CB9700;
}

.fab-services-section .section-lead,
.fab-china-section .section-lead,
.fab-process-section .section-lead,
.fab-caps-section .section-lead,
.fab-projects-section .section-lead,
.fab-trust-section .section-lead {
	font-size: 15px;
	line-height: 1.55;
	margin-bottom: 28px;
	max-width: 60ch;
}

.fab-stats { padding: 24px 0; }
.fab-stats .stat__num { font-size: clamp(34px, 4.5vw, 42px); }
.fab-stats .stat__label { font-size: 11px; letter-spacing: 0.1em; }

/* ---- Ficha producto: CTA WhatsApp (debajo de "Agregar a cotización") ----- */
.prod-info .cta-wa {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px;
	margin-top: 12px;
	background: #25D366;
	color: #fff !important;
	border: none;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	font-family: inherit;
	box-sizing: border-box;
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.prod-info .cta-wa:hover {
	background: #1FB856;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32);
}
.prod-info .cta-wa svg {
	flex-shrink: 0;
}

/* ---- Páginas legales (Aviso de privacidad, Términos) -------------------- */
.legal-page { padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 7vw, 80px); }
.legal-page__container { max-width: 760px; }
.legal-page__header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.legal-page__eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); font-weight: 500; margin: 0 0 14px; }
.legal-page__title { font-size: clamp(28px, 4vw, 40px); font-weight: 500; letter-spacing: -0.02em; color: var(--beyond-navy); margin: 0 0 12px; line-height: 1.1; }
.legal-page__updated { font-size: 12px; color: var(--muted); margin: 0; }
.legal-page__content { font-size: 15px; color: var(--beyond-navy); line-height: 1.7; }
.legal-page__content h2 { font-size: 19px; font-weight: 500; color: var(--beyond-navy); margin: 36px 0 12px; letter-spacing: -0.01em; line-height: 1.25; }
.legal-page__content p { margin: 0 0 14px; }
.legal-page__content ul,
.legal-page__content ol { margin: 0 0 16px; padding-left: 24px; }
.legal-page__content li { margin-bottom: 6px; line-height: 1.6; }
.legal-page__content a { color: var(--accent); text-decoration: none; }
.legal-page__content a:hover { text-decoration: underline; }
.legal-page__content strong { font-weight: 500; color: var(--beyond-navy); }

/* ====================================================================
   LANDING PAGES (POC: guantes-mayoreo)
   Aisladas del resto del sitio: header y footer minimales, sin menú,
   sin barra de acento, foco total en conversión.
   Color de acento: naranja protección #FF6B00.
   ==================================================================== */

/* body.landing-mode: define variables CSS de la landing globalmente para que
   apliquen a header, footer, modales y todo lo que está fuera de .landing-page */
body.landing-mode { --lp-accent: #FF6B00; --lp-accent-dark: #E35F00; --lp-cream: #FFF8F2; }
body.landing-mode .site-header__bar { display: none; }

/* ===== HEADER LANDING (logo + tel + CTA, nada más) ===== */
.lp-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.lp-header__inner { max-width: var(--container); margin-inline: auto; padding: 14px var(--container-padding-x); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.lp-header__logo img { display: block; height: 40px; width: auto; }
.lp-header__right { display: flex; align-items: center; gap: 18px; }
.lp-header__phone { display: inline-flex; align-items: center; gap: 6px; color: var(--beyond-navy); text-decoration: none; font-size: 14px; font-weight: 500; }
.lp-header__phone:hover { color: #FF6B00; }
.lp-header__cta { background: #FF6B00; color: #fff; padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.15s, transform 0.15s; }
.lp-header__cta:hover { background: #E35F00; transform: translateY(-1px); }

/* ===== FOOTER LANDING (minimal, 3 cols + sellos) ===== */
.lp-footer { background: #0B2540; color: #C6D3E0; padding: 36px 0 0; }
.lp-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 24px; }
.lp-footer__logo { display: block; height: 28px; width: auto; margin-bottom: 12px; }
.lp-footer__tag { font-size: 12.5px; color: #8FA3BB; margin: 0; line-height: 1.55; max-width: 280px; }
.lp-footer__col-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #6E89A6; font-weight: 500; margin: 0 0 10px; }
.lp-footer__col a { display: block; font-size: 13px; color: #D9E3EF; text-decoration: none; padding: 3px 0; }
.lp-footer__col a:hover { color: #1AA5B5; }
.lp-footer__seals { max-width: var(--container); margin-inline: auto; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 14px var(--container-padding-x); border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.55); }
.lp-seal { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.82); }
.lp-seal svg { color: #1AA5B5; flex-shrink: 0; }
.lp-seal--flag svg { color: inherit; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.10); }
.lp-footer__copy { margin-left: auto; }

/* ===== LANDING BODY ===== */
.landing-page { --lp-accent: #FF6B00; --lp-accent-dark: #E35F00; --lp-cream: #FFF8F2; color: var(--beyond-navy); }
.lp-section { padding: clamp(24px, 3vw, 40px) 0; }
.lp-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lp-accent); font-weight: 500; margin: 0 0 4px; }
.lp-h2 { font-size: clamp(24px, 2.8vw, 32px); font-weight: 500; letter-spacing: -0.02em; color: var(--beyond-navy); margin: 0 0 8px; line-height: 1.15; }
.lp-lead { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0 0 20px; max-width: 720px; }

/* HERO — padding-top reducido para acercar al header (Edgar feedback) */
.lp-hero { background: linear-gradient(180deg, var(--lp-cream) 0%, #fff 100%); padding: clamp(32px, 4vw, 52px) 0 clamp(28px, 4vw, 48px); }
.lp-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.lp-hero__eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lp-accent); font-weight: 500; margin: 0 0 18px; }
.lp-hero__title { font-size: clamp(34px, 4.4vw, 54px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; color: var(--beyond-navy); margin: 0 0 22px; }
.lp-hero__lead { font-size: 17px; line-height: 1.55; color: #344054; margin: 0 0 28px; max-width: 540px; }
.lp-hero__lead strong { color: var(--beyond-navy); font-weight: 500; }
.lp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.lp-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(11, 37, 64, 0.08); }
.lp-stat strong { display: block; font-size: 26px; font-weight: 500; color: var(--lp-accent); line-height: 1; }
.lp-stat span { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }
.lp-hero__media { position: relative; }
.lp-hero__media img { display: block; width: 100%; height: auto; border-radius: 18px; }
.lp-hero__placeholder { aspect-ratio: 4/3; background: #FFF1E5; border: 2px dashed #FFB988; border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--lp-accent); text-align: center; padding: 20px; }
.lp-hero__placeholder p { margin: 0; font-size: 13px; font-weight: 500; }
.lp-hero__placeholder small { font-size: 11px; color: var(--muted); }

/* BOTONES */
.lp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s, background 0.15s; }
.lp-btn--primary { background: var(--lp-accent); color: #fff; }
.lp-btn--primary:hover { background: var(--lp-accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 107, 0, 0.32); }
.lp-btn--wa { background: #25D366; color: #fff; }
.lp-btn--wa:hover { background: #1FB856; transform: translateY(-1px); }
.lp-btn--ghost { background: transparent; color: var(--lp-accent); border: 1px solid var(--lp-accent); }
.lp-btn--ghost:hover { background: var(--lp-accent); color: #fff; }
.lp-btn--lg { padding: 16px 28px; font-size: 15px; }

/* PRODUCTOS — más aire arriba para separar del trust strip (Edgar feedback) */
.lp-products { padding-top: clamp(40px, 5vw, 64px) !important; }
.lp-products__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lp-prod-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s; }
.lp-prod-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(11, 37, 64, 0.08); }
.lp-prod-card__img { background: #F7F8FA; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.lp-prod-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.lp-prod-card__body { padding: 12px 14px 14px; }
.lp-prod-card__name { font-size: 13px; font-weight: 500; color: var(--beyond-navy); line-height: 1.3; margin-bottom: 4px; }
.lp-prod-card__sku { font-size: 11px; color: var(--muted); }
.lp-products__cta { text-align: center; margin-top: 32px; }

/* TIPOS */
.lp-types__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-type { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.lp-type__title { font-size: 18px; font-weight: 500; color: var(--beyond-navy); margin: 0 0 8px; letter-spacing: -0.01em; }
.lp-type__desc { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* POR QUÉ */
.lp-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-why__card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; }
.lp-why__num { font-size: 12px; font-weight: 500; color: var(--lp-accent); letter-spacing: 0.12em; margin-bottom: 14px; }
.lp-why__title { font-size: 17px; font-weight: 500; color: var(--beyond-navy); margin: 0 0 10px; letter-spacing: -0.01em; }
.lp-why__card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

/* TABLA TÉCNICA */
.lp-spec__wrap { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px 8px 18px; overflow-x: auto; }
.lp-spec__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lp-spec__table th { text-align: left; padding: 14px 16px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.lp-spec__table td { padding: 14px 16px; border-bottom: 1px solid #F1F4F8; color: var(--beyond-navy); }
.lp-spec__table tbody tr:last-child td { border-bottom: none; }
.lp-spec__table tbody tr:hover { background: var(--lp-cream); }
.lp-spec__note { font-size: 12px; color: var(--muted); margin: 12px 16px 0; font-style: italic; }

/* FAQ — 2 columnas en desktop para aprovechar el container completo */
.lp-faq__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 14px; }
.lp-faq__item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.lp-faq__item summary { cursor: pointer; padding: 20px 24px; font-size: 15px; font-weight: 500; color: var(--beyond-navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after { content: '+'; font-size: 22px; color: var(--lp-accent); font-weight: 300; flex-shrink: 0; }
.lp-faq__item[open] summary::after { content: '−'; }
.lp-faq__answer { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.65; color: #475569; }

/* COBERTURA — chips compactos al ancho del container */
.lp-coverage__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-coverage__chips span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--beyond-navy); }

/* TESTIMONIOS */
.lp-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-testimonial { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; margin: 0; }
.lp-testimonial blockquote { font-size: 14.5px; line-height: 1.65; color: #344054; margin: 0 0 18px; font-style: italic; quotes: """ """; }
.lp-testimonial figcaption strong { display: block; font-size: 14px; color: var(--beyond-navy); font-weight: 500; }
.lp-testimonial figcaption span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* MINI-GUÍA — plegada por default */
.lp-guide__details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px 32px; }
.lp-guide__details summary { cursor: pointer; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lp-guide__details summary::-webkit-details-marker { display: none; }
.lp-guide__h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; color: var(--beyond-navy); letter-spacing: -0.02em; line-height: 1.2; }
.lp-guide__hint { font-size: 12px; color: var(--lp-accent); font-weight: 500; }
.lp-guide__hint::before { content: '↓ '; }
.lp-guide__details[open] .lp-guide__hint::before { content: '↑ '; }
.lp-guide__body { font-size: 15.5px; line-height: 1.75; color: var(--beyond-navy); padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--line); }
.lp-guide__body p { margin: 0 0 16px; }
.lp-guide__body h3 { font-size: 18px; font-weight: 500; color: var(--beyond-navy); margin: 28px 0 10px; letter-spacing: -0.01em; }
.lp-guide__body strong { font-weight: 500; color: var(--lp-accent-dark); }
.lp-guide__body a { color: var(--lp-accent); text-decoration: none; }
.lp-guide__body a:hover { text-decoration: underline; }
.lp-guide__body em { color: var(--muted); }

/* CTA FINAL */
.lp-cta-final { background: var(--beyond-navy); color: #fff; padding: clamp(40px, 5vw, 64px) 0; }
.lp-cta-final__grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.lp-cta-final__title { font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; color: #fff; margin: 0 0 6px; }
.lp-cta-final__sub { font-size: 14px; color: rgba(255, 255, 255, 0.72); margin: 0; }
.lp-cta-final__buttons { display: flex; gap: 10px; flex-wrap: wrap; }

/* MOBILE */
@media (max-width: 900px) {
	.lp-header__phone span { display: none; }
	.lp-footer__inner { grid-template-columns: 1fr; gap: 24px; }
	.lp-footer__copy { margin-left: 0; width: 100%; padding-top: 6px; border-top: 1px dashed rgba(255, 255, 255, 0.08); }
	.lp-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.lp-hero__stats { gap: 24px; }
	.lp-products__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-types__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-why__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-testimonials__grid { grid-template-columns: 1fr; }
	.lp-faq__list { grid-template-columns: 1fr; }
	.lp-cta-final__grid { grid-template-columns: 1fr; text-align: center; }
	.lp-cta-final__buttons { justify-content: center; }
}

/* ====================================================================
   LANDING — MODAL DE PRODUCTO (Opción A: cotización rápida sin salir)
   Se abre al hacer click en cualquier card del catálogo.
   Cierra con: X, click en overlay, tecla ESC.
   ==================================================================== */
.lp-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.lp-modal.is-open { opacity: 1; pointer-events: auto; }
.lp-modal[hidden] { display: none; }
.lp-modal__overlay { position: absolute; inset: 0; background: rgba(11, 37, 64, 0.55); backdrop-filter: blur(2px); }
.lp-modal__inner { position: relative; background: #fff; border-radius: 18px; max-width: 880px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25); transform: translateY(16px); transition: transform 0.25s ease; }
.lp-modal.is-open .lp-modal__inner { transform: translateY(0); }

.lp-modal__close { position: absolute; top: 14px; right: 14px; background: #F2F4F7; border: none; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #475569; transition: background 0.15s, color 0.15s; z-index: 2; }
.lp-modal__close:hover { background: #E5E7EB; color: var(--beyond-navy); }

.lp-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.lp-modal__media { background: #F7F8FA; padding: 36px; display: flex; align-items: center; justify-content: center; border-radius: 18px 0 0 18px; }
.lp-modal__media img { max-width: 100%; max-height: 360px; width: auto; height: auto; object-fit: contain; }

.lp-modal__body { padding: 36px 40px; display: flex; flex-direction: column; }
.lp-modal__eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #FF6B00; font-weight: 500; margin: 0 0 12px; }
.lp-modal__name { font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; color: var(--beyond-navy); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 8px; }
.lp-modal__sku { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; margin: 0 0 18px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.lp-modal__desc { font-size: 14.5px; line-height: 1.6; color: #344054; margin: 0 0 22px; }
.lp-modal__perks { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px; background: #F7F8FA; border-radius: 10px; margin-bottom: 22px; }
.lp-modal__perks span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--beyond-navy); }
.lp-modal__cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.lp-modal__cta .lp-btn { justify-content: center; }

@media (max-width: 720px) {
	.lp-modal { padding: 12px; align-items: flex-end; }
	.lp-modal__inner { max-height: 95vh; border-radius: 18px 18px 0 0; }
	.lp-modal__grid { grid-template-columns: 1fr; }
	.lp-modal__media { padding: 24px; border-radius: 18px 18px 0 0; }
	.lp-modal__media img { max-height: 240px; }
	.lp-modal__body { padding: 24px; }
}

/* ====================================================================
   LANDING — FORM MODAL (cotización por formulario)
   ==================================================================== */
.lp-form-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.lp-form-modal.is-open { opacity: 1; pointer-events: auto; }
.lp-form-modal[hidden] { display: none; }
.lp-form-modal__overlay { position: absolute; inset: 0; background: rgba(11, 37, 64, 0.55); backdrop-filter: blur(2px); }
.lp-form-modal__inner { position: relative; background: #fff; color: var(--beyond-navy); border-radius: 18px; max-width: 560px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25); padding: 32px 36px; transform: translateY(16px); transition: transform 0.25s ease; }
.lp-form-modal.is-open .lp-form-modal__inner { transform: translateY(0); }
.lp-form-modal__head { margin-bottom: 22px; }
.lp-form-modal__title { font-size: clamp(22px, 2.6vw, 26px); font-weight: 500; color: var(--beyond-navy); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 8px; }
.lp-form-modal__sub { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

.lp-form { display: flex; flex-direction: column; gap: 14px; }
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-form__field { display: flex; flex-direction: column; gap: 6px; }
.lp-form__field > span { font-size: 12px; font-weight: 500; color: var(--beyond-navy); letter-spacing: 0.02em; }
.lp-form__field input,
.lp-form__field textarea { font-family: inherit; font-size: 14px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--beyond-navy); transition: border-color 0.15s, box-shadow 0.15s; }
.lp-form__field input:focus,
.lp-form__field textarea:focus { outline: none; border-color: #FF6B00; box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12); }
.lp-form__field textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.lp-form__submit { justify-content: center; margin-top: 8px; }
.lp-form__legal { font-size: 11.5px; color: var(--muted); text-align: center; margin: 0; }
.lp-form__legal a { color: #FF6B00; text-decoration: none; }
.lp-form__legal a:hover { text-decoration: underline; }

@media (max-width: 560px) {
	.lp-form-modal { padding: 12px; align-items: flex-end; }
	.lp-form-modal__inner { max-height: 95vh; border-radius: 18px 18px 0 0; padding: 24px; }
	.lp-form__row { grid-template-columns: 1fr; }
}

/* TOAST de éxito tras enviar formulario */
.lp-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 10001; background: #fff; border: 1px solid #C6E5D5; border-left: 3px solid #1D9E75; border-radius: 10px; padding: 14px 20px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12); display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--beyond-navy); max-width: 480px; opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.lp-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.lp-toast[hidden] { display: none; }

/* ====================================================================
   AEO/LLMO — "En resumen" (TL;DR) y acordeón FAQ del home.
   Bloques pensados para citas textuales de ChatGPT/Claude/Perplexity.
   Modo 'open' (siempre visible, home) vs 'collapsible' (acordeón).
   ==================================================================== */
.aeo-tldr { padding: clamp(20px, 3vw, 32px) 0; }

/* Modo OPEN — tarjeta blanca con sombra suave. Va al ancho del container. */
.aeo-tldr--open { background: linear-gradient(180deg, #FBFAF5 0%, #fff 100%); padding: clamp(28px, 4vw, 48px) 0; }
.aeo-tldr--open .aeo-tldr__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 3.5vw, 40px); box-shadow: 0 12px 36px rgba(11, 37, 64, 0.06); }

/* Modo COLLAPSIBLE — acordeón al final de páginas. Va al ancho del container. */
.aeo-tldr--collapsible .aeo-tldr__details { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s; }
.aeo-tldr--collapsible .aeo-tldr__details[open] { box-shadow: 0 12px 36px rgba(11, 37, 64, 0.06); }
.aeo-tldr__summary { cursor: pointer; padding: 18px 24px; display: flex; align-items: center; gap: 14px; list-style: none; }
.aeo-tldr__summary::-webkit-details-marker { display: none; }
.aeo-tldr__summary-title { flex: 1; font-size: 15px; font-weight: 500; color: var(--beyond-navy); letter-spacing: -0.01em; }
.aeo-tldr__chevron { font-size: 22px; color: var(--beyond-teal); font-weight: 300; flex-shrink: 0; transition: transform 0.2s; }
.aeo-tldr__details[open] .aeo-tldr__chevron { transform: rotate(45deg); }
.aeo-tldr__body { padding: 0 24px 22px; }

/* Contenido común (intro + bullets + close) */
.aeo-tldr__label { display: inline-block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beyond-teal-text); font-weight: 500; padding: 4px 10px; background: rgba(26, 165, 181, 0.10); border-radius: 999px; margin: 0; }
.aeo-tldr--open .aeo-tldr__label { margin-bottom: 14px; }
.aeo-tldr__intro { font-size: clamp(15px, 1.5vw, 16.5px); line-height: 1.6; color: var(--beyond-navy); margin: 0 0 14px; }
.aeo-tldr__list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.aeo-tldr__list li { position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.55; color: #344054; }
.aeo-tldr__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--beyond-teal); }
.aeo-tldr__list li strong { color: var(--beyond-navy); font-weight: 500; }
.aeo-tldr__close { font-size: 13px; color: var(--muted); margin: 0; font-style: italic; }

.aeo-faq { background: #fff; padding: clamp(40px, 5vw, 64px) 0; }
.aeo-faq__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 14px; max-width: 1280px; margin-top: 18px; }
.aeo-faq__item { background: #FBFAF5; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.aeo-faq__item summary { cursor: pointer; padding: 18px 22px; font-size: 15px; font-weight: 500; color: var(--beyond-navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.aeo-faq__item summary::-webkit-details-marker { display: none; }
.aeo-faq__item summary::after { content: '+'; font-size: 22px; color: var(--beyond-teal); font-weight: 300; flex-shrink: 0; }
.aeo-faq__item[open] summary::after { content: '−'; }
.aeo-faq__answer { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65; color: #475569; }
@media (max-width: 720px) {
	.aeo-faq__list { grid-template-columns: 1fr; }
}
