/* =============================================================
   0. FUENTE LOCAL (Nunito variable font — sin dependencia de Google)
   ============================================================= */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:         #FFFFFF;
  --bg-2:       #F5F5F5;
  --bg-3:       #EBEBEB;
  --bg-4:       #E0E0E0;
  --cream:      #1A1A1A;
  --cream-2:    #555555;
  --cream-3:    #888888;
  --accent:     #E6262B;
  --accent-2:   #C41E23;
  --amber:      #E6262B;
  --amber-2:    #C41E23;
  --line:       rgba(0,0,0,.1);
  --line-2:     rgba(0,0,0,.06);

  --sans:       "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --body:       "Nunito", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h:      68px;
  --radius:     12px;
  --radius-sm:  8px;
  --gutter:     clamp(.85rem, 4vw, 2rem);
  --max-w:      1280px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
ul, ol { list-style: none; padding: 0; }
address { font-style: normal; }
details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

::selection { background: var(--accent); color: #fff; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

em { font-style: italic; color: var(--amber); }

/* =============================================================
   4. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 24px rgba(230,38,43,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.85);
}

.btn-wsp {
  background: #25D366;
  color: #fff;
}
.btn-wsp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

/* WhatsApp en el nav — píldora blanca con texto verde */
.nav-cta-group .btn-wsp {
  background: #fff;
  color: #25D366;
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-cta-group .btn-wsp:hover {
  background: #f0fff4;
  color: #1ebe5d;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transform: translateY(-1px);
}

.btn-comprar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: .7rem 1rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .2s var(--ease-out), box-shadow .2s;
}
.btn-comprar:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* Botón de llamada telefónica */
.btn-phone {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--bg-4);
  gap: .45rem;
}
.btn-phone:hover {
  background: var(--bg-2);
  border-color: var(--cream-3);
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* =============================================================
   5. NAV
   ============================================================= */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #E6262B;
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
/* fallback por si el SVG no carga */
.nav-logo-text {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--accent);
}
.nav-logo-sub {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-family: var(--sans);
}

.nav-links {
  display: none;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta-group {
  display: none;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  transition: color .2s;
  white-space: nowrap;
}
.nav-phone:hover { color: #fff; }

.nav-burger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter);
}
.nav-mobile ul { display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile a {
  display: block;
  padding: .6rem .5rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream-2);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.nav-mobile a:hover { background: var(--bg-3); color: var(--cream); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta-group { display: flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   6. BREADCRUMB
   ============================================================= */
.breadcrumb {
  padding: .6rem var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  padding: 0;
  font-size: .78rem;
  color: var(--cream-3);
  font-family: var(--sans);
}
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .5rem; }
.breadcrumb a { color: var(--cream-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb [aria-current] { color: var(--cream-2); font-weight: 600; }

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* ── Imagen de fondo del hero ── */
  background-image: url("assets/img/hero-bg2.webp");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

/* Overlay oscuro para legibilidad del texto */
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.22) 50%, rgba(0,0,0,.08) 100%),
    linear-gradient(to right, rgba(230,38,43,.12) 0%, transparent 50%);
}

.hero-grid-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-title em { display: block; }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.80);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: .8rem;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .65rem 1.1rem;
}
.trust-item { display: flex; flex-direction: column; gap: .1rem; }
.trust-item strong { font-size: 1.1rem; font-weight: 800; color: #fff; }
.trust-item span { color: rgba(255,255,255,.75); font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.trust-sep { color: rgba(255,255,255,.3); font-size: 1.2rem; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
@supports not (backdrop-filter: blur(20px)) {
  .hero-card { background: rgba(255,255,255,.99); }
}
.hero-card-title {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .35rem;
}
.hero-card-sub {
  font-size: .8rem;
  color: var(--cream-3);
  margin-bottom: 1.1rem;
  line-height: 1.4;
}

/* WhatsApp CTA button */
.btn-wsp {
  background: #25D366;
  color: #fff;
  gap: .5rem;
}
.btn-wsp:hover {
  background: #1ebe5a;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.finder-form { display: flex; flex-direction: column; gap: .9rem; }
.finder-row { display: flex; flex-direction: column; gap: .3rem; }
.finder-row label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.finder-row select,
.finder-row input {
  width: 100%;
  padding: .65rem .9rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--body);
  font-size: .9rem;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.finder-row select:focus,
.finder-row input:focus {
  border-color: var(--accent);
  outline: none;
}
.finder-row select option { background: var(--bg-2); }
.finder-alt {
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--cream-3);
  text-align: center;
}
.finder-alt a { color: var(--amber); text-decoration: underline; }

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 4rem;
  }
}

/* =============================================================
   8. STATS BAR
   ============================================================= */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center;
}
.stat-num {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .75rem;
  color: var(--cream-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--sans);
  font-weight: 600;
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   9. SECTION HEADER
   ============================================================= */
.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header--center { text-align: center; }

.section-kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .75rem;
}

.section-desc {
  color: var(--cream-2);
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.7;
}
.section-header--center .section-desc { margin-inline: auto; }

/* =============================================================
   10. CATEGORÍAS
   ============================================================= */
.section-categorias {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cat-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,38,43,.4);
  box-shadow: 0 12px 40px rgba(230,38,43,.12);
}
.cat-card--highlight {
  border-color: rgba(232,160,32,.3);
  background: rgba(232,160,32,.05);
}
.cat-card--highlight:hover {
  border-color: rgba(232,160,32,.6);
  box-shadow: 0 12px 40px rgba(232,160,32,.15);
}

.cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(230,38,43,.08);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}
.cat-icon svg { width: 1.5rem; height: 1.5rem; }
.cat-name {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.cat-desc {
  font-size: .8rem;
  color: var(--cream-3);
  line-height: 1.5;
  display: none;
}
.cat-tag {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .04em;
  margin-top: auto;
}

@media (min-width: 540px) {
  .cat-desc { display: block; }
}
@media (min-width: 720px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 960px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-card { padding: 1.5rem; }
}

/* =============================================================
   11. MARCAS
   ============================================================= */
.section-marcas {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.marca-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .9rem;
  padding: 1.75rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .3s, transform .3s var(--ease-out), border-color .3s;
}
.marca-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: rgba(230,38,43,.2);
}
.marca-card--featured { border-color: rgba(230,38,43,.15); }
.marca-card--featured:hover { border-color: rgba(230,38,43,.35); }

.marca-logo-wrap {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
}
.marca-logo-wrap img { max-width: 150px; max-height: 64px; object-fit: contain; }

.marca-info { display: flex; flex-direction: column; align-items: center; gap: .35rem; flex: 1; }
.marca-garantia { margin-top: auto; padding-top: .5rem; }

.marca-nombre {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.marca-desc {
  font-size: .78rem;
  color: var(--cream-3);
  line-height: 1.5;
}
.tag-garantia {
  display: inline-block;
  margin-top: .2rem;
  padding: .2rem .7rem;
  background: rgba(230,38,43,.07);
  border: 1px solid rgba(230,38,43,.2);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent);
}
.tag-garantia--gold {
  background: rgba(230,38,43,.07);
  border-color: rgba(230,38,43,.2);
  color: var(--accent);
}

@media (min-width: 600px) {
  .marcas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .marcas-grid { grid-template-columns: repeat(6, 1fr); }
}

/* =============================================================
   12. PRODUCTOS
   ============================================================= */
.section-productos {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filtro-btn {
  padding: .4rem .9rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--cream-3);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.filtro-btn:hover { border-color: var(--cream-3); color: var(--cream); }
.filtro-btn.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

.productos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
}

.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,38,43,.35);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.prod-card[data-hidden] { display: none; }

.prod-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  padding: .2rem .55rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
}
.prod-badge--gold { background: var(--amber); color: var(--bg); }
.prod-badge--electric { background: #1a8a3a; }

.prod-img-wrap {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 210px;
}
.prod-img-wrap img {
  max-height: 170px;
  max-width: 90%;
  object-fit: contain;
  margin-inline: auto;
  transition: transform .4s var(--ease-out);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  flex: 1;
}

.prod-marca {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.prod-nombre {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
}

.prod-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .5rem;
  padding: .6rem;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  margin-top: .25rem;
}
.prod-specs li {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}
.prod-specs span {
  font-size: .62rem;
  color: var(--cream-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: var(--sans);
  font-weight: 600;
}
.prod-specs strong {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--cream);
}

.prod-precio {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: auto;
}
.precio-antes {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--cream-3);
  text-decoration: line-through;
}
.precio-actual {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--amber);
}

.productos-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.productos-cta p {
  flex: 1;
  min-width: 200px;
  color: var(--cream-2);
  font-size: .9rem;
}

@media (min-width: 540px) {
  .prod-nombre { font-size: 1rem; }
}
@media (min-width: 720px) {
  .productos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .productos-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   13. PASOS (CÓMO FUNCIONA)
   ============================================================= */
.section-pasos {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pasos-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.paso {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.paso-num {
  font-family: var(--sans);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: .35;
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: -0.04em;
}
.paso-titulo {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.paso-desc {
  font-size: .88rem;
  color: var(--cream-2);
  line-height: 1.6;
  margin-bottom: .75rem;
}
.paso-tiempo {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--sans);
  color: var(--accent);
  background: rgba(230,38,43,.08);
  border: 1px solid rgba(230,38,43,.18);
  border-radius: 99px;
  padding: .25rem .75rem;
  letter-spacing: .02em;
  margin-top: auto;
}
.paso-arrow {
  display: none;
  font-size: 2rem;
  color: var(--cream-3);
  align-items: center;
}

.pasos-garantias {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.garantia-pill {
  padding: .4rem .9rem;
  background: rgba(230,38,43,.1);
  border: 1px solid rgba(230,38,43,.25);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  color: var(--cream-2);
}

@media (min-width: 720px) {
  .pasos-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .paso-arrow {
    display: flex;
    align-self: center;
  }
}

/* =============================================================
   14. GUÍA (AEO)
   ============================================================= */
.section-guia {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.guia-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.guia-content header {
  margin-bottom: 2rem;
}
.guia-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: .5rem;
}

.guia-bloque {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.guia-bloque:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.guia-bloque h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

/* Tabla comparativa */
.tabla-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  width: 100%;
}
.tabla-comparativa {
  border-radius: 0;
  overflow: hidden;
  font-size: .82rem;
}
.tabla-head, .tabla-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.tabla-head {
  background: var(--bg-3);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.tabla-head > div, .tabla-row > div {
  padding: .65rem .9rem;
  border-right: 1px solid var(--line);
}
.tabla-head > div:last-child, .tabla-row > div:last-child { border-right: none; }
.tabla-row { border-top: 1px solid var(--line); }
.tabla-row:nth-child(odd) { background: rgba(0,0,0,.025); }
.tabla-row > div:first-child { color: var(--cream-2); font-weight: 600; }

/* Glossary */
.spec-glossary { display: flex; flex-direction: column; gap: 1rem; }
.spec-item {
  padding: 1rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.spec-item dt {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: .35rem;
}
.spec-item dd { font-size: .85rem; color: var(--cream-2); line-height: 1.6; }

/* Señales list */
.señales-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.señales-list li {
  padding: .6rem .9rem;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--cream-2);
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}
.señales-list strong { color: var(--cream); }

.guia-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(230,38,43,.08);
  border: 1px solid rgba(230,38,43,.2);
  border-radius: var(--radius);
}
.guia-cta p { flex: 1; min-width: 200px; font-size: .88rem; color: var(--cream-2); }

/* Sidebar */
.guia-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  padding: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sidebar-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.sidebar-card p {
  font-size: .85rem;
  color: var(--cream-2);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.sidebar-card .btn + .btn { margin-top: .5rem; }

.compat-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.compat-list li { font-size: .82rem; color: var(--cream-2); }
.compat-list strong { color: var(--cream); }

@media (min-width: 1024px) {
  .guia-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
  .guia-sidebar { position: sticky; top: calc(var(--nav-h) + 1rem); }
}

/* =============================================================
   15. COBERTURA
   ============================================================= */
.section-cobertura {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comunas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.comuna-chip {
  padding: .35rem .85rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  color: var(--cream-2);
  transition: background .2s, border-color .2s;
}
.comuna-chip:hover {
  background: rgba(230,38,43,.1);
  border-color: rgba(230,38,43,.3);
}

.cobertura-nota {
  text-align: center;
  font-size: .85rem;
  color: var(--cream-3);
}
.cobertura-nota a { color: var(--amber); text-decoration: underline; }

/* =============================================================
   16. FAQ
   ============================================================= */
.section-faq {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(230,38,43,.3); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 700;
  color: var(--cream);
  cursor: pointer;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: rgba(0,0,0,.03); }
.faq-q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform .3s var(--ease-out);
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.25rem 1.25rem;
  color: var(--cream-2);
  font-size: .88rem;
  line-height: 1.7;
}
.faq-a p + p { margin-top: .75rem; }
.faq-a ul, .faq-a ol {
  display: flex; flex-direction: column; gap: .35rem;
  margin: .75rem 0;
  padding-left: 1.25rem;
}
.faq-a ul { list-style: disc; }
.faq-a ol { list-style: decimal; }
.faq-a strong { color: var(--cream); }
.faq-a a { color: var(--amber); text-decoration: underline; }

/* =============================================================
   17. SUCURSALES
   ============================================================= */
.section-sucursales {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.sucursales-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.suc-card {
  padding: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s var(--ease-out);
}
.suc-card:hover {
  border-color: rgba(230,38,43,.35);
  transform: translateY(-3px);
}
.suc-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--amber);
}
.suc-card address p {
  font-size: .88rem;
  color: var(--cream-2);
  line-height: 1.5;
}
.suc-horario {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--cream-3);
  margin-top: .6rem;
  margin-bottom: 1rem;
}

@media (min-width: 540px) {
  .sucursales-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sucursales-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   18. CTA FINAL
   ============================================================= */
.section-cta-final {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta-final-mesh {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(230,38,43,.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232,160,32,.1) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-final-inner { position: relative; z-index: 1; }

.cta-final-content {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.cta-final-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-final-content p {
  color: var(--cream-2);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================================
   19. FOOTER
   ============================================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/* Footer wordmark (texto en lugar de imagen) */
.footer-logo-wordmark {
  margin-bottom: .75rem;
}
.footer-wordmark-name {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.footer-wordmark-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 6px;
  background: var(--accent);
  padding: 5px 10px;
  margin-bottom: .75rem;
}
/* fallback */
.footer-logo-text {
  display: block;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: .1rem;
}
.footer-logo-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-family: var(--sans);
  margin-bottom: .75rem;
}
.footer-desc {
  font-size: .85rem;
  color: var(--cream-3);
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 1rem;
}
.footer-contact { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--cream-2);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--cream); }
.footer-contact a svg { flex-shrink: 0; opacity: .7; }

.footer-nav h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .75rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .35rem; }
.footer-nav a {
  font-size: .83rem;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-bottom p {
  font-size: .75rem;
  color: var(--cream-3);
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* =============================================================
   20. WSP FLOTANTE
   ============================================================= */
.wsp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.wsp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* =============================================================
   21. REVEALS (scroll animation)
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   22. REDUCED MOTION — solo efectos intrusivos
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================================
   23. SVG PLACEHOLDER para productos
   ============================================================= */
.prod-img-wrap img[src*="placeholder"] {
  filter: opacity(.4) sepia(1) hue-rotate(200deg);
}

/* =============================================================
   24. MOBILE RESPONSIVE — optimizaciones completas
   ============================================================= */

/* ── Teléfonos pequeños (< 480px) ─────────────────────────── */
@media (max-width: 479px) {

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding-top: 2.25rem; padding-bottom: 2rem; gap: 1.75rem; }
  .hero-title { font-size: clamp(1.85rem, 9vw, 2.3rem); margin-bottom: .9rem; }
  .hero-title em { display: inline; }
  .hero-desc { font-size: .9rem; margin-bottom: 1.25rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; gap: .55rem; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-card { padding: 1.1rem; }
  .hero-card-title { font-size: .78rem; margin-bottom: 1rem; }
  .hero-trust { gap: .6rem 1rem; }
  .trust-sep { display: none; }

  /* Stats bar */
  .stats-bar { padding: 1.25rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem .75rem; }
  .stat-num { font-size: 1.55rem; }
  .stat-label { font-size: .63rem; }

  /* Section headers */
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .section-desc { font-size: .85rem; }

  /* Categories */
  .cat-grid { gap: .65rem; }
  .cat-card { padding: .85rem .75rem; gap: .35rem; min-width: 0; }
  .cat-icon { width: 2rem; height: 2rem; border-radius: 8px; }
  .cat-icon svg { width: 1.1rem; height: 1.1rem; }
  .cat-name { font-size: .82rem; line-height: 1.25; }
  .cat-tag { font-size: .6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

  /* Products — 1 columna en móvil */
  .productos-grid { grid-template-columns: 1fr; gap: .9rem; }
  .prod-img-wrap { min-height: 220px; padding: 1.25rem; }
  .prod-img-wrap img { max-height: 175px; }
  .filtros { gap: .4rem; }
  .filtro-btn { font-size: .68rem; padding: .35rem .75rem; }

  /* Marcas — 2 columnas compactas */
  .marcas-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .marca-card { padding: 1.1rem .65rem .9rem; gap: .6rem; box-shadow: 0 1px 6px rgba(0,0,0,.07); }
  .marca-logo-wrap { height: 52px; padding: .25rem .4rem; }
  .marca-logo-wrap img { max-width: 100px; max-height: 42px; }
  .marca-nombre { font-size: .85rem; }
  .marca-desc { display: none; }
  .tag-garantia { font-size: .6rem; padding: .18rem .5rem; }

  /* Pasos */
  .paso { padding: 1.25rem; }
  .paso-num { font-size: 2.2rem; }
  .paso-titulo { font-size: 1rem; }
  .paso-desc { font-size: .83rem; }

  /* FAQ */
  .faq-q { font-size: .85rem; padding: 1rem 1rem; }
  .faq-a { font-size: .83rem; padding: 0 1rem 1rem; }

  /* Sucursales */
  .suc-card { padding: 1.1rem; }

  /* WhatsApp FAB */
  .whatsapp-fab { width: 52px; height: 52px; bottom: 1.1rem; right: 1.1rem; }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* Footer */
  .footer-logo-img { height: 42px; }
  .footer-desc { font-size: .82rem; }
}

/* ── Teléfonos medianos (480px – 639px) ─────────────────────── */
@media (min-width: 480px) and (max-width: 639px) {
  .hero { min-height: auto; }
  .hero-inner { padding-top: 3rem; padding-bottom: 3rem; gap: 2rem; }
  .hero-actions .btn { min-width: 160px; }

  /* Products — 1 columna hasta 640px */
  .productos-grid { grid-template-columns: 1fr; gap: 1rem; }
  .prod-img-wrap { min-height: 240px; }
  .prod-img-wrap img { max-height: 190px; }

  /* Marcas — 3 columnas en teléfonos medianos */
  .marcas-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .marca-card { padding: 1.25rem .6rem 1rem; gap: .6rem; }
  .marca-logo-wrap { height: 52px; padding: .3rem; }
  .marca-logo-wrap img { max-width: 90px; max-height: 40px; }
  .marca-desc { display: none; }
  .marca-nombre { font-size: .82rem; }
  .tag-garantia { font-size: .6rem; padding: .18rem .5rem; }
}

/* ── Tablets (640px – 959px) ─────────────────────────────────── */
@media (min-width: 640px) and (max-width: 959px) {
  .hero-inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3rem); }

  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-img-wrap { min-height: 190px; }
  .prod-img-wrap img { max-height: 150px; }

  .marcas-grid { grid-template-columns: repeat(3, 1fr); }
  .marca-desc { font-size: .75rem; }
}

/* ── Nav mobile refinements ──────────────────────────────────── */
@media (max-width: 959px) {
  .nav-phone-text { display: none; }
  .nav-inner { padding-block: .85rem; }
  .nav-logo-img { height: 38px; }
}

/* ── Fix WhatsApp FAB overlap en scroll ─────────────────────── */
@media (max-width: 639px) {
  .productos-cta {
    flex-direction: column;
    text-align: center;
  }
  .productos-cta p { min-width: unset; }
  .productos-cta .btn { width: 100%; justify-content: center; }
}

/* ── Guía + Pasos mobile fixes ───────────────────────────────── */
@media (max-width: 639px) {
  /* Prevenir que grid item expanda más allá del track */
  .guia-content { min-width: 0; }
  /* Reducir fuente del h2 de guía para evitar overflow */
  .guia-content h2 { font-size: clamp(1.25rem, 6vw, 1.55rem); }
  /* Tabla comparativa — layout apilado mobile */
  .tabla-scroll { overflow-x: visible; }
  .tabla-comparativa { min-width: unset; }
  /* Ocultar cabecera original; se reemplaza con mini-etiquetas */
  .tabla-head { display: none; }
  /* Cada fila: característica arriba + 3 columnas de valores abajo */
  .tabla-row {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
  }
  .tabla-row > div:first-child {
    width: 100%;
    padding: .5rem .75rem .2rem;
    border-right: none;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--cream-2);
    background: var(--bg-3);
  }
  .tabla-row > div:not(:first-child) {
    flex: 1;
    padding: .3rem .35rem .55rem;
    font-size: .82rem;
    text-align: center;
    border-right: 1px solid var(--line);
  }
  .tabla-row > div:last-child { border-right: none; }
  /* Mini-etiquetas de tipo encima de cada valor */
  .tabla-row > div:nth-child(2)::before { content: "CONV."; display: block; font-size: .5rem; letter-spacing: .04em; opacity: .5; margin-bottom: .2rem; }
  .tabla-row > div:nth-child(3)::before { content: "EFB";   display: block; font-size: .5rem; letter-spacing: .04em; opacity: .5; margin-bottom: .2rem; }
  .tabla-row > div:nth-child(4)::before { content: "AGM";   display: block; font-size: .5rem; letter-spacing: .04em; opacity: .5; margin-bottom: .2rem; }
  .guia-content header { margin-bottom: 1.25rem; }
  .guia-bloque { margin-bottom: 1.75rem; padding-bottom: 1.75rem; }

  /* Señales list — menos padding */
  .señales-list li { padding: .5rem .75rem; }

  /* Spec glossary */
  .spec-item { padding: .8rem 1rem; }

  /* Pasos — stack vertical, más compactos */
  .pasos-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .paso { padding: 1.25rem 1.1rem; }
  .paso-num { font-size: 2rem; margin-bottom: .35rem; }
  .paso-titulo { font-size: 1rem; }
  .paso-desc { font-size: .85rem; }

  /* Sucursales — botón mapa full width */
  .suc-card .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   COMPATIBILIDAD POR MODELO
   ============================================================= */
.section-compat {
  padding: var(--section-v) 0;
  background: var(--bg);
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.compat-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.compat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.compat-card--highlight {
  border-color: rgba(230,38,43,.25);
  background: rgba(230,38,43,.04);
}
.compat-card--ask {
  border-style: dashed;
  border-color: var(--bg-4);
  background: var(--bg);
  align-items: center;
  text-align: center;
}

.compat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 2rem;
  height: 2rem;
  background: var(--bg-3);
  border-radius: 50%;
  margin-bottom: .45rem;
  color: var(--accent);
  flex-shrink: 0;
  padding: .38rem;
}
.compat-icon svg { width: 100%; height: 100%; }
.compat-card--ask .compat-icon { align-self: center; }
.compat-car {
  font-weight: 800;
  font-size: .95rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.3;
}
.compat-bat {
  font-size: .88rem;
  color: var(--cream-2);
  margin: 0;
}
.compat-bat strong { color: var(--cream); }
.compat-det {
  font-size: .78rem;
  color: var(--cream-3);
  margin: 0;
}
.compat-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: .65rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.compat-cta:hover { text-decoration: underline; }
.compat-cta--wsp { color: #25D366; }

@media (max-width: 639px) {
  .compat-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .compat-card { padding: 1rem .9rem .85rem; }
}
