/* =====================================================================
   Laboratorios Jenssen · public.css
   Referencia: Canvas.dc.html — valores exactos del diseño aprobado
   ===================================================================== */

/* ── Fuentes ───────────────────────────────────────────────────────── */
/* Cargadas desde header.php vía Google Fonts */

/* ── Reset + Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #0a0a0a;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  --rojo:    #e30613;
  --verde:   #1fbf57;
  --bg:      #0a0a0a;
  --bg2:     #0d0d0d;
  --bg3:     #121212;
  --card:    #141414;
  --footer:  #050505;
  --text:    #fff;
  --muted:   #9a9a9a;
  --muted2:  #6a6a6a;
  --muted3:  #5a5a5a;
  --subtle:  #cfcfcf;
  --border:  rgba(255,255,255,.06);
  --border2: rgba(255,255,255,.12);
  --border3: rgba(255,255,255,.18);
  --px:      60px;   /* padding lateral desktop */
  --px-sm:  20px;   /* padding lateral mobile */
}

/* ── Tipografía utilitaria ─────────────────────────────────────────── */
.font-bc  { font-family: 'Barlow Condensed', sans-serif; }
.font-b   { font-family: 'Barlow', sans-serif; }
.font-mono{ font-family: 'JetBrains Mono', monospace; }

/* ── Imagen placeholder (mientras no hay foto real) ────────────────── */
.img-placeholder {
  background: repeating-linear-gradient(135deg,#1c1c1c,#1c1c1c 6px,#232323 6px,#232323 12px);
}
.img-placeholder-lg {
  background: repeating-linear-gradient(135deg,#1c1c1c,#1c1c1c 8px,#232323 8px,#232323 16px);
}

/* ====================================================================
   HEADER / NAV
   ==================================================================== */
.site-header {
  background: #0a0a0a;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  letter-spacing: .005em;
  line-height: 1;
}
.site-header__logo span { color: #e30613; }

.site-header__nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #9a9a9a;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color .2s;
}
.nav-item:hover { color: #fff; }
.nav-item.activo {
  background: #e30613;
  color: #fff;
}
.nav-dropdown__caret { font-size: 10px; opacity: .7; }

/* Dropdown de productos */
.nav-dropdown { position: relative; }
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid #e30613;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  z-index: 200;
  padding: 6px 0;
}
.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown__item {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a9a9a;
  padding: 10px 20px;
  transition: color .15s, background .15s;
}
.nav-dropdown__item:hover { color: #fff; background: rgba(255,255,255,.05); }

/* Mobile sub-items */
.mobile-nav__subitem {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6a6a6a !important;
  padding: 9px 20px 9px 36px !important;
  border-bottom: 1px solid rgba(255,255,255,.03) !important;
}
.mobile-nav__subitem::before { content: '– '; }
.mobile-nav__subitem:hover { color: #e30613 !important; }

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1fbf57;
  color: #fff;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.site-header__cta:hover { opacity: .9; }
.site-header__cta-icon {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.site-header__toggle {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: linear-gradient(180deg, #131313 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; position: fixed; left: 0; right: 0; z-index: 99; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a9a9a;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav a.activo { color: #e30613; }
.mobile-nav a:hover  { color: #fff; }
.mobile-nav-wa {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #1fbf57 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  margin-top: 4px;
}
.mobile-nav-wa svg {
  width: 18px;
  height: 18px;
  fill: #1fbf57;
  flex-shrink: 0;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer {
  background: #050505;
  border-top: 2px solid #e30613;
  padding: 44px var(--px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: #e30613; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #8a8a8a;
  max-width: 280px;
}

.footer-zones {
  font-size: 12px;
  line-height: 1.6;
  color: #5a5a5a;
  max-width: 280px;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}

.footer-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  color: #e30613;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #9a9a9a;
  list-style: none;
}
.footer-links a:hover { color: #fff; }

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.5;
  list-style: none;
}
.footer-contact-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #5a5a5a;
  letter-spacing: .1em;
}

.footer-made-in {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 12px;
  color: #6a6a6a;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-accent { background: #e30613; height: 6px; margin: 0 calc(-1 * var(--px)); }

/* ====================================================================
   COMPONENTES COMPARTIDOS
   ==================================================================== */

/* Breadcrumb */
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6a6a6a;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
}
.breadcrumb a { color: #9a9a9a; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 8px; color: #4a4a4a; }
.breadcrumb .current { color: #e30613; }

/* Barra roja cierre de página */
.page-bar { background: #e30613; height: 6px; }

/* CTA rojo principal */
.btn-rojo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #e30613;
  padding: 14px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.btn-rojo:hover { opacity: .88; }
.btn-rojo .arr { font-style: normal; font-size: 18px; }

/* CTA borde blanco */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: border-color .2s;
}
.btn-outline:hover { border-color: #fff; }

/* WhatsApp flotante */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wa-float__btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #1fbf57;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(31,191,87,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(31,191,87,.5); }
.wa-float__btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-float__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tarjeta de producto */
.prod-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s;
  display: block;
  position: relative;
  overflow: hidden;
}
.prod-card:hover { border-color: rgba(227,6,19,.45); }

/* Overlay hover */
.prod-card__overlay {
  position: absolute;
  inset: 0 0 auto 0;
  aspect-ratio: 1/1;
  background: rgba(0,0,0,.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  z-index: 1;
}
.prod-card:hover .prod-card__overlay { opacity: 1; }
.prod-card__overlay-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: #e30613;
  padding: 10px 22px;
}
.prod-card__mobile-cta { display: none; }

.prod-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #0d0d0d;
  position: relative;
}
.prod-card__img img { width: 100%; height: 100%; object-fit: contain; }

.prod-card__body {
  padding: 12px 14px 14px;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.05);
}

.prod-card__nombre {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 3px;
  line-height: 1.1;
}

.prod-card__desc {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.4;
  margin-bottom: 8px;
}

.prod-card__pres {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #e30613;
  letter-spacing: .05em;
}

/* Badge de categoría / línea */
.badge-linea {
  background: #e30613;
  color: #fff;
  padding: 5px 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-block;
}

/* Tag de presentación */
.pres-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #e30613;
  padding: 3px 8px;
  border: 1px solid rgba(227,6,19,.3);
  letter-spacing: .05em;
  display: inline-block;
}

/* Stats (hero de línea) */
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
.stat-num .rojo { color: #e30613; }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ====================================================================
   PÁGINA DE INICIO — Variante A
   ==================================================================== */

/* Hero slider */
.hero-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-slide.activo { opacity: 1; z-index: 1; }
.hero-slide__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.6) 45%, rgba(227,6,19,.25) 100%);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 70px;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #e30613;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 72px;
  color: #fff;
  line-height: .9;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-body {
  font-size: 19px;
  color: #d8d8d8;
  margin-bottom: 30px;
  max-width: 520px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: border-color .2s, background .2s;
}
.slider-arrow:hover { border-color: #e30613; background: #e30613; }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 70px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  height: 4px;
  background: rgba(255,255,255,.3);
  width: 14px;
  transition: width .3s, background .3s;
}
.slider-dot.activo { width: 28px; background: #e30613; }

/* Grilla de categorías (Inicio) */
.cats-section {
  position: relative;
  background: linear-gradient(180deg, #1a0606 0%, #0a0a0a 60%);
  padding: 56px var(--px) 64px;
  overflow: hidden;
}
.cats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.015), rgba(255,255,255,.015) 10px, transparent 10px, transparent 20px);
  pointer-events: none;
}
.cats-section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 44px;
  color: #fff;
  line-height: .95;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.cat-card {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  padding: 28px 18px;
  text-align: center;
  transition: border-color .2s;
  display: block;
}
.cat-card:hover { border-color: #e30613; }
.cat-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card__icon svg { width: 34px; height: 34px; fill: rgba(255,255,255,.55); }
.cat-card__icon-inner { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.5); }
.cat-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cats-cta {
  grid-column: 1 / -1;
  justify-self: center;
  width: max-content;
  padding-left: 32px;
  padding-right: 32px;
  margin-top: 10px;
}
.cats-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #7a6a6a;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 18px;
  position: relative;
}

/* Bloque convicción + features */
.conviction-section {
  background: #141414;
  padding: 56px var(--px);
}
.conviction-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}
.conviction-quote {
  border-left: 2px solid #e30613;
  padding-left: 22px;
  font-size: 19px;
  line-height: 1.6;
  color: #d8d8d8;
}
.conviction-quote strong { color: #fff; }
.conviction-img {
  aspect-ratio: 16/10;
  padding-bottom: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conviction-img img { width: 100%; height: 100%; object-fit: cover; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 32px; height: 32px; fill: #e30613; }
.feature-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  color: #cfcfcf;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Sección de contacto (Inicio) */
.contact-section {
  background: #0a0a0a;
  padding: 56px var(--px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
.contact-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 44px;
  color: #fff;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 26px;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #141414;
  border: 1px solid rgba(255,255,255,.1);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #e30613; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6a6a6a; }
.contact-form textarea { height: 96px; }
.contact-submit {
  background: #e30613;
  padding: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.contact-submit:hover { opacity: .88; }

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-content: center;
}
.contact-info-item {}
.contact-info-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 28px; height: 28px; fill: #e30613; flex-shrink: 0; }
.contact-info-icon.wa { border-color: #1fbf57; border-radius: 50%; }
.contact-info-icon.wa svg { fill: #1fbf57; }
.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-value { font-size: 16px; color: #9a9a9a; }

.form-success {
  background: rgba(31,191,87,.1);
  border: 1px solid rgba(31,191,87,.3);
  color: #1fbf57;
  padding: 14px 16px;
  font-size: 15px;
}
.form-error {
  background: rgba(227,6,19,.1);
  border: 1px solid rgba(227,6,19,.3);
  color: #ff6b6b;
  padding: 14px 16px;
  font-size: 15px;
}

/* ====================================================================
   PÁGINA GENERAL DE PRODUCTOS — Variante A (split 50/50)
   ==================================================================== */
.productos-hero {
  background: radial-gradient(60% 100% at 20% 0%, rgba(227,6,19,.18), transparent 70%), #0a0a0a;
  padding: 44px var(--px) 48px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.productos-hero-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}
.productos-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #e30613;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.productos-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.productos-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 68px;
  color: #fff;
  line-height: .92;
  text-transform: uppercase;
}
.productos-hero-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #bdbdbd;
  max-width: 380px;
  margin-bottom: 6px;
}

/* Cards de línea (split 50/50) */
.lineas-grid {
  background: #0a0a0a;
  padding: 48px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.linea-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: border-color .2s;
}
.linea-card:hover { border-color: rgba(227,6,19,.3); }
.linea-card__img-link { display: block; }
.linea-card__img {
  height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
}
.linea-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.linea-card__body { padding: 30px 32px 34px; }
.linea-card__nombre {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 38px;
  color: #fff;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.linea-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #9a9a9a;
  margin-bottom: 22px;
}
.linea-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
}
.cat-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #cfcfcf;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.1);
}
.cat-chip.mas { color: #6a6a6a; border: none; }
a.cat-chip:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* Trust bullets — padding dinámico centra el contenido sin cortar el fondo */
.trust-bar {
  background: #121212;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px max(var(--px), calc((100% - 960px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.015) 12px, rgba(255,255,255,.015) 13px);
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #e30613;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 18px; height: 18px; fill: #e30613; }
.trust-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
  color: #bdbdbd;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* ====================================================================
   PÁGINA DE LÍNEA — Variante B (secciones + carousels)
   ==================================================================== */
.linea-hero {
  background: linear-gradient(180deg, #1a0606 0%, #0a0a0a 100%);
  padding: 36px var(--px) 32px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.linea-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.02), rgba(255,255,255,.02) 8px, transparent 8px, transparent 16px);
  pointer-events: none;
}
.linea-hero__inner { position: relative; }
.linea-hero__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.linea-hero__left {}
.linea-hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #e30613;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.linea-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 56px;
  color: #fff;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.linea-hero__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #9a9a9a;
  max-width: 400px;
}
.linea-hero__stats {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-shrink: 0;
}
.linea-hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}

/* Jump links (sticky) */
.jump-bar {
  background: #121212;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px var(--px);
  position: sticky;
  top: 57px; /* altura del header */
  z-index: 90;
  overflow-x: auto;
}
.jump-bar::-webkit-scrollbar { display: none; }
.jump-bar__inner {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  min-width: max-content;
}
.jump-bar__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  color: #e30613;
  letter-spacing: .22em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.jump-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #9a9a9a;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s;
  padding-bottom: 2px;
}
.jump-link:hover { color: #fff; }
.jump-link.activo { color: #fff; border-bottom: 1px solid #e30613; }

/* Sección de categoría */
.cat-section {
  background: #0a0a0a;
  padding: 48px var(--px) 40px;
  scroll-margin-top: 110px;
}
.cat-section + .cat-section {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.cat-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.cat-section__left {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.cat-section__num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  color: #e30613;
  letter-spacing: .16em;
  padding-bottom: 6px;
}
.cat-section__nombre {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 56px;
  color: #fff;
  line-height: .92;
  text-transform: uppercase;
}
.cat-section__right { display: flex; gap: 8px; align-items: center; }
.cat-section__count {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #9a9a9a;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* Carousel arrows */
.car-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.car-arrow:not(:disabled):hover { border-color: #e30613; background: #e30613; }
.car-arrow:disabled { opacity: .25; cursor: not-allowed; }

/* Carousel viewport */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  transition: transform .35s ease;
  will-change: transform;
}

/* Producto card en carousel (desktop: width 276px) */
.carousel-track .prod-card {
  flex: none;
  width: calc((100% - 3 * 18px) / 4);
  min-width: 220px;
}

/* Peek variant — categories with > 4 products show partial next card (desktop only) */
@media (min-width: 769px) {
  .js-carousel--peek {
    overflow: hidden;
  }
  .js-carousel--peek .carousel-viewport {
    overflow: visible;
  }
  .js-carousel--peek .carousel-track .prod-card {
    width: calc((100% - 4 * 18px - 60px) / 4);
    min-width: 180px;
  }
}

/* Grilla de productos */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 var(--px);
}
.prod-grid .prod-card { min-width: 0; }

@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prod-grid .prod-card__overlay { display: none; }
  .prod-grid .prod-card__mobile-cta { display: block; }
}

/* Estado vacío de categoría */
.cat-empty {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #5a5a5a;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 32px 0;
}

/* ====================================================================
   FICHA DE PRODUCTO — Variante A
   ==================================================================== */
.ficha-breadcrumb {
  background: #0a0a0a;
  padding: 18px var(--px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.ficha-hero {
  background: #0a0a0a;
  padding: 40px var(--px) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Galería izquierda */
.ficha-gallery { min-width: 0; }
.ficha-gallery__main {
  aspect-ratio: 1/1;
  max-height: 520px;
  position: relative;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  background: #111;
  overflow: hidden;
}
.gallery-blur-bg {
  position: absolute;
  inset: 0;
  background: #111 center/cover no-repeat;
  transform: scale(1.5);
  filter: blur(40px) saturate(.7) brightness(.55);
  will-change: transform;
  z-index: 0;
}
.ficha-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 1;
}
.gallery-arrow { z-index: 3; }
.ficha-gallery__badge {
  display: inline-block;
  margin-bottom: 5px;
}
.ficha-gallery__thumbs-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
}
.thumbs-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ficha-gallery__thumbs {
  display: flex;
  gap: 6px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: var(--rojo); border-color: var(--rojo); }
.gallery-arrow--prev { left: 10px; }
.gallery-arrow--next { right: 10px; }
.gallery-arrow span { display: inline-block; }
.gallery-arrow--prev span { animation: nudge-l 1.8s ease-in-out infinite; }
.gallery-arrow--next span { animation: nudge-r 1.8s ease-in-out infinite; }
.thumbs-nav {
  width: 22px;
  height: 64px;
  background: transparent;
  border: none;
  color: var(--rojo);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .15s;
  padding: 0;
}
.thumbs-nav:hover { color: #ff2233; }
@keyframes nudge-l {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(-4px); }
}
@keyframes nudge-r {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(4px); }
}
.ficha-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.ficha-thumb.activo { border: 2px solid #e30613; }
.ficha-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ficha-gallery__caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 10px;
}

/* Thumbnails overflow (carousel de thumbs) */
.thumbs-viewport { overflow: hidden; }
.thumbs-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  transition: transform .3s ease;
}

/* Info derecha */
.ficha-info {}
.ficha-info__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  color: #e30613;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ficha-info h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 64px;
  color: #fff;
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ficha-info__desc {
  font-size: 18px;
  line-height: 1.45;
  color: #cfcfcf;
  margin-bottom: 24px;
}

/* Presentaciones */
.pres-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6a6a6a;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pres-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pres-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.15);
  color: #cfcfcf;
  background: rgba(255,255,255,.04);
  user-select: none;
}

/* Specs */
.ficha-specs {
  background: #141414;
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}
.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.spec-val { font-size: 15px; color: #fff; }

/* CTA buttons (ficha) */
.ficha-ctas { display: flex; flex-direction: column; gap: 10px; }
.cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1fbf57;
  padding: 18px 24px;
  transition: opacity .2s;
}
.cta-wa:hover { opacity: .9; }
.cta-wa-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}
.cta-wa-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cta-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.18);
  padding: 16px 24px;
  transition: border-color .2s;
}
.cta-pdf:hover { border-color: #fff; }
.cta-pdf-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #fff;
}
.cta-pdf-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Meta info (sku, origen) */
.ficha-meta {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #6a6a6a;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Tabs de ficha */
.ficha-tabs {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px var(--px) 48px;
}
.tabs-bar {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
  overflow-x: auto;
  gap: 0;
}
.tabs-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #9a9a9a;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.tab-btn:hover { color: #fff; }
.tab-btn.activo {
  font-style: italic;
  font-weight: 700;
  color: #fff;
  border-bottom-color: #e30613;
}
.tab-panel { display: none; }
.tab-panel.activo { display: block; }
.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
}
.tab-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-lista li {
  font-size: 16px;
  line-height: 1.55;
  color: #cfcfcf;
  padding-left: 20px;
  position: relative;
}
.tab-lista li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #e30613;
  font-size: 8px;
  top: 5px;
}
.tab-content p,
.tab-single p {
  font-size: 16px;
  line-height: 1.65;
  color: #cfcfcf;
}

/* Relacionados */
.relacionados-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px var(--px) 56px;
}
.relacionados-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.relacionados-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
}
.relacionados-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #9a9a9a;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.relacionados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ====================================================================
   NOSOTROS — Variante B (industrial)
   ==================================================================== */
.nosotros-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.nosotros-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nosotros-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.55) 55%, rgba(227,6,19,.2) 100%);
}
.nosotros-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--px);
  max-width: 820px;
}
.nosotros-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 80px;
  color: #fff;
  line-height: .88;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nosotros-hero__desc {
  font-size: 19px;
  line-height: 1.55;
  color: #d8d8d8;
  max-width: 560px;
}

/* Misión / Visión */
.mv-section {
  background: #0a0a0a;
  padding: 56px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mv-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid #e30613;
  padding: 40px;
}
.mv-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  color: #e30613;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mv-card__text {
  font-size: 18px;
  line-height: 1.6;
  color: #d8d8d8;
}

/* Timeline */
.timeline-section {
  background: #141414;
  padding: 56px var(--px);
}
.timeline-header { margin-bottom: 40px; }
.timeline-header__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  color: #e30613;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.timeline-item { padding: 0 22px 0 0; }
.timeline-item + .timeline-item { padding: 0 22px; }
.timeline-item:last-child { padding: 0 0 0 22px; }
.timeline-line {
  height: 2px;
  background: rgba(255,255,255,.15);
  margin-bottom: 20px;
}
.timeline-line.activo { background: #e30613; }
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}
.timeline-year.activo { color: #e30613; }
.timeline-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.timeline-texto { font-size: 15px; line-height: 1.5; color: #9a9a9a; }

/* Diferenciales */
.dif-section {
  background: #0a0a0a;
  padding: 56px var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dif-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #121212;
  border: 1px solid rgba(255,255,255,.06);
  padding: 26px;
}
.dif-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #e30613;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dif-icon svg { width: 20px; height: 20px; fill: #e30613; }
.dif-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.15;
}
.dif-texto { font-size: 15px; line-height: 1.5; color: #9a9a9a; }

/* CTA band */
.cta-band {
  background: #e30613;
  padding: 44px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  line-height: .98;
  max-width: 640px;
}
.cta-band-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cta-band-btn-primary {
  background: #25D366;
  padding: 15px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-band-btn-primary:hover { opacity: .9; }
.cta-band-wa-icon { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.cta-band-btn-secondary {
  border: 1px solid rgba(255,255,255,.5);
  padding: 15px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s;
}
.cta-band-btn-secondary:hover { border-color: #fff; }

/* ====================================================================
   404
   ==================================================================== */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.page-404__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 140px;
  color: #e30613;
  line-height: .85;
  opacity: .7;
}
.page-404 h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  margin: 16px 0 12px;
}
.page-404 p { font-size: 15px; color: #9a9a9a; margin-bottom: 32px; }

/* Footer WA links y dirección */
.footer-wa-link {
  color: #1fbf57 !important;
  font-weight: 500;
}
.footer-wa-link:hover { color: #fff !important; }
.footer-wa-secondary { color: #6abf87 !important; font-size: 12px; }
.footer-tel-line { opacity: .55; }
.footer-tel-line a { color: #7a7a7a; }
.footer-contact-links li { list-style: none; }
.footer-address-link {
  color: #7a7a7a !important;
  line-height: 1.6;
  font-size: 12px;
  transition: color .2s;
}
.footer-address-link:hover { color: #ccc !important; }

/* CTA band sub-texto */
.cta-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  max-width: 520px;
  margin-top: 10px;
}

/* ====================================================================
   RESPONSIVE / MOBILE (≤ 768px)
   ==================================================================== */
@media (max-width: 768px) {

  :root { --px: var(--px-sm); }

  /* Header mobile */
  .site-header { padding: 16px 20px; }
  .site-header__logo { font-size: 24px; }
  .site-header__nav { display: none; }
  .site-header__toggle { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 8px 12px; }
  .site-header__cta { padding: 8px 12px; font-size: 12px; letter-spacing: .12em; }
  .site-header__cta-icon { width: 15px; height: 15px; }
  .site-header__mobile-right { display: flex; align-items: center; gap: 10px; }

  /* Footer mobile */
  .site-footer { padding: 32px var(--px-sm) 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
  .footer-grid > *:last-child { /* Contacto */
    grid-column: 1 / -1;
  }
  .footer-logo { font-size: 28px; }
  .footer-accent { margin: 0 calc(-1 * var(--px-sm)); }

  /* Hero slider */
  .hero-slider { height: 420px; }
  .hero-slide__overlay {
    background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.9) 100%);
  }
  .hero-slide__content {
    justify-content: flex-end;
    padding: 24px var(--px-sm) 30px;
    max-width: 100%;
  }
  .hero-title { font-size: 46px; }
  .hero-body { font-size: 15px; margin-bottom: 18px; }
  .slider-dots { left: var(--px-sm); bottom: 18px; }
  .slider-arrow { display: flex; width: 36px; height: 36px; font-size: 18px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }

  /* Categorías grid mobile */
  .cats-section { padding: 30px var(--px-sm) 36px; }
  .cats-section__title { font-size: 26px; margin-bottom: 22px; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { padding: 18px 12px; }
  .cat-card__icon { width: 36px; height: 36px; margin-bottom: 10px; }
  .cat-card__label { font-size: 13px; letter-spacing: .08em; }
  .cat-card.cta { grid-column: 1 / -1; flex-direction: row; padding: 18px; }
  .cat-card.cta .cat-card__label { font-size: 18px; }

  /* Convicción mobile */
  .conviction-section { padding: 36px var(--px-sm); }
  .conviction-inner { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .conviction-quote { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Contacto mobile */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px var(--px-sm);
  }
  .contact-form-title { font-size: 32px; margin-bottom: 18px; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }

  /* Productos general mobile */
  .productos-hero { padding: 28px var(--px-sm) 32px; }
  .productos-hero h1 { font-size: 38px; }
  .productos-hero-inner { flex-direction: column; gap: 16px; }
  .productos-hero-desc { max-width: 100%; }
  .lineas-grid { grid-template-columns: 1fr; padding: 24px var(--px-sm); }
  .linea-card__nombre { font-size: 32px; }
  .trust-bar { grid-template-columns: 1fr; gap: 20px; padding: 24px var(--px-sm); }

  /* Línea mobile */
  .linea-hero { padding: 22px var(--px-sm) 24px; }
  .linea-hero h1 { font-size: 40px; }
  .linea-hero__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .linea-hero__stats { gap: 16px; }
  .stat-num { font-size: 36px; }

  .jump-bar { top: 50px; padding: 14px var(--px-sm); }

  .cat-section { padding: 24px var(--px-sm) 28px; }
  .cat-section__nombre { font-size: 32px; }
  .cat-section__left { gap: 12px; }

  /* Carousel → grid 2 columnas en mobile */
  .carousel-viewport { overflow: visible; }
  .carousel-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    transform: none !important;
    transition: none;
  }
  .carousel-track .prod-card { width: auto; min-width: 0; }
  .car-arrow { display: none; }
  .cat-section__right { display: none; }
  .prod-card__overlay { display: none; }
  .prod-card__mobile-cta {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #e30613;
    padding: 6px 14px 10px;
    background: #0d0d0d;
  }

  /* Ficha mobile */
  .ficha-breadcrumb { padding: 14px var(--px-sm); }
  .ficha-hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px var(--px-sm) 0;
  }
  .ficha-info h1 { font-size: 42px; }
  .ficha-info__desc { font-size: 15px; }
  .ficha-info { padding: 8px 0 24px; }
  .ficha-tabs { padding: 22px var(--px-sm) 24px; }
  .tab-content { grid-template-columns: 1fr; gap: 16px; }
  .relacionados-section { padding: 28px var(--px-sm) 36px; }
  .relacionados-grid { grid-template-columns: 1fr 1fr; }

  /* Specs mobile grid */
  .ficha-specs { }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 14px; }

  /* Nosotros mobile */
  .nosotros-hero { height: 360px; }
  .nosotros-hero h1 { font-size: 52px; }
  .nosotros-hero__desc { font-size: 16px; }

  /* Mobile image position + overlay via CSS custom properties (set inline by PHP) */
  .hero-slide__bg { background-position: var(--mob-bg-pos, 50% 50%) !important; }
  .hero-slide__overlay { background: var(--mob-overlay, linear-gradient(180deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.6) 100%)) !important; }
  .linea-card__img { background-position: var(--mob-bg-pos, 50% 90%) !important; }
  .linea-card__img-overlay { background: var(--mob-overlay, rgba(10,10,10,.5)) !important; opacity: 1 !important; }
  .nosotros-hero__bg { background-position: var(--mob-bg-pos, 50% 70%) !important; }
  .nosotros-hero__overlay { background: var(--mob-overlay, linear-gradient(180deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.88) 100%)) !important; }
  .mv-section { grid-template-columns: 1fr; padding: 32px var(--px-sm); }
  .mv-card { padding: 28px; }
  .timeline-section { padding: 36px var(--px-sm); }
  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .timeline-item,
  .timeline-item + .timeline-item,
  .timeline-item:last-child { padding: 0; }
  .dif-section { grid-template-columns: 1fr; padding: 32px var(--px-sm); }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px var(--px-sm); }
  .cta-band h2 { font-size: 28px; }
  .cta-band-sub { font-size: 13px; }
  .cta-band-btns { flex-direction: column; width: 100%; }
  .cta-band-btn-primary,
  .cta-band-btn-secondary { text-align: center; }

  /* 404 mobile */
  .page-404__num { font-size: 100px; }
  .page-404 h1 { font-size: 30px; }

  /* WhatsApp flotante */
  .wa-float { bottom: 16px; right: 16px; }
  .wa-float__btn { width: 52px; height: 52px; }
  .wa-float__btn svg { width: 24px; height: 24px; }
}
