/* ============================================================
   POLIELECTRIC — Sistema visual industrial
   Paleta marca: #203466 / #104F92 / #187ABF / #227FC3
   Tipografía: Archivo (display) · IBM Plex Sans (texto) · IBM Plex Mono (técnico)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Marca */
  --blue-900: #203466;
  --blue-700: #104F92;
  --blue-500: #187ABF;
  --blue-400: #227FC3;
  --blue-050: #eaf1f8;

  /* Neutros acero */
  --ink:        #0d1424;
  --steel-900:  #1a2435;
  --steel-700:  #39455a;
  --steel-600:  #54627a;
  --steel-400:  #8893a6;
  --steel-300:  #b3bdcc;
  --steel-200:  #d6dde6;
  --steel-100:  #e8edf2;
  --steel-050:  #f4f6f9;
  --white: #ffffff;

  --wa: #25D366;
  --wa-dark: #1da851;

  --radius: 4px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(13,20,36,.06), 0 2px 6px rgba(13,20,36,.05);
  --shadow:    0 6px 24px rgba(13,20,36,.10);
  --shadow-lg: 0 18px 50px rgba(13,20,36,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
  --t: .28s var(--ease);

  --maxw: 1240px;
  --pad: 28px;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--steel-900);
  background: var(--white);
  line-height: 1.62;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--blue-900);
  font-weight: 800;
}

::selection { background: var(--blue-400); color: #fff; }

/* ============================================================
   ELEMENTOS TÉCNICOS COMPARTIDOS
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--blue-500);
  display: inline-block;
}
.kicker--light { color: #9fc4e6; }
.kicker--light::before { background: #9fc4e6; }

.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head .kicker { margin-bottom: 20px; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-sub {
  font-size: 1.075rem;
  color: var(--steel-600);
  max-width: 560px;
  text-wrap: pretty;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  --bw: 1.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  border: var(--bw) solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t); }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.btn--primary:hover { background: var(--blue-900); border-color: var(--blue-900); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(16,79,146,.32); }

.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: var(--blue-900); border-color: var(--blue-900); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline { background: transparent; color: var(--blue-700); border-color: var(--steel-300); }
.btn--outline:hover { border-color: var(--blue-700); background: var(--blue-050); transform: translateY(-2px); }

.btn--wa { background: var(--wa); color: #06351c; border-color: var(--wa); }
.btn--wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.34); }

.btn--white { background: #fff; color: var(--blue-900); border-color: #fff; }
.btn--white:hover { background: var(--blue-050); border-color: var(--blue-050); transform: translateY(-2px); }

.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }

.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--sm { padding: 11px 18px; font-size: .82rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--steel-100);
  transition: box-shadow var(--t), border-color var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-color: var(--steel-200); }
.nav__container {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: 74px; display: flex; align-items: center; gap: 36px;
}

/* Wordmark */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px; flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.01em;
  color: var(--blue-900);
  line-height: 1;
}
.brand__name b { color: var(--blue-900); font-weight: 800; }
.brand__tag {
  display: block;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .22em;
  color: var(--steel-400);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav__links { display: flex; list-style: none; gap: 30px; margin-left: auto; align-items: center; }
.nav__links a {
  text-decoration: none; color: var(--steel-700);
  font-size: .9rem; font-weight: 500; white-space: nowrap;
  position: relative; padding: 4px 0;
  transition: color var(--t);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--blue-500);
  transition: width var(--t);
}
.nav__links a:hover { color: var(--blue-900); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 4px; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--blue-900); border-radius: 2px; transition: all var(--t); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; padding: 12px var(--pad) 24px; border-top: 1px solid var(--steel-100); background: #fff; }
.nav__mobile.open { display: flex; }
.nav__mobile-link { text-decoration: none; color: var(--steel-900); font-size: 1.05rem; font-weight: 500; padding: 15px 0; border-bottom: 1px solid var(--steel-100); }
.nav__mobile-btn { margin-top: 18px; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 74px;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 70% 20%, rgba(24,122,191,.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(16,79,146,.18) 0%, transparent 50%),
    linear-gradient(160deg, #0d1424 0%, #162040 35%, #1a2c57 60%, #203466 100%);
}
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 65% 30%, #000 20%, transparent 75%);
}
/* technical grid overlay */
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 70% 20%, #000 30%, transparent 80%);
}
.hero__container {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 0 var(--pad) clamp(56px, 8vw, 96px);
}
.hero__inner { max-width: 880px; }
.hero .kicker { margin-bottom: 26px; }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: #8fc2ec;
  display: block;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 38px;
  text-wrap: pretty;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 28px;
  row-gap: 22px;
}
.hero__stat {
  padding: 0 clamp(18px, 2.2vw, 40px);
  border-right: 1px solid rgba(255,255,255,.16);
  min-width: 0; display: flex; flex-direction: column;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { border-right: none; padding-right: 0; }
.hero__stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  color: #fff; line-height: 1.05; display: block; margin-bottom: 4px;
  text-wrap: balance;
}
.hero__stat-label {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em;
  color: rgba(255,255,255,.9); text-transform: uppercase; font-weight: 500;
}

/* ============================================================
   FRANJA DE CONFIANZA (marquee)
   ============================================================ */
.trust {
  background: var(--blue-900);
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.trust__row {
  display: flex; align-items: center; gap: 56px;
  padding: 18px 0;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase;
  animation: marquee 34s linear infinite;
  width: max-content;
}
.trust__row span { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.trust__row span::before { content: ''; width: 6px; height: 6px; background: var(--blue-400); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust__row { animation: none; } }

/* ============================================================
   CATÁLOGO
   ============================================================ */
.catalogo { background: var(--steel-050); border-top: 1px solid var(--steel-100); }
.catalogo .section-head { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 32px; flex-wrap: wrap; }
.catalogo .section-head > div { max-width: 620px; }

.carousel { position: relative; }
.carousel__viewport { overflow: hidden; padding: 6px 4px 4px; margin: 0 -4px; }
.carousel__track { display: flex; gap: 24px; transition: transform .5s var(--ease); will-change: transform; }

.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--steel-200);
  color: var(--blue-700); cursor: pointer;
  display: grid; place-items: center;
  transition: all var(--t);
}
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn:hover:not(:disabled) { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.carousel__btn:disabled { opacity: .35; cursor: not-allowed; }

.carousel__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; gap: 20px; }
.carousel__progress { flex: 1; height: 2px; background: var(--steel-200); position: relative; max-width: 280px; }
.carousel__progress-bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--blue-700); transition: width .5s var(--ease), left .5s var(--ease); }
.carousel__count { font-family: var(--font-mono); font-size: .8rem; color: var(--steel-600); letter-spacing: .05em; }
.carousel__count b { color: var(--blue-900); }

/* Tarjeta de producto */
.pcard {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); }

.pcard__media { position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--steel-050); }
.pcard__media--empty::after {
  content: 'Sin imagen'; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em;
  color: var(--steel-400); background: var(--steel-100);
}

/* Mini-carrusel de galería dentro de tarjeta */
.pgal { position: relative; width: 100%; height: 100%; }
.pgal__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none; z-index: 0;
}
.pgal__slide--active { opacity: 1; position: relative; pointer-events: auto; z-index: 1; }
video.pgal__slide { background: var(--ink); cursor: pointer; }

.pgal__arr {
  position: absolute; top: 50%; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  border: 1px solid var(--steel-200); color: var(--blue-900);
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transform: translateY(-50%);
  transition: all var(--t); opacity: 0;
}
.pcard__media:hover .pgal__arr { opacity: 1; }
.pgal__arr--prev { left: 8px; }
.pgal__arr--next { right: 8px; }
.pgal__arr:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-50%) scale(1.08); }

.pgal__dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 6px;
}
.pgal__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.7);
  cursor: pointer; padding: 0; transition: all var(--t);
}
.pgal__dot.is-active { background: #fff; transform: scale(1.3); }
.pgal__dot--vid { border-radius: 2px; width: 10px; }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .6s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.04); }

.pcard__code {
  position: absolute; top: 0; left: 0; z-index: 3;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  color: #fff; background: rgba(13,20,36,.78); backdrop-filter: blur(4px);
  padding: 6px 11px;
}
.pcard__badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: .66rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
  color: #fff; background: var(--blue-700);
  padding: 6px 10px; border-radius: var(--radius);
}
.pcard__badge--accent { background: var(--blue-500); }
.pcard__badge--wa { background: var(--wa-dark); }

.pcard__body { padding: 24px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__name {
  font-size: 1.32rem; margin-bottom: 9px;
  min-height: 2.8rem; /* 2 líneas: alinea chips y precio entre tarjetas */
  display: flex; align-items: flex-start;
}
.pcard__desc {
  font-size: .92rem; color: var(--steel-600); margin-bottom: 18px; text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 4.5rem; /* 3 líneas fijas */
}

.pcard__specs { list-style: none; display: flex; flex-direction: column; margin-bottom: 22px; border-top: 1px solid var(--steel-100); }
.pcard__specs li {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--steel-100);
  font-size: .85rem;
}
.pcard__specs .k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--steel-400); text-transform: uppercase; }
.pcard__specs .v { color: var(--steel-900); font-weight: 600; text-align: right; }
.pcard__specs .k { flex-shrink: 0; }

/* Selector de paquetes */
.pkg { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pkg__chip {
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius);
  background: #fff; color: var(--steel-700);
  border: 1.5px solid var(--steel-200); cursor: pointer;
  transition: all var(--t); line-height: 1;
}
.pkg__chip:hover { border-color: var(--blue-400); color: var(--blue-700); }
.pkg__chip.is-active { background: var(--blue-900); border-color: var(--blue-900); color: #fff; }

/* Bloque de precio */
.pcard__price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--steel-100);
}
.pcard__price-main {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.85rem; color: var(--blue-900); line-height: 1;
}
.pcard__price-unit {
  font-family: var(--font-mono); font-size: .76rem;
  color: var(--steel-600); letter-spacing: .02em;
}
.pcard__price-iva {
  display: inline-block; margin-top: .25rem;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600;
  color: var(--steel-600); letter-spacing: .04em; text-transform: uppercase;
  opacity: .8;
}
.pcard__cta { margin-top: auto; }

/* Beneficios */
.beneficios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border: 1px solid var(--steel-200); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.beneficio { display: flex; gap: 16px; align-items: flex-start; padding: 26px 24px; border-right: 1px solid var(--steel-100); transition: background var(--t); }
.beneficio:last-child { border-right: none; }
.beneficio:hover { background: var(--steel-050); }
.beneficio__ico { width: 38px; height: 38px; flex-shrink: 0; color: var(--blue-500); }
.beneficio__ico svg { width: 100%; height: 100%; }
.beneficio strong { display: block; font-size: .95rem; color: var(--blue-900); margin-bottom: 4px; }
.beneficio span { font-size: .82rem; color: var(--steel-600); line-height: 1.5; }

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros { background: #fff; }
.nosotros__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.nosotros__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 26px; text-wrap: balance; }
.nosotros .kicker { margin-bottom: 20px; }
.nosotros__text { color: var(--steel-600); margin-bottom: 18px; font-size: 1.02rem; text-wrap: pretty; }
.nosotros__text b { color: var(--steel-900); font-weight: 600; }

.nosotros__values { display: grid; gap: 4px; margin: 32px 0; }
.nosotros__value { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--steel-100); }
.nosotros__value:first-child { border-top: 1px solid var(--steel-100); }
.nosotros__value-ico { width: 30px; height: 30px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.nosotros__value-ico svg { width: 100%; height: 100%; }
.nosotros__value strong { display: block; font-size: .98rem; color: var(--blue-900); margin-bottom: 2px; }
.nosotros__value p { font-size: .88rem; color: var(--steel-600); margin: 0; }

/* Visual lado derecho */
.nosotros__visual { position: relative; }
.nosotros__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--steel-200); aspect-ratio: 6/5; }
.nosotros__photo img { width: 100%; height: 100%; object-fit: cover; }
.nosotros__photo-code { position: absolute; top: 0; left: 0; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; color: #fff; background: rgba(13,20,36,.78); padding: 6px 11px; }

.nosotros__chip {
  position: absolute; bottom: -26px; right: -10px;
  background: var(--blue-900); color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 26px; max-width: 240px;
  box-shadow: var(--shadow-lg);
}
.nosotros__chip-num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: #8fc2ec; }
.nosotros__chip-label { font-size: .85rem; color: rgba(255,255,255,.78); margin-top: 6px; line-height: 1.4; }

.nosotros__loop {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-top: 8px; padding: 18px 20px;
  background: var(--steel-050); border: 1px solid var(--steel-100); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: .82rem; color: var(--steel-700);
}
.nosotros__loop b { color: var(--blue-700); }
.nosotros__loop .sep { color: var(--blue-400); }

/* ============================================================
   PROCESO DE COMPRA
   ============================================================ */
.contacto { background: var(--steel-050); border-top: 1px solid var(--steel-100); }
.contacto .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.contacto .section-head .kicker { justify-content: center; }
.contacto__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: stretch; }

.pasos { display: grid; gap: 0; background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius-lg); overflow: hidden; }
.paso { display: flex; gap: 20px; align-items: flex-start; padding: 24px 26px; border-bottom: 1px solid var(--steel-100); }
.paso:last-child { border-bottom: none; }
.paso__num {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--blue-050); color: var(--blue-700);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 1rem;
}
.paso h4 { font-size: 1.08rem; margin-bottom: 4px; }
.paso p { font-size: .9rem; color: var(--steel-600); margin: 0; }
.paso p b { color: var(--steel-900); font-weight: 600; }

.contacto__panel {
  background: var(--blue-900); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 46px);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.contacto__panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 80% 0%, #000, transparent 70%);
}
.contacto__panel > * { position: relative; z-index: 1; }
.contacto__panel .kicker { margin-bottom: 22px; }
.contacto__panel h3 { color: #fff; font-size: 1.7rem; margin-bottom: 14px; text-wrap: balance; }
.contacto__panel p { color: rgba(255,255,255,.8); font-size: .98rem; margin-bottom: 28px; }
.contacto__panel .btn { width: 100%; }
.contacto__note { font-family: var(--font-mono); font-size: .74rem; color: rgba(255,255,255,.55); margin-top: 16px; letter-spacing: .04em; }

.contacto__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); margin-top: auto; border-radius: var(--radius); overflow: hidden; }
.contacto__meta-item { background: var(--blue-900); padding: 18px; }
.contacto__meta-item .k { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: #8fc2ec; display: block; margin-bottom: 6px; }
.contacto__meta-item .v { font-size: .88rem; color: rgba(255,255,255,.9); }

/* Canales debajo */
.canales { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.canal { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--steel-200); border-radius: var(--radius-lg); padding: 20px 22px; text-decoration: none; color: var(--steel-900); transition: all var(--t); }
a.canal:hover { border-color: var(--blue-400); transform: translateY(-3px); box-shadow: var(--shadow); }
.canal--wa:hover { border-color: var(--wa); }
.canal__ico { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--radius); background: var(--blue-050); color: var(--blue-700); }
.canal--wa .canal__ico { background: #e8faf0; color: var(--wa-dark); }
.canal__ico svg { width: 22px; height: 22px; }
.canal strong { display: block; font-size: .96rem; color: var(--blue-900); }
.canal span { font-size: .8rem; color: var(--steel-600); }
.canal--static { cursor: default; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding: clamp(56px,7vw,80px) 0 0; }
.footer__top { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) 48px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name, .footer .brand__name b { color: #fff; }
.footer .brand__mark { filter: brightness(1.15); }
.footer .brand__tag { color: var(--steel-400); }
.footer__about { font-size: .9rem; line-height: 1.7; margin: 20px 0; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255,255,255,.08); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: all var(--t); }
.footer__social a:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { color: #fff; font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .9rem; transition: color var(--t); }
.footer__col a:hover { color: #fff; }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .03em; color: var(--steel-400); }

/* ============================================================
   LANZAMIENTO DE PRODUCTO NUEVO (popup)
   ============================================================ */
.launch {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center; padding: 20px;
  opacity: 0; transition: opacity .35s var(--ease);
}
.launch.is-visible { opacity: 1; }
.launch__backdrop {
  position: absolute; inset: 0;
  background: rgba(13,20,36,.55); backdrop-filter: blur(6px);
}
.launch__modal {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius-lg);
  max-width: 440px; width: 100%;
  box-shadow: 0 24px 80px rgba(13,20,36,.28);
  overflow: hidden; text-align: center;
  transform: translateY(20px) scale(.96);
  transition: transform .4s var(--ease);
}
.launch.is-visible .launch__modal { transform: none; }

.launch__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
  border: 1px solid var(--steel-200); border-radius: 50%;
  width: 34px; height: 34px; display: grid; place-items: center;
  cursor: pointer; color: var(--steel-600);
  transition: background var(--t), color var(--t);
}
.launch__close:hover { background: #fff; color: var(--blue-900); }

.launch__badge-wrap { padding: 28px 24px 0; }
.launch__badge-new {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--blue-700);
  padding: 7px 14px; border-radius: 20px;
  animation: launchPulse 2s ease-in-out infinite;
}
@keyframes launchPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,79,146,.4); }
  50% { box-shadow: 0 0 0 8px rgba(16,79,146,0); }
}

.launch__img-wrap {
  margin: 20px 24px 0; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 5/3; background: var(--steel-100);
}
.launch__img { width: 100%; height: 100%; object-fit: cover; }

.launch__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; color: var(--blue-900);
  margin: 20px 24px 8px; line-height: 1.15;
}
.launch__desc {
  font-size: .92rem; color: var(--steel-600);
  margin: 0 24px 20px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.launch__ctas {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 24px 20px;
}
.launch__timer {
  display: block; padding: 12px 24px;
  background: var(--steel-050); border-top: 1px solid var(--steel-100);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  color: var(--steel-400);
}

@media (prefers-reduced-motion: reduce) {
  .launch__badge-new { animation: none; }
}

/* ============================================================
   CARRITO — Nav icon
   ============================================================ */
.nav__cart {
  position: relative; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; display: grid; place-items: center;
  color: var(--blue-900); border-radius: var(--radius);
  transition: background var(--t), color var(--t);
  margin-left: 4px;
}
.nav__cart:hover { background: var(--blue-050); }
.nav__cart svg { width: 22px; height: 22px; }
.nav__cart-badge {
  position: absolute; top: 4px; right: 2px;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--blue-700); color: #fff;
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  display: grid; place-items: center; padding: 0 5px; line-height: 1;
  pointer-events: none;
  animation: cartPop .3s var(--ease);
}
@keyframes cartPop { 0% { transform: scale(0); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }

/* ============================================================
   CARRITO — Drawer
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(13,20,36,.45); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 310;
  width: min(420px, 92vw); background: #fff;
  box-shadow: -12px 0 48px rgba(13,20,36,.18);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--steel-100);
  flex-shrink: 0;
}
.cart-drawer__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--blue-900); margin: 0;
}
.cart-drawer__close {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: var(--radius);
  display: grid; place-items: center; color: var(--steel-600);
  transition: background var(--t), color var(--t);
}
.cart-drawer__close:hover { background: var(--steel-050); color: var(--blue-900); }

.cart-drawer__body {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  scrollbar-width: thin; scrollbar-color: var(--steel-200) transparent;
}

/* Empty state */
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px; color: var(--steel-400);
}
.cart-empty svg { width: 56px; height: 56px; margin-bottom: 16px; opacity: .5; }
.cart-empty p { font-size: .95rem; margin-bottom: 6px; }
.cart-empty small { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; }

/* Cart item */
.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--steel-100);
  position: relative;
}
.cart-item:last-child { border-bottom: none; }

.cart-item__img {
  width: 72px; height: 72px; border-radius: var(--radius);
  object-fit: cover; background: var(--steel-100); flex-shrink: 0;
}

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--blue-900); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item__pkg {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  color: var(--steel-400); margin-bottom: 8px;
}
.cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.cart-item__qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--steel-200); border-radius: var(--radius);
  overflow: hidden;
}
.cart-item__qty button {
  width: 30px; height: 30px; background: var(--steel-050);
  border: none; cursor: pointer; font-size: 1.05rem; line-height: 1;
  color: var(--blue-900); display: grid; place-items: center;
  transition: background var(--t);
}
.cart-item__qty button:hover { background: var(--steel-100); }
.cart-item__qty span {
  width: 34px; text-align: center;
  font-family: var(--font-mono); font-size: .85rem; font-weight: 600;
  color: var(--blue-900); background: #fff;
}

.cart-item__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--blue-900);
  white-space: nowrap;
}

.cart-item__remove {
  position: absolute; top: 12px; right: 0;
  background: none; border: none; cursor: pointer;
  width: 24px; height: 24px; display: grid; place-items: center;
  color: var(--steel-300); border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.cart-item__remove:hover { color: #d93025; background: #fde8e6; }
.cart-item__remove svg { width: 14px; height: 14px; }

/* Footer */
.cart-drawer__foot {
  padding: 20px 24px 24px; border-top: 1px solid var(--steel-100);
  flex-shrink: 0; background: var(--steel-050);
}
.cart-drawer__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.cart-drawer__total span { font-size: .92rem; color: var(--steel-600); }
.cart-drawer__total strong {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.55rem; color: var(--blue-900);
}
.cart-drawer__note {
  text-align: center; margin-top: 12px;
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--steel-400); letter-spacing: .04em;
}

/* Add-to-cart button (in product cards) */
.btn--add-cart {
  background: transparent; color: var(--blue-700);
  border: 1.5px solid var(--steel-200);
  gap: 8px;
}
.btn--add-cart:hover { border-color: var(--blue-700); background: var(--blue-050); transform: translateY(-2px); }
.btn--add-cart svg { width: 16px; height: 16px; }

.btn--added {
  background: var(--blue-050); color: var(--blue-700);
  border-color: var(--blue-400); pointer-events: none;
}

/* Card CTA group */
.pcard__ctas { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* Hide cart foot when empty */
.cart-drawer__foot[hidden] { display: none; }

@media (max-width: 880px) {
  .nav__cart { margin-left: 0; }
}


/* Cart incentives */
.cart-drawer__incentives { padding: 0 24px; flex-shrink: 0; }
.cart-drawer__incentives:empty { display: none; }

.cart-units {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--steel-100);
}
.cart-units__label { font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--steel-600); }
.cart-units__num { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--blue-900); }

.cart-progress { margin-bottom: 12px; }
.cart-progress__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cart-progress__label { font-family: var(--font-mono); font-size: .72rem; font-weight: 600; color: var(--steel-600); letter-spacing: .02em; }
.cart-progress__tag { font-family: var(--font-mono); font-size: .66rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--steel-400); }
.cart-progress__tag--ok { color: #1a8a4a; }
.cart-progress__bar { height: 6px; background: var(--steel-100); border-radius: 3px; overflow: hidden; }
.cart-progress__fill { height: 100%; background: var(--blue-700); border-radius: 3px; transition: width .5s var(--ease); min-width: 4px; }
.cart-progress__fill--ok { background: #1a8a4a; }

.cart-msg { display: flex; gap: 8px; align-items: flex-start; font-size: .8rem; line-height: 1.45; padding: 10px 12px; border-radius: var(--radius); margin-bottom: 8px; }
.cart-msg svg { flex-shrink: 0; margin-top: 1px; }
.cart-msg--warn { background: #fef7e6; color: #8a6211; border: 1px solid #f0dfa8; }
.cart-msg--ok { background: #eef7ee; color: #1a6a3a; border: 1px solid #c0e0c0; }
.cart-msg--tip { background: var(--blue-050); color: var(--blue-700); border: 1px solid #c8ddef; }

.cart-total--old { text-decoration: line-through; color: var(--steel-400); font-size: .85em; font-weight: 500; }

/* ============================================================
   TESTIMONIOS / CLIENTES
   ============================================================ */
.clientes { background: var(--blue-900); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.clientes .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.clientes .section-title { color: #fff; }
.clientes .section-sub { color: rgba(255,255,255,.88); margin-left: auto; margin-right: auto; }
.clientes .kicker { justify-content: center; }

.clientes__counter {
  text-align: center; margin-bottom: 48px;
}
.clientes__counter-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: #8fc2ec; line-height: 1;
  display: block; margin-bottom: 6px;
}
.clientes__counter-label {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* Videos de producto en el campo */
.clientes__videos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
}
.vcard { display: flex; flex-direction: column; flex: 0 1 280px; }
.vcard--error { display: none; }
.vcard__media {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden;
  background: #0b1120; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.vcard__media video { width: 100%; height: 100%; object-fit: contain; display: block; background: #0b1120; }
.vcard__cap { padding: 14px 2px 0; }
.vcard__tag {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: #8fc2ec;
  display: block; margin-bottom: 5px;
}
.vcard__title { color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.25; }

@media (max-width: 900px) { .clientes__videos { gap: 18px; } }
@media (max-width: 460px) { .vcard { flex: 0 1 300px; } }

.testimonios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testimonio {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: background var(--t), border-color var(--t);
}
.testimonio:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

.testimonio__stars { color: #f0c040; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonio__text { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testimonio__author { display: flex; align-items: center; gap: 12px; }
.testimonio__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: #8fc2ec;
  flex-shrink: 0;
}
.testimonio__name { font-weight: 600; font-size: .9rem; color: #fff; }
.testimonio__loc { font-family: var(--font-mono); font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* Video testimonial */
.testimonio--video .testimonio__text { margin-bottom: 14px; }
.testimonio__video {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; background: #0a0f1a; margin-bottom: 16px; cursor: pointer;
}
.testimonio__video video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.testimonio__video video[src=""] { display: none; }
.testimonio__video:has(video[src=""]) {
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.18);
}
.testimonio__video:has(video[src=""])::after {
  content: 'Subí el video del cliente aquí'; position: absolute;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em;
  color: rgba(255,255,255,.4);
}
.testimonio__video:has(video[src=""]) .testimonio__play { display: none; }
.testimonio__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(13,20,36,.45); border: none; cursor: pointer;
  transition: background var(--t);
}
.testimonio__play:hover { background: rgba(13,20,36,.25); }
.testimonio__play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); transition: transform var(--t); }
.testimonio__play:hover svg { transform: scale(1.12); }
.testimonio__video.is-playing .testimonio__play { opacity: 0; pointer-events: none; }
.testimonio__video-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--font-mono); font-size: .64rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(13,20,36,.7); backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: var(--radius);
}

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

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; text-decoration: none; z-index: 200; box-shadow: 0 6px 24px rgba(37,211,102,.45); transition: transform .35s var(--ease), box-shadow var(--t), opacity .35s var(--ease); }
.wa-float--hidden { opacity: 0; transform: translateY(16px) scale(.85); pointer-events: none; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: wa-pulse 2.6s infinite; }
@keyframes wa-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(1.32); } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pcard { flex: 0 0 calc(50% - 12px); }
  .beneficios { grid-template-columns: repeat(2, 1fr); }
  .beneficio:nth-child(2) { border-right: none; }
  .beneficio:nth-child(1), .beneficio:nth-child(2) { border-bottom: 1px solid var(--steel-100); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .hero { padding-top: 0; }
  .hero__container {
    display: flex; flex-direction: column;
    min-height: auto; width: 100%;
    padding: calc(74px + clamp(12px, 2.5vh, 22px)) var(--pad) clamp(28px, 5vh, 44px);
  }
  .hero__inner { display: flex; flex-direction: column; max-width: none; width: 100%; }
  .hero .kicker { margin-bottom: 16px; }
  .hero__title { margin-bottom: 16px; font-size: clamp(1.9rem, 6.5vw, 2.6rem); }
  .hero__subtitle { margin-bottom: 28px; }
  .hero__ctas { margin-bottom: 36px; }
  .hero__stats { margin-top: 0; margin-bottom: 0; padding-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .hero__stat { padding: 0 20px; }
  .hero__stat:nth-child(odd) { padding-left: 0; }
  .hero__stat:nth-child(2n) { border-right: none; padding-right: 0; }
  .nosotros__grid { grid-template-columns: 1fr; }
  .nosotros__visual { margin-top: 16px; margin-bottom: 36px; }
  .nosotros__chip { right: 12px; }
  .contacto__grid { grid-template-columns: 1fr; }
  .canales { grid-template-columns: 1fr; }
  .pcard { flex: 0 0 100%; }
  .catalogo .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__stat { padding-right: 18px; }
  .beneficios { grid-template-columns: 1fr; }
  .beneficio { border-right: none !important; border-bottom: 1px solid var(--steel-100); }
  .beneficio:last-child { border-bottom: none; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; }
}

/* ============================================================
   CHECKOUT — pop-up de incentivo
   ============================================================ */
.checkout-pop {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.checkout-pop.is-visible { opacity: 1; pointer-events: auto; }
.checkout-pop__backdrop {
  position: absolute; inset: 0;
  background: rgba(13,20,36,.6); backdrop-filter: blur(3px);
}
.checkout-pop__modal {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 34px 28px 26px; text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98);
  transition: transform .3s var(--ease);
}
.checkout-pop.is-visible .checkout-pop__modal { transform: translateY(0) scale(1); }
.checkout-pop__close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer;
  color: var(--steel-400); padding: 6px; line-height: 0;
  border-radius: var(--radius); transition: color var(--t), background var(--t);
}
.checkout-pop__close:hover { color: var(--steel-900); background: var(--steel-050); }
.checkout-pop__icon { font-size: 2.6rem; display: block; margin-bottom: 10px; }
.checkout-pop__title {
  font-size: 1.35rem; margin-bottom: 10px; color: var(--blue-900);
}
.checkout-pop__msg {
  font-size: 1rem; color: var(--steel-600); line-height: 1.55;
  margin-bottom: 22px;
}
.checkout-pop__msg b { color: var(--blue-700); font-weight: 700; }
.checkout-pop__actions { display: flex; flex-direction: column; gap: 10px; }

.checkout-pop__sugs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; text-align: left; }
.sug {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 13px 16px;
  background: var(--blue-050); border: 1.5px solid var(--steel-200);
  border-radius: var(--radius); cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.sug:hover { border-color: var(--blue-500); background: #e2edf8; transform: translateY(-1px); }
.sug__main { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.sug__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--blue-900); }
.sug__tag {
  font-family: var(--font-mono); font-size: .6rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: #06351c; background: var(--wa);
  padding: 2px 7px; border-radius: 3px;
}
.sug__price { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--blue-700); white-space: nowrap; }

/* ============================================================
   HERO · SHOWCASE DE PRODUCTOS (medios apilados, sin fondo)
   Requiere: assets/cut-reforzado.png, cut-pinlock.png, cut-mini.png
   ============================================================ */

/* Layout del hero: texto a la izquierda, showcase a la derecha */
.hero__layout{display:grid;grid-template-columns:1fr;gap:clamp(32px,5vw,56px);align-items:center}
@media (min-width:860px){.hero__layout{grid-template-columns:minmax(0,1fr) clamp(260px,30vw,460px);gap:clamp(28px,4vw,72px);align-items:center}.hero__layout .hero__inner{max-width:720px}}

/* Contenedor */
.showcase{position:relative;isolation:isolate}
.showcase::before{content:'';position:absolute;z-index:-1;inset:-12% -8% -4%;background:radial-gradient(ellipse 60% 55% at 55% 42%,rgba(143,194,236,.20),transparent 70%);filter:blur(6px);pointer-events:none}

/* Etiqueta "Productos Polielectric" */
.showcase__tag{display:flex;align-items:center;gap:10px;font-family:var(--font-mono);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:clamp(16px,2vw,26px)}
.showcase__tag::before{content:'';width:26px;height:1px;background:rgba(143,194,236,.8)}

/* Stack */
.showcase__stack{position:relative;width:100%;aspect-ratio:1/1.28}

/* Cada pieza (es un <a> clickeable) */
.showcase__item{position:absolute;margin:0;display:block;text-decoration:none;cursor:pointer;animation:showcaseFloat 7s ease-in-out infinite;transition:transform .5s cubic-bezier(.2,.8,.2,1),filter .5s ease}
.showcase__item img{display:block;width:100%;height:auto;filter:drop-shadow(0 18px 26px rgba(4,10,24,.65)) drop-shadow(0 2px 4px rgba(4,10,24,.5))}

/* Caption */
.showcase__cap{display:flex;align-items:center;gap:8px;margin-top:6px;padding-left:18%;font-family:var(--font-mono);font-size:.66rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.72);white-space:nowrap}
.showcase__cap i{width:14px;height:1px;background:rgba(255,255,255,.4);flex:none}

/* Posiciones (sin superposición) */
.showcase__item--a{width:96%;top:0;right:-6%;z-index:3;rotate:-2.5deg}
.showcase__item--b{width:88%;top:41%;left:-12%;z-index:4;rotate:2.5deg;animation-delay:-2.3s}
.showcase__item--c{width:66%;top:75%;right:-2%;z-index:5;rotate:-1.5deg;animation-delay:-4.6s}

/* Hover / foco */
.showcase__item:hover{transform:translateY(-10px) scale(1.04);z-index:6}
.showcase__item:hover img{filter:drop-shadow(0 34px 44px rgba(4,10,24,.6)) drop-shadow(0 0 26px rgba(143,194,236,.28))}
.showcase__item:focus-visible{outline:2px solid #8fc2ec;outline-offset:6px;border-radius:6px}

/* Flotación */
@keyframes showcaseFloat{0%,100%{translate:0 0}50%{translate:0 -12px}}

/* Resalte de la tarjeta destino en el catálogo */
.pcard--focus{outline:2px solid var(--accent,#8fc2ec);outline-offset:4px;transition:outline-color .3s ease}

/* Responsive */
@media (max-width:859px){.showcase{max-width:420px;margin-inline:auto;width:100%}}
@media (max-width:560px){.showcase__cap{font-size:.58rem;letter-spacing:.08em}}
@media (prefers-reduced-motion:reduce){.showcase__item{animation:none}}
