/* ============================================================
   Oslo Impor-Tec — Estilos principales
   Nav/Footer: rojo #f40a0f | Cuerpo: blanco | Títulos: rojo
   ============================================================ */

:root {
  --red:        #f40a0f;
  --red-dark:   #c20007;
  --red-dim:    rgba(244,10,15,0.10);
  --red-border: rgba(244,10,15,0.25);

  --bg:         #ffffff;
  --bg-2:       #f7f7f7;
  --bg-3:       #f0f0f0;
  --bg-dark:    #111110;

  --nav-bg:     #f40a0f;
  --footer-bg:  #f40a0f;

  --text-1:     #1a1a18;
  --text-2:     #555550;
  --text-3:     #999990;
  --text-white: #ffffff;
  --text-white2: rgba(255,255,255,0.75);

  --border:     rgba(0,0,0,0.09);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.13);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:    6px;
  --radius-lg: 14px;
  --nav-h:     68px;
  --section-pad: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════════════
   NAV  —  fondo rojo
══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: var(--nav-bg);
  box-shadow: 0 2px 12px rgba(180,0,0,0.25);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo-img  { height: 42px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 0.04em; }

/* Links base */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link, .nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  padding: 8px 14px;
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-drop-btn:hover,
.nav-link.active { background: rgba(255,255,255,0.15); color: #fff; }
.nav-link.active { font-weight: 700; }

.nav-chev { font-size: 14px; transition: transform 0.2s; }
.nav-dropdown.open .nav-chev,
.nav-dropdown:focus-within .nav-chev { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-lg);
  z-index: 300;
}
.dropdown-menu--wide { min-width: 280px; }

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
}
.dropdown-link:hover { background: var(--red-dim); color: var(--red); }
.dropdown-link i { font-size: 17px; color: var(--red); flex-shrink: 0; }

.drop-brand-ico {
  width: 24px; height: 24px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.drop-marca-tag {
  margin-left: auto;
  font-size: 10px;
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid var(--red-border);
  border-radius: 3px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* WA button */
.nav-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  margin-left: 6px;
  white-space: nowrap;
}
.nav-btn-wa:hover { background: #25d366; color: #fff; }
.nav-btn-wa i { font-size: 17px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 1px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   BOTONES GLOBALES
══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary i { font-size: 19px; }
.btn-primary.btn-lg { font-size: 16px; padding: 15px 32px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  padding: 13px 20px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.40); cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.10); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  padding: 13px 24px; border-radius: var(--radius);
  transition: background 0.15s;
}
.btn-wa:hover { background: #1daa53; }
.btn-wa i { font-size: 19px; }

.btn-outline-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--red);
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid var(--red); cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════════════════════
   HERO  —  fondo oscuro con rojo
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: #111110;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,10,15,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,10,15,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute; top: 10%; left: -5%;
  width: 70vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(244,10,15,0.13) 0%, transparent 65%);
}

.hero-inner {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(244,10,15,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(244,10,15,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px,7.5vw,88px);
  font-weight: 800; line-height: 0.93; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 22px;
}
.hero-accent { color: var(--red); }

.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 480px; margin-bottom: 36px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.stat-item { display: flex; flex-direction: column; gap: 2px; padding-right: 28px; }
.stat-num  { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--red); line-height: 1; }
.stat-label{ font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.stat-sep  { width: 1px; height: 36px; background: rgba(255,255,255,0.12); margin-right: 28px; flex-shrink: 0; }

/* Tarjeta hero */
.hero-visual { display: flex; align-items: center; justify-content: center; }

.hero-card {
  background: #1c1c1a;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%; max-width: 430px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}
.hero-card-header {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #222220;
}
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dot.red    { background: #ff5f57; }
.hero-card-dot.yellow { background: #ffbd2e; }
.hero-card-dot.green  { background: #28c840; }
.hero-card-label { margin-left: 8px; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; text-transform: uppercase; }

.hero-card-brand {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s; cursor: pointer;
}
.hero-card-brand:last-child { border-bottom: none; }
.hero-card-brand:hover { background: rgba(255,255,255,0.04); }

.hcb-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--brand-color) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-color) 35%, transparent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.hcb-icon img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.hcb-icon i   { font-size: 22px; color: var(--brand-color); }
.hcb-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hcb-info strong { font-size: 14px; font-weight: 600; color: #fff; }
.hcb-info span   { font-size: 12px; color: rgba(255,255,255,0.40); line-height: 1.4; }
.hcb-arrow { font-size: 15px; color: rgba(255,255,255,0.20); }

.hero-scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.25); font-size: 24px; z-index: 2;
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════
   FRANJA CATEGORÍAS
══════════════════════════════════════════════════════════ */
.cats-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cats-strip-item {
  display: flex; align-items: center; gap: 8px;
  padding: 15px 26px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  border-right: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.cats-strip-item:last-child { border-right: none; }
.cats-strip-item:hover { color: var(--red); background: var(--red-dim); }
.cats-strip-item i { font-size: 18px; color: var(--red); }

/* ══════════════════════════════════════════════════════════
   SECCIONES — Layout base
══════════════════════════════════════════════════════════ */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,56px); font-weight: 800; line-height: 1.05;
  color: var(--red); margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-sub { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   MARCAS
══════════════════════════════════════════════════════════ */
.marcas-section { padding: var(--section-pad) 0; background: var(--bg); }

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.marca-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  background: var(--bg);
  position: relative;
}
.marca-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--mc1) 40%, transparent);
}

/* Imagen de producto */
.mc-img-wrap {
  position: relative;
  height: 200px;
  background: color-mix(in srgb, var(--mc1) 10%, #111);
  overflow: hidden;
}
.mc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.marca-card:hover .mc-img { transform: scale(1.04); }

.mc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--mc1) 25%, transparent) 0%,
    rgba(0,0,0,0.55) 100%
  );
}
.mc-img--noimg .mc-img { display: none; }
.mc-img--noimg { background: color-mix(in srgb, var(--mc1) 15%, #1c1c1a); }

.mc-img-top {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; align-items: center;
}
.mc-logo-ico {
  height: 38px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  drop-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.mc-logo-ico-fallback {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  align-items: center; justify-content: center;
}
.mc-logo-ico-fallback i { font-size: 22px; color: #fff; }

.mc-number {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: 52px; font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}

.mc-body { padding: 20px 24px 18px; flex: 1; }
.mc-name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  color: var(--red); letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.mc-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.mc-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mc-cta {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}
.marca-card:hover .mc-cta { gap: 10px; }
.mc-cta i { font-size: 16px; }
.mc-bar {
  height: 3px; width: 32px;
  background: color-mix(in srgb, var(--mc1) 30%, transparent);
  border-radius: 2px; transition: width 0.25s, background 0.25s;
}
.marca-card:hover .mc-bar { width: 52px; background: var(--mc1); }

/* ══════════════════════════════════════════════════════════
   LÍNEAS PREVIEW (en homepage)
══════════════════════════════════════════════════════════ */
.lineas-preview { padding: var(--section-pad) 0; background: var(--bg-2); }

.lineas-preview-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.lp-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.lp-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); background: var(--red-dim); }

.lp-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--red-dim); border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-icon i { font-size: 18px; color: var(--red); }

.lp-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.lp-info strong { font-size: 13px; font-weight: 600; color: var(--text-1); }
.lp-marca {
  font-size: 10px; color: var(--red);
  background: var(--red-dim); border: 1px solid var(--red-border);
  border-radius: 3px; padding: 1px 6px;
  letter-spacing: 0.06em; font-weight: 600;
  display: inline-block; width: fit-content;
}
.lp-arrow { font-size: 15px; color: var(--text-3); flex-shrink: 0; }
.lp-card:hover .lp-arrow { color: var(--red); }

.lineas-preview-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--red);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,46px); font-weight: 800;
  color: #fff; margin-bottom: 10px;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-section .btn-primary {
  background: #fff; color: var(--red);
}
.cta-section .btn-primary:hover { background: #f0f0f0; }

/* ══════════════════════════════════════════════════════════
   FOOTER  —  fondo rojo
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--footer-bg); }

.footer-top {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo { height: 44px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 14px;
}
.footer-slogan { font-size: 14px; color: rgba(255,255,255,0.70); line-height: 1.6; margin-bottom: 20px; }

.footer-marcas-icons {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-marcas-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: background 0.15s;
}
.footer-marcas-icons a:hover { background: rgba(255,255,255,0.25); }
.footer-marcas-icons img {
  width: 28px; height: 28px; object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.50);
  margin-bottom: 18px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.footer-links-group a:hover { color: #fff; }
.footer-links-group i { font-size: 15px; color: rgba(255,255,255,0.50); }
.footer-ver-todas { color: rgba(255,255,255,0.50) !important; font-size: 13px !important; }
.footer-ver-todas:hover { color: #fff !important; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-cats      { font-size: 12px; color: rgba(255,255,255,0.30); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════════════════════
   PÁGINA DE LÍNEAS
══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--red);
  padding: calc(var(--nav-h) + 60px) 0 56px;
  text-align: center;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 28px; }

.page-hero .hero-eyebrow { justify-content: center; color: rgba(255,255,255,0.80); }
.page-hero .eyebrow-dot  { background: rgba(255,255,255,0.80); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px,8vw,80px); font-weight: 800;
  color: #fff; line-height: 0.95; margin-bottom: 18px;
}
.page-hero-title .hero-accent { color: rgba(255,255,255,0.85); text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }

/* Buscador */
.lineas-search-wrap {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 40px;
  padding: 12px 22px;
  max-width: 480px; margin: 0 auto;
  backdrop-filter: blur(8px);
}
.lineas-search-wrap i { font-size: 20px; color: rgba(255,255,255,0.70); flex-shrink: 0; }
.lineas-search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-body); font-size: 15px; color: #fff;
}
.lineas-search-wrap input::placeholder { color: rgba(255,255,255,0.55); }

/* Índice sticky */
.lineas-index {
  position: sticky; top: var(--nav-h); z-index: 100;
  background: var(--bg); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.lineas-index-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lineas-index-inner::-webkit-scrollbar { display: none; }

.li-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; white-space: nowrap;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  border-radius: var(--radius); flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.li-pill:hover, .li-pill.active { background: var(--red-dim); color: var(--red); }
.li-pill i { font-size: 15px; }

/* Layout principal lineas */
.lineas-main {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.lineas-main-inner { display: flex; flex-direction: column; gap: 0; }

/* Bloque de línea */
.linea-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 56px);
}
.linea-block:first-child { padding-top: 0; }
.linea-block:last-child  { border-bottom: none; }

/* Cabecera línea */
.linea-head {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 24px;
}
.linea-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--red-dim);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.linea-icon-wrap i { font-size: 26px; color: var(--red); }

.linea-head-text { flex: 1; }
.linea-head-top  { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.linea-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; color: var(--red);
}
.linea-marca-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-dim); border: 1px solid var(--red-border);
  border-radius: 3px; padding: 3px 9px;
}
.linea-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.linea-cotizar-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius);
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.15s;
}
.linea-cotizar-btn:hover { background: var(--red-dark); }
.linea-cotizar-btn i { font-size: 16px; }

/* Subcategorías */
.linea-subs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.sub-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sub-card:hover { border-color: var(--red-border); box-shadow: var(--shadow-sm); }

.sub-card-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.sub-chev { font-size: 14px; color: var(--red); flex-shrink: 0; }
.sub-title { font-size: 14px; font-weight: 700; color: var(--text-1); flex: 1; }
.sub-count {
  font-size: 11px; font-weight: 600;
  background: var(--red-dim); color: var(--red);
  border-radius: 10px; padding: 1px 8px;
}

.sub-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sub-tag {
  font-size: 12px; color: var(--text-2);
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px 10px;
}

/* Sidebar */
.lineas-sidebar { position: sticky; top: calc(var(--nav-h) + 60px); }

.sidebar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card-icon {
  width: 48px; height: 48px; background: var(--red-dim);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sidebar-card-icon i { font-size: 24px; color: var(--red); }
.sidebar-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.sidebar-card p  { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 18px; }
.sidebar-card .btn-primary,
.sidebar-card .btn-wa { display: flex; justify-content: center; width: 100%; margin-bottom: 10px; }

.sidebar-tels { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.sidebar-tels a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-2); transition: color 0.15s;
}
.sidebar-tels a:hover { color: var(--red); }
.sidebar-tels i { font-size: 16px; color: var(--red); }

.sidebar-marcas h3 { margin-bottom: 16px; }
.sidebar-marca-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.sidebar-marca-link:last-child { border-bottom: none; }
.sidebar-marca-link:hover { color: var(--red); }
.sidebar-marca-link img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.sidebar-marca-link i   { font-size: 14px; color: var(--text-3); margin-left: auto; }

/* Buscador — sin resultados */
.linea-block.hidden { display: none; }
.lineas-no-results {
  text-align: center; padding: 60px 20px;
  color: var(--text-3); font-size: 15px; display: none;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .lineas-preview-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .lineas-main { grid-template-columns: 1fr; }
  .lineas-sidebar { position: static; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 48px 24px 40px; }
  .hero-eyebrow, .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-visual { display: none; }
  .marcas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }

  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--nav-bg);
    flex-direction: column; align-items: stretch;
    padding: 12px; gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1; pointer-events: auto;
    box-shadow: none; background: rgba(0,0,0,0.15);
    border: none; border-radius: 0;
    display: none; padding: 4px 0;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-link { color: rgba(255,255,255,0.80); }
  .dropdown-link:hover { background: rgba(255,255,255,0.10); color: #fff; }
  .drop-marca-tag { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }

  .cats-strip { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding: 0 16px; }
  .cats-strip-item { flex-shrink: 0; }

  .lineas-preview-grid { grid-template-columns: 1fr; }
  .linea-head { flex-wrap: wrap; }
  .linea-cotizar-btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; padding: 36px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot, .hero-scroll-cue { animation: none; }
  .marca-card, .mc-img, .lp-card { transition: none; }
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════════════════════════
   PÁGINA DE CONTACTO
══════════════════════════════════════════════════════════ */

/* Hero contacto */
.page-hero--contact { padding-bottom: 48px; }
.page-hero--contact .page-hero-title { font-size: clamp(44px,7vw,74px); }

.contact-quick-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.cq-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 40px;
  transition: background 0.15s;
  backdrop-filter: blur(6px);
}
.cq-item:hover { background: rgba(255,255,255,0.28); }
.cq-item i { font-size: 17px; }

/* Layout cuerpo */
.contact-body { padding: 56px 0 80px; background: var(--bg-2); }
.contact-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

/* ── Tarjeta formulario ─────────────────────────────────── */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.form-card-icon {
  width: 52px; height: 52px;
  background: var(--red-dim);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-card-icon i { font-size: 26px; color: var(--red); }
.form-card-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  color: var(--red); margin-bottom: 4px;
}
.form-card-sub { font-size: 14px; color: var(--text-2); }

/* Grid de campos */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.02em;
}
.req { color: var(--red); }

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap > i:first-child {
  position: absolute;
  left: 14px;
  font-size: 18px;
  color: var(--text-3);
  pointer-events: none;
  z-index: 1;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 11px 14px 11px 42px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-1);
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--text-3); }

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--red);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(244,10,15,0.08);
}
.input-wrap input:focus ~ i,
.input-wrap select:focus ~ i { color: var(--red); }
.input-wrap:focus-within > i:first-child { color: var(--red); }

.input-wrap--select .select-chev {
  position: absolute;
  right: 14px;
  font-size: 16px;
  color: var(--text-3);
  pointer-events: none;
}
.input-wrap--textarea { align-items: flex-start; }
.input-wrap--textarea > i:first-child { top: 13px; }
.input-wrap--textarea textarea { resize: vertical; min-height: 120px; }

/* Footer del form */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
}
.form-privacy i { font-size: 14px; color: var(--red); }

.form-msg {
  margin-top: 16px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-msg.ok    { background: #edfbf2; border: 1px solid #5bc888; color: #1a7840; display: block; }
.form-msg.error { background: #fff0f0; border: 1px solid #f4a0a0; color: #c20007; display: block; }

/* ── Sidebar info ───────────────────────────────────────── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tarjeta de sucursal */
.branch-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
}

.branch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.branch-icon {
  width: 40px; height: 40px;
  background: var(--red-dim);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.branch-icon i { font-size: 20px; color: var(--red); }
.branch-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--red);
  line-height: 1;
}
.branch-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--red-dim); color: var(--red);
  border: 1px solid var(--red-border);
  border-radius: 3px; padding: 2px 8px;
  margin-top: 4px;
}

.branch-address {
  font-size: 14px; color: var(--text-2);
  line-height: 1.6; font-style: normal;
  margin-bottom: 16px;
}

.branch-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.branch-map-btn, .branch-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.branch-map-btn {
  background: var(--red); color: #fff;
}
.branch-map-btn:hover { background: var(--red-dark); }
.branch-dir-btn {
  background: var(--bg-2);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.branch-dir-btn:hover { border-color: var(--red); color: var(--red); }
.branch-map-btn i, .branch-dir-btn i { font-size: 16px; }

/* Embed de mapa */
.branch-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.branch-map-embed iframe { display: block; }

/* Contacto directo */
.contact-direct-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-direct-card h3 {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--red); margin-bottom: 18px;
}
.contact-direct-card h3 i { font-size: 22px; }

.direct-items { display: flex; flex-direction: column; gap: 10px; }

.direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}
.direct-item:hover { border-color: var(--red-border); background: var(--red-dim); }

.direct-item--wa {
  background: #edfbf2;
  border-color: #a0e8b8;
}
.direct-item--wa:hover { background: #d8f8e6; border-color: #5bc888; }

.direct-icon {
  width: 36px; height: 36px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.direct-icon i { font-size: 18px; color: var(--red); }
.direct-item--wa .direct-icon { background: #d8f8e6; border-color: #5bc888; }
.direct-item--wa .direct-icon i { color: #1daa53; }

.direct-item > div { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.direct-label { font-size: 11px; color: var(--text-3); letter-spacing: 0.04em; text-transform: uppercase; }
.direct-item strong { font-size: 14px; font-weight: 600; color: var(--text-1); }
.direct-item--wa strong { color: #1a7840; }
.direct-ext { font-size: 15px; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   BOTÓN WHATSAPP FLOTANTE
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 18px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow 0.2s, transform 0.2s, padding 0.3s;
  animation: wa-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
}
@keyframes wa-pop {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-float:hover {
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  transform: translateY(-3px);
}
.wa-float i { font-size: 26px; flex-shrink: 0; }
.wa-float-label { white-space: nowrap; }

/* Colapsar label en móvil */
@media (max-width: 480px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float-label { display: none; }
  .wa-float i { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — CONTACTO
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-body-inner { grid-template-columns: 1fr; }
  .contact-info-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .form-card { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-footer .btn-primary { width: 100%; justify-content: center; }
  .contact-info-col { grid-template-columns: 1fr; }
  .contact-quick-info { gap: 6px; }
  .cq-item { font-size: 13px; padding: 8px 14px; }
  .branch-links { flex-direction: column; }
  .branch-map-btn, .branch-dir-btn { justify-content: center; }
}