/* =========================================================================
   EQUIPAMIENTO FORENSE — VARMUUS S.A. de C.V.
   Estilo: claro, amigable y accesible
   ========================================================================= */

:root {
  /* Paleta clara */
  --bg:            #f4f8f8;   /* fondo base suave */
  --bg-tint:       #e4ecf3;   /* secciones alternas */
  --surface:       #ffffff;   /* tarjetas */
  --surface-2:     #f7fafa;   /* paneles suaves */
  --line:          #e3ecec;   /* bordes */
  --line-strong:   #d2e0df;

  --text:          #143034;   /* texto principal (teal-slate) */
  --text-soft:     #4f6569;   /* secundario */
  --text-mute:     #849799;   /* tenue */

  --accent:        #1e4585;   /* azul marino principal (del logo) */
  --accent-dark:   #15315c;   /* azul marino profundo (texto sobre claro) */
  --accent-soft:   #dde7f5;   /* azul muy claro (fondos de íconos) */

  --green:         #3f8466;   /* verde bosque (acento del logo) */
  --green-dark:    #2f6b51;   /* verde profundo (texto) */
  --green-soft:    #d9ece2;   /* verde muy claro (fondos) */
  --steel-soft:    #e7eef7;   /* azul acero claro */
  --steel-dark:    #2c5a8c;   /* azul acero (texto) */

  --amber:         #f5a524;   /* ámbar cálido (solo avisos) */
  --amber-soft:    #fdeccb;

  --ink-footer:    #0e2236;   /* footer azul marino profundo */

  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 100px;
  --shadow-sm: 0 4px 14px -8px rgba(16, 60, 56, 0.25);
  --shadow:    0 18px 40px -22px rgba(16, 60, 56, 0.35);
  --shadow-lg: 0 30px 60px -28px rgba(16, 60, 56, 0.40);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

.section { padding: clamp(48px, 6vw, 66px) 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-tint); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  max-width: 22ch;
}
.section-intro {
  color: var(--text-soft);
  max-width: 64ch;
  font-size: 1.06rem;
}
.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; }
.section-head.center .section-title,
.section-head.center .section-intro { margin-inline: auto; }
.section-head.center .eyebrow { display: inline-flex; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(30, 69, 133, 0.55);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(30, 69, 133, 0.6); }
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 40px; width: auto; display: block; }
.site-header .brand__logo { height: 52px; }
.site-footer .brand__logo { filter: brightness(0) invert(1); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.93rem;
  color: var(--text-soft);
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent-dark); background: var(--accent-soft); }
.nav-links a.active { color: var(--accent-dark); background: var(--accent-soft); }
.nav-cta { margin-left: 8px; }
.nav-links a.nav-cta.active, .nav-links a.nav-cta { color: #fff; background: var(--accent); }
.nav-links a.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  width: 46px; height: 46px;
  color: var(--text);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -25%; right: -12%;
  width: 52vw; height: 52vw; max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(30,69,133,0.16), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; bottom: -30%; left: -10%;
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(63,132,102,0.18), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(30,69,133,0.16);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  color: var(--text-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero__media .float-card {
  position: absolute;
  bottom: 22px; left: -18px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__media .float-card .ic {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center;
}
.hero__media .float-card .ic svg { width: 20px; height: 20px; }
.hero__media .float-card b { font-family: var(--font-head); font-size: 0.95rem; }
.hero__media .float-card span { display: block; font-size: 0.78rem; color: var(--text-mute); }

/* Banda de estadísticas */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
}
.stat__label { color: var(--text-soft); font-size: 0.9rem; margin-top: 4px; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card__mods { font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin: 18px 0 10px; }
.card p { color: var(--text-soft); font-size: 0.97rem; }
.card__tag {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-head);
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 4px 11px; border-radius: var(--radius-pill);
}
/* variantes de íconos para dar ritmo (azul / verde / acero, tomados del logo) */
.card:nth-child(3n+2) .card__icon { background: var(--green-soft); color: var(--green-dark); }
.card:nth-child(3n+3) .card__icon { background: var(--steel-soft); color: var(--steel-dark); }

/* Tarjetas de software / licencia (catálogo de inteligencia) */
.lic-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: 0 16px 38px -22px rgba(16,49,92,0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  text-decoration: none; color: inherit;
}
.lic-card:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -24px rgba(16,49,92,0.5); border-color: var(--accent-soft); }
.lic-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lic-card__ic { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(140deg, var(--accent), var(--steel-dark)); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 10px 20px -10px rgba(21,49,92,0.55); }
.lic-card__ic svg { width: 24px; height: 24px; }
.lic-card__badge { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green-dark); background: var(--green-soft); padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; }
.lic-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.lic-card > p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }
.lic-card .card__feats { margin-top: 14px; gap: 8px; }
.lic-card .card__feats li { font-size: 0.86rem; }
.lic-card__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--accent-dark); font-size: 0.88rem; transition: gap 0.2s var(--ease); }
.lic-card:hover .lic-card__cta { gap: 10px; }

/* Tarjetas de software propio: capacidades concretas */
.sw-card { display: flex; flex-direction: column; }
.sw-card > p { margin: 0 0 16px; }
.sw-card__for { margin-top: 16px; font-size: 0.85rem; color: var(--text-soft); }
.sw-card__for span { font-weight: 700; color: var(--text); }
.card__feats {
  list-style: none; margin: 2px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.card__feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--text); line-height: 1.4;
}
.card__feats li::before {
  content: ""; width: 18px; height: 18px; flex: none; margin-top: 1px;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f8466' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Tarjetas de sistemas en operación (productos propios) */
.prod-card { display: flex; flex-direction: column; }
.prod-status {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--green-dark); background: var(--green-soft);
  padding: 5px 12px 5px 10px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.prod-status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: relative; flex: none; }
.prod-status__dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--green); animation: prodPulse 1.8s ease-out infinite; }
.prod-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.prod-card__head .card__icon { margin: 0; width: 50px; height: 50px; }
.prod-card__id h3 { margin: 0 0 2px; font-size: 1.2rem; }
.prod-card__type { font-size: 0.82rem; font-weight: 600; color: var(--text-mute); }
.prod-card > p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }
.prod-card__modhead { display: flex; align-items: center; gap: 9px; margin-top: 22px; margin-bottom: 14px; }
.prod-card__modhead span { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-mute); }
.prod-card__modhead em { font-style: normal; background: var(--accent-soft); color: var(--accent-dark); font-size: 0.72rem; font-weight: 700; padding: 2px 9px; border-radius: var(--radius-pill); }
.prod-mods { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.prod-mods li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.88rem; color: var(--text); line-height: 1.4; }
.prod-mods li::before {
  content: ""; width: 17px; height: 17px; flex: none; margin-top: 1px;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f8466' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
@keyframes prodPulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .prod-status__dot::after { animation: none; } }
.panel__title { font-size: 1.04rem; margin: 0 0 15px; color: var(--text); }

/* Productos estrella (software propio) */
.flagship__feature {
  display: grid; grid-template-columns: 1.05fr 1.25fr; gap: 44px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.flagship__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green-dark); background: var(--green-soft); padding: 5px 12px 5px 10px; border-radius: var(--radius-pill); }
.flagship__badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.flagship__feature h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 16px 0 8px; }
.flagship__info > p { color: var(--text-soft); font-size: 1.02rem; margin: 0 0 18px; max-width: 46ch; }
.flagship__meta { display: flex; gap: 10px 22px; flex-wrap: wrap; margin-bottom: 24px; }
.flagship__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; color: var(--text); font-weight: 600; }
.flagship__meta svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.flagship__shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 50px -26px rgba(16,49,92,0.5); background: #fff; }
.flagship__shot img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.flagship__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.flagship__card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s; text-decoration: none; color: inherit; }
.flagship__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.flagship__card .flagship__shot { border-radius: 0; border: none; border-bottom: 1px solid var(--line); box-shadow: none; }
.flagship__cardbody { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.flagship__cardbody h4 { font-size: 1.2rem; margin: 12px 0 6px; }
.flagship__cardbody p { color: var(--text-soft); font-size: 0.93rem; margin: 0 0 16px; flex: 1; }
.flagship__cardfoot { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--accent-dark); font-size: 0.9rem; }
.flagship__cardfoot svg { width: 16px; height: 16px; }
@media (max-width: 880px) {
  .flagship__feature { grid-template-columns: 1fr; gap: 26px; padding: 26px; }
  .flagship__row { grid-template-columns: 1fr; }
}

/* Ficha extensa de producto estrella */
.prod-detail + .prod-detail { margin-top: 60px; }
.prod-detail__top { display: grid; grid-template-columns: 1.05fr 1.1fr; gap: 48px; align-items: center; margin-bottom: 36px; }
.prod-detail--rev .prod-detail__media { order: -1; }
.prod-detail__body h3 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin: 14px 0 4px; }
.prod-detail__tagline { color: var(--green-dark); font-weight: 700; font-size: 0.98rem; margin: 0 0 14px; }
.prod-detail__lead { color: var(--text-soft); font-size: 1.02rem; margin: 0 0 20px; }
.prod-detail__media { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 50px -26px rgba(16,49,92,0.5); background: #fff; align-self: start; }
.prod-detail__media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.prod-detail__label { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); font-weight: 700; margin: 0 0 14px; }
.prod-detail__scope { color: var(--text-soft); font-size: 0.98rem; margin: 0 0 22px; max-width: 52ch; }
.modgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.modcard { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.section--alt .modcard { background: var(--surface); }
.modcard strong { display: block; font-family: var(--font-head); font-size: 0.95rem; color: var(--text); margin-bottom: 5px; }
.modcard span { display: block; font-size: 0.86rem; color: var(--text-soft); line-height: 1.45; }
.impact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.impact-item { display: flex; gap: 13px; }
.impact-item__ic { width: 40px; height: 40px; border-radius: 12px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.impact-item__ic svg { width: 20px; height: 20px; }
.impact-item strong { display: block; font-size: 0.98rem; color: var(--text); margin-bottom: 3px; }
.impact-item p { font-size: 0.88rem; color: var(--text-soft); margin: 0; line-height: 1.45; }
@media (max-width: 880px) {
  .prod-detail__top { grid-template-columns: 1fr; gap: 26px; }
  .prod-detail--rev .prod-detail__media { order: 0; }
  .modgrid { grid-template-columns: 1fr 1fr; }
  .impact-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .modgrid { grid-template-columns: 1fr; } }

/* Lista de cursos en columnas */
.cap-cols { column-count: 2; column-gap: 40px; }
.cap-cols li { break-inside: avoid; }
@media (max-width: 720px) { .cap-cols { column-count: 1; } }

/* Lista con check */
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--accent);
}

/* ---------- Catálogo de productos ---------- */
.prod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod__img {
  width: 100%; height: 180px;
  object-fit: cover;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
/* Fotos reales de producto (recortadas sobre blanco) */
.prod__img--cat { object-fit: contain; background: #ffffff; padding: 11px; }
/* Fotos verticales de vestuario/calzado, centradas sobre blanco */
.prod__img--wear { object-fit: contain; object-position: center; background: #ffffff; height: 250px; padding: 8px; }
/* Galería de producto destacado (imagen grande, sin texto descriptivo) */
.prod--show { position: relative; }
.prod--show .prod__img { height: 236px; border-bottom: none; transition: transform 0.5s var(--ease); }
.prod--show:hover .prod__img { transform: scale(1.06); }
.prod--show .prod__top { padding-bottom: 20px; border-top: 1px solid var(--line); }
.prod__tag {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  font-family: var(--font-head); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--steel-dark); background: var(--steel-soft);
  padding: 4px 9px; border-radius: var(--radius-pill);
}
.prod__fb {
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  color: var(--accent-dark); white-space: nowrap; flex: none;
  transition: transform 0.25s var(--ease);
}
.prod--show:hover .prod__fb { transform: translateX(3px); }
.prod__top {
  padding: 18px 22px 6px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.prod > .prod__top:last-child { padding-bottom: 20px; align-items: center; }
.prod__cat {
  font-family: var(--font-head);
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
  color: var(--accent-dark); margin-bottom: 4px;
}
.prod__name { font-size: 1.12rem; font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
.prod__num {
  font-family: var(--font-head);
  color: var(--text-mute);
  font-size: 0.72rem; font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
  flex: none;
}
.prod__body { padding: 8px 22px 22px; }
.prod__body .checklist li { font-size: 0.9rem; margin-bottom: 9px; }

/* Filtro de categorías */
.cat-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.cat-bar button {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-bar button:hover { color: var(--accent-dark); border-color: var(--accent); }
.cat-bar button.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 10px 20px -10px rgba(30,69,133,0.55); }

/* ---------- Clientes ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.client {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}
.client:hover { transform: translateY(-3px); }
.client__badge {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 800;
}
.client__name { font-weight: 600; font-size: 0.98rem; color: var(--text); }
.client__type { color: var(--text-mute); font-size: 0.82rem; }

/* ---------- Banda partners ---------- */
.partners {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.partner-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}
.partner-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ---------- Franja de logotipos de marcas ---------- */
.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 16px 20px;
  min-height: 132px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}
.brand-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.brand-tile__logo { height: 44px; display: flex; align-items: center; justify-content: center; }
.brand-tile img {
  max-height: 40px; width: auto; max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s var(--ease);
}
.brand-tile:hover img { transform: scale(1.06); }
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  transition: transform 0.25s var(--ease);
}
.brand-tile:hover .brand-word { transform: scale(1.04); }

/* Garantías de distribuidor autorizado (sobre fondo oscuro) */
.dist-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 38px;
}
.dist-badges span {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #d4e3f0;
  padding: 9px 18px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 600; font-size: 0.86rem;
}
.dist-badges span svg { width: 17px; height: 17px; color: #8fd3b6; flex: none; }
.brand-tile__cat {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  text-align: center;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  width: 100%;
}

/* ---------- Pilares (sectores que atendemos) ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar__icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center;
}
.pillar:nth-child(2) .pillar__icon { background: var(--green-soft); color: var(--green-dark); }
.pillar:nth-child(3) .pillar__icon { background: var(--steel-soft); color: var(--steel-dark); }
.pillar:nth-child(4) .pillar__icon { background: var(--amber-soft); color: #b9750a; }
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.22rem; margin-bottom: 10px; }
.pillar p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Sectores (franja compacta) ---------- */
.sectores { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.sector {
  display: inline-flex; align-items: center; gap: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 24px 13px 15px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.04rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.sector:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sector__ic {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-dark);
}
.sector__ic svg { width: 21px; height: 21px; }
.sector:nth-child(2) .sector__ic { background: var(--green-soft); color: var(--green-dark); }
.sector:nth-child(3) .sector__ic { background: var(--steel-soft); color: var(--steel-dark); }
.sector:nth-child(4) .sector__ic { background: var(--amber-soft); color: #b9750a; }

/* ---------- Cuatro líneas (mosaicos con imagen + texto encima) ---------- */
.lines-split {
  display: grid; grid-template-columns: 0.9fr 1.35fr; gap: 38px 50px;
  align-items: center;
}
.lines-split__head .eyebrow { margin-bottom: 16px; }
.lines-split__head .section-title { max-width: 15ch; margin-bottom: 16px; }
.lines-split__head p { color: var(--text-soft); font-size: 1.04rem; line-height: 1.6; max-width: 44ch; margin-bottom: 22px; }
.lines-split__tags-label {
  display: block; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px;
}
.lines-split__tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 28px; max-width: 440px; }
.lines-split__tags span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 0.84rem; font-weight: 600;
  color: var(--text); background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px; padding: 9px 13px;
}
.lines-split__tags span svg { width: 17px; height: 17px; flex: none; }
.lines-split__tags span:nth-child(1) svg { color: var(--accent-dark); }
.lines-split__tags span:nth-child(2) svg { color: var(--green-dark); }
.lines-split__tags span:nth-child(3) svg { color: var(--steel-dark); }
.lines-split__tags span:nth-child(4) svg { color: #b9750a; }
.lines-split__tags span:nth-child(5) { grid-column: 1 / -1; justify-content: center; }
.lines-split__tags span:nth-child(5) svg { color: var(--accent-dark); }
.lines-split__head .btn svg { width: 18px; height: 18px; }
.lines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.line-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.line-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.line-card__ic {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--accent-soft); color: var(--accent-dark);
}
.line-card__ic svg { width: 26px; height: 26px; }
.line-card:nth-child(2) .line-card__ic { background: var(--green-soft); color: var(--green-dark); }
.line-card:nth-child(3) .line-card__ic { background: var(--steel-soft); color: var(--steel-dark); }
.line-card:nth-child(4) .line-card__ic { background: var(--amber-soft); color: #b9750a; }
.line-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.line-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; }
.line-card__more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--accent-dark);
}
.line-card__more svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.line-card:hover .line-card__more svg { transform: translateX(4px); }
@media (max-width: 880px) {
  .lines-split { grid-template-columns: 1fr; gap: 26px; align-items: start; }
}
@media (max-width: 520px) { .lines-grid { grid-template-columns: 1fr; } }

/* ---------- Catálogo destacado (pestañas) ---------- */
/* Catálogo oscuro (showcase) */
.section.cat-section { background: linear-gradient(160deg, #e4edfa 0%, #d3e1f4 100%); }
.cat-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 18px 36px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.cat-head .eyebrow { margin-bottom: 14px; background: var(--accent); color: #fff; }
.cat-head .section-title { margin-bottom: 0; max-width: 20ch; }
.cat-cta {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
  color: #fff; background: var(--accent-dark); border: none;
  padding: 13px 24px; border-radius: var(--radius-pill); text-decoration: none; white-space: nowrap;
  box-shadow: 0 12px 26px -14px rgba(21,49,92,0.5);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cat-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(21,49,92,0.5); }
.cat-cta svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.cat-cta:hover svg { transform: translateX(4px); }
.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cat-chip {
  font-family: var(--font-head); font-size: 0.84rem; font-weight: 700;
  color: var(--accent-dark); background: var(--surface); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: var(--radius-pill); text-decoration: none;
  box-shadow: var(--shadow-sm);
  animation: catFadeUp 0.5s var(--ease) backwards;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.cat-chip:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.cat-chips .cat-chip:nth-child(1) { animation-delay: 0.03s; }
.cat-chips .cat-chip:nth-child(2) { animation-delay: 0.08s; }
.cat-chips .cat-chip:nth-child(3) { animation-delay: 0.13s; }
.cat-chips .cat-chip:nth-child(4) { animation-delay: 0.18s; }
.cat-chips .cat-chip:nth-child(5) { animation-delay: 0.23s; }
.cat-chips .cat-chip:nth-child(6) { animation-delay: 0.28s; }
.cat-chips .cat-chip:nth-child(7) { animation-delay: 0.33s; }

/* Pestañas como control segmentado (claro) */
.cat-section .tabs {
  display: inline-flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0; flex: none;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 13px; padding: 5px;
}
.cat-section .tab-btn {
  background: transparent; border: none; color: var(--text-soft); cursor: pointer;
  padding: 9px 16px; border-radius: 9px; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 7px;
}
.cat-section .tab-btn svg { width: 16px; height: 16px; flex: none; }
.cat-section .tab-btn:hover { color: var(--accent-dark); background: #fff; border-color: transparent; }
.cat-section .tab-btn.active { background: var(--accent-dark); color: #fff; border-color: transparent; box-shadow: 0 4px 12px -4px rgba(21,49,92,0.4); }

/* Animación de entrada de tarjetas */
@keyframes catFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cat-section .tab-panel.active .grid > * { animation: catFadeUp 0.55s var(--ease) backwards; }
.cat-section .tab-panel.active .grid > *:nth-child(1) { animation-delay: 0.06s; }
.cat-section .tab-panel.active .grid > *:nth-child(2) { animation-delay: 0.12s; }
.cat-section .tab-panel.active .grid > *:nth-child(3) { animation-delay: 0.18s; }
.cat-section .tab-panel.active .grid > *:nth-child(4) { animation-delay: 0.24s; }
.cat-section .tab-panel.active .grid > *:nth-child(5) { animation-delay: 0.30s; }
.cat-section .tab-panel.active .grid > *:nth-child(6) { animation-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .cat-chip, .cat-section .tab-panel.active .grid > * { animation: none; }
}
.cat-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 30px;
}
.cat-foot__trust { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.cat-foot__item { display: inline-flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 0.9rem; font-weight: 600; }
.cat-foot__ic { width: 28px; height: 28px; border-radius: 9px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.cat-foot__ic svg { width: 16px; height: 16px; }
.cat-foot__item strong { color: var(--text); font-weight: 800; }
@media (max-width: 640px) { .cat-head { align-items: flex-start; } }
.tab-btn {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 11px 24px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--surface); color: var(--text-soft);
  cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab-btn:hover { color: var(--accent-dark); border-color: var(--accent-soft); }
.tab-btn.active { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabfade 0.35s var(--ease); }
@keyframes tabfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.sw-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.sw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.sw-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sw-card__ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--steel-soft); color: var(--steel-dark); }
.sw-card__ic svg { width: 24px; height: 24px; }
.sw-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.sw-card p { color: var(--text-soft); font-size: 0.94rem; line-height: 1.5; margin-bottom: 18px; }
.sw-card__foot { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--accent-dark); }
.sw-card__foot svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.sw-card:hover .sw-card__foot svg { transform: translateX(4px); }

.cap-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 48px; align-items: center; }
.cap-split h3 { font-size: 1.5rem; margin-bottom: 14px; }
.cap-split > div > p { color: var(--text-soft); font-size: 1.04rem; line-height: 1.6; margin-bottom: 24px; }
.cap-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cap-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); }
.cap-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent-dark); line-height: 1; margin-bottom: 6px; }
.cap-stat span { color: var(--text-soft); font-size: 0.9rem; line-height: 1.35; }
@media (max-width: 760px) { .cap-split { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Diferenciadores ---------- */
.diff-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.diff-split__text .eyebrow { margin-bottom: 16px; }
.diff-split__text .section-title { margin-bottom: 24px; max-width: 18ch; }
.diff-list { display: flex; flex-direction: column; gap: 2px; margin: 0 -14px; }
.diff-row {
  display: flex; gap: 14px; align-items: flex-start; padding: 11px 14px;
  border-radius: 12px; cursor: pointer;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.diff-row.is-active { background: var(--surface); box-shadow: var(--shadow-sm); }
.diff-split__media img.swapping { animation: diffFade 0.45s var(--ease); }
@keyframes diffFade { from { opacity: 0.4; } to { opacity: 1; } }
.diff-row__ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-dark);
}
.diff-row__ic svg { width: 21px; height: 21px; }
.diff-row:nth-child(2) .diff-row__ic { background: var(--green-soft); color: var(--green-dark); }
.diff-row:nth-child(3) .diff-row__ic { background: var(--steel-soft); color: var(--steel-dark); }
.diff-row:nth-child(4) .diff-row__ic { background: var(--amber-soft); color: #b9750a; }
.diff-row h4 { font-size: 1.06rem; margin-bottom: 3px; }
.diff-row p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.45; }
.diff-split__media { position: relative; align-self: stretch; }
.diff-split__media img {
  width: 100%; height: 100%; min-height: 400px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.diff-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 0.86rem;
  padding: 9px 15px; border-radius: var(--radius-pill);
  box-shadow: 0 12px 26px -10px rgba(0,0,0,0.4);
}
.diff-badge svg { width: 16px; height: 16px; color: var(--green-dark); }
@media (max-width: 860px) {
  .diff-split { grid-template-columns: 1fr; gap: 28px; }
  .diff-split__media img { min-height: 280px; }
}

/* ---------- Tira de logos (barra de confianza bajo el hero) ---------- */
.logo-strip-band {
  background: #e9eff6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.logo-strip__label { text-align: center; margin-bottom: 16px; }
.logo-strip__label .eyebrow { margin-bottom: 0; }
.logo-strip__label .eyebrow svg { width: 14px; height: 14px; }

/* marquee (logos en movimiento) */
.logo-marquee {
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logo-track {
  display: flex; width: max-content;
  animation: logo-scroll 36s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .logo-track .logo-cell:nth-child(n+9) { display: none; }
}
.logo-cell {
  flex: none; width: 150px; height: 48px; margin-right: 10px;
  padding: 0 12px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.logo-cell:hover { transform: scale(1.08); }
.logo-cell img {
  max-height: 34px; max-width: 126px; width: auto; height: auto;
  object-fit: contain;
}
.strip-values {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px;
  margin-top: 26px;
}
.strip-values span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  color: var(--text-soft);
}
.strip-values svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* ---------- Hero a pantalla completa (landing alternativo) ---------- */
.hero-full {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-full__bg { position: absolute; inset: 0; z-index: 0; }
.hero-full__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-full__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(14,34,54,0.94) 0%, rgba(14,34,54,0.82) 42%, rgba(20,48,82,0.55) 100%);
}
.hero-full .container { position: relative; z-index: 1; }
.hero-full__inner { max-width: 720px; padding: 26px 0; }
.hero-full .hero__badge { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #dbe6f2; }
.hero-full .hero__badge .dot { box-shadow: 0 0 0 4px rgba(63,132,102,0.4); background: var(--green); }
.hero-full h1 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.6rem); max-width: 16ch; margin-bottom: 16px; }
.hero-full h1 .accent { color: #8fd3b6; }
.hero-full__lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: #cdd9e6; max-width: 56ch; margin-bottom: 24px; }
.hero-full .btn--primary, .hero-full .btn--ghost {
  background: #2a62bd; color: #fff; border-color: #2a62bd;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5);
}
.hero-full .btn--primary:hover, .hero-full .btn--ghost:hover {
  background: #1f4f9e; border-color: #1f4f9e; color: #fff;
}
.hero-full__stats {
  display: flex; flex-wrap: wrap; gap: 36px; margin-top: 18px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-full__stats .n { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: #fff; }
.hero-full__stats .l { font-size: 0.86rem; color: #aebed0; }
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat__ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1); color: #8fd3b6;
}
.hero-stat__ic svg { width: 21px; height: 21px; }

/* Sección oscura (para ritmo en el landing alternativo) */
.section--dark { background: var(--ink-footer); color: #cfe0ee; }
.section--dark .section-title { color: #fff; }
.section--dark .section-intro { color: #aebed0; }
.section--dark .eyebrow { background: rgba(255,255,255,0.1); color: #8fd3b6; }
.section--dark .brand-tile { background: rgba(255,255,255,0.95); }

/* ---------- Split / feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.split__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 6px solid #fff;
  object-fit: cover;
}

/* Mini-feature rows */
.feature-row { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: 0; }
.feature-row__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--accent-dark);
}
.feature-row__icon svg { width: 22px; height: 22px; }
.feature-row h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-row p { color: var(--text-soft); font-size: 0.93rem; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--accent-dark), var(--steel-dark));
  border-radius: var(--radius);
  padding: clamp(36px, 4.5vw, 54px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; color: #fff; }
.cta p { color: rgba(255,255,255,0.92); max-width: 54ch; margin: 0 auto 28px; font-size: 1.06rem; }
.cta .btn--primary { background: #fff; color: var(--accent-dark); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.35); }
.cta .btn--primary:hover { background: #f0fffd; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--line {
  background: #2a62bd; color: #fff;
  border: 1.5px solid #2a62bd;
}
.cta .btn--line:hover { background: #1f4f9e; border-color: #1f4f9e; }
.cta__chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 24px; margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
}
.cta__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.cta__chip svg { width: 17px; height: 17px; color: #8fd3b6; flex: none; }

/* CTA enriquecido (software a la medida) */
.cta--feature { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; text-align: left; }
.cta--feature .cta__inner { position: relative; z-index: 1; }
.cta__eyebrow { display: inline-block; font-family: var(--font-head); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #8fd3b6; margin-bottom: 14px; }
.cta--feature h2 { margin-bottom: 12px; }
.cta--feature p { margin: 0 0 22px; max-width: 50ch; }
.cta--feature .cta__chips { justify-content: flex-start; gap: 12px 24px; margin: 0 0 28px; border: none; padding: 0; }
.cta--feature .cta__actions { justify-content: flex-start; }
.cta__art { position: relative; z-index: 1; width: 200px; flex: none; color: #8fd3b6; opacity: 0.9; }
.cta__art svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 16px 32px rgba(0,0,0,0.28)); }
@media (max-width: 760px) {
  .cta--feature { grid-template-columns: 1fr; gap: 28px; }
  .cta__art { display: none; }
}

/* CTA híbrido (imagen + mini-formulario) */
.cta--hybrid { text-align: left; padding: 0; background: var(--ink-footer); }
.cta--hybrid::before { display: none; }
.cta__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(11,28,49,0.95) 0%, rgba(11,28,49,0.85) 48%, rgba(20,46,82,0.62) 100%);
}
.cta__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px 46px;
  align-items: center; padding: clamp(30px, 3.6vw, 46px);
}
.cta__text > p:not(.cta__alt) { color: #cdd9e6; max-width: 44ch; margin: 0 0 22px; font-size: 1.04rem; }
.cta--hybrid .cta__chips { justify-content: flex-start; gap: 9px 20px; margin-top: 0; border-top: none; padding-top: 0; }
.cta__text .cta__alt { color: #9fb4cb; font-size: 0.8rem; margin: 18px 0 0; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 460px) { .cta-form__row { grid-template-columns: 1fr; } }
.cta__alt a { color: #bcd6ee; font-weight: 700; text-decoration: underline; }
.cta__alt a:hover { color: #fff; }
.cta-form {
  background: #fff; border-radius: var(--radius); padding: 22px;
  box-shadow: 0 26px 52px -22px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; gap: 10px;
}
.cta-form__title { font-size: 1.18rem; color: var(--text); margin-bottom: 2px; }
.cta-form__field {
  width: 100%; font-family: inherit; font-size: 0.95rem;
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px;
  background: var(--surface-2); color: var(--text);
}
.cta-form__field::placeholder { color: var(--text-mute); }
.cta-form__field:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
textarea.cta-form__field { resize: vertical; min-height: 58px; }
.cta-form .btn--primary.cta-form__btn { background: var(--accent-dark); color: #fff; justify-content: center; box-shadow: 0 12px 24px -12px rgba(21,49,92,0.5); }
.cta-form .btn--primary.cta-form__btn:hover { background: var(--accent); }
.cta-form .form-status { font-size: 0.82rem; color: var(--accent); margin: 0; }
.cta-form .form-status:empty { display: none; }
@media (max-width: 820px) { .cta__grid { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- Formulario ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--text); font-family: var(--font-head); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,69,133,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 0.82rem; color: var(--text-mute); }
.consent {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 0.86rem; color: var(--text-soft);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  width: 18px; height: 18px; flex: none; margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent-dark); font-weight: 600; }
.consent a:hover { text-decoration: underline; }

/* Tarjetas de contacto */
.contact-info { display: grid; gap: 16px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.info-card__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--accent-dark);
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 0.96rem; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--text-soft); font-size: 0.92rem; word-break: break-word; }
.info-card a:hover { color: var(--accent-dark); }

/* ---------- Page hero (interior) con foto de fondo ---------- */
.page-hero {
  min-height: clamp(300px, 36vw, 420px);
  display: flex; align-items: center;
  padding: 44px 0;
  position: relative; overflow: hidden;
  background: var(--ink-footer);
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(11,28,49,0.94) 0%, rgba(11,28,49,0.80) 45%, rgba(20,46,82,0.55) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 20ch; margin-bottom: 18px; }
.page-hero p { color: #cdd9e6; max-width: 62ch; font-size: 1.1rem; }

/* Breadcrumb */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.84rem; color: var(--text-mute); margin-bottom: 22px; }
.crumbs a:hover { color: var(--accent-dark); }
.crumbs span { color: var(--text-soft); }
.page-hero .crumbs { color: #93aac4; }
.page-hero .crumbs a { color: #cdd9e6; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs span { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-footer);
  color: #cfe3e0;
  padding: 46px 0 26px;
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { color: #7fa39d; }
.footer-min {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px 40px; flex-wrap: wrap; margin-bottom: 30px;
}
.footer-min__links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-min__links a { position: relative; color: #c4dbd7; font-size: 0.95rem; font-weight: 600; transition: color 0.2s var(--ease); }
.footer-min__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: #8fd3b6; border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.footer-min__links a:hover { color: #fff; }
.footer-min__links a:hover::after { transform: scaleX(1); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr;
  gap: 40px 56px;
  margin-bottom: 36px;
}
.footer-brand p { color: #9fc0bb; font-size: 0.92rem; margin: 16px 0; max-width: 38ch; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #7fa39d; margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; color: #b9d3cf; font-size: 0.92rem; }
.footer-col a, .footer-col p { color: #b9d3cf; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: #7fa39d; font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-legal a { color: #9fc0bb; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 9px; color: #b9d3cf; font-size: 0.9rem; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 17px; height: 17px; color: #8fd3b6; flex: none; }
.footer-col--cta .footer-cta-p { color: #9fc0bb; font-size: 0.9rem; line-height: 1.5; margin: 0 0 16px; }
.footer-btn { background: #2a62bd; color: #fff; }
.footer-btn:hover { background: #1f4f9e; color: #fff; }
.footer-brands {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  padding: 22px 0; margin-bottom: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brands__label { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: #7fa39d; }
.footer-brands__list { color: #c4dbd7; font-size: 0.92rem; font-weight: 600; }

/* ---------- Aviso ---------- */
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--amber-soft);
  border: 1px solid #f3d499;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: #7a5410;
  font-size: 0.93rem;
}
.notice svg { width: 20px; height: 20px; flex: none; color: #d8901a; margin-top: 2px; }

/* ---------- Animación de entrada ---------- */
/* Solo se oculta si el JS está activo (clase .js en <html>); sin JS, todo visible. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 560px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
  .brands { grid-template-columns: repeat(4, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

/* Menú hamburguesa: aparece antes (≤1024px) por la cantidad de enlaces */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px;
    transform: translateY(-130%);
    transition: transform 0.32s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin: 6px 0 0; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero__media .float-card { left: 12px; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .hero-full__stats { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
