/* ===========================================================
   FRAJMAC — Sistema de diseño web
   Marca: azul #0075BD · navy #004874 · lima #B4CC16 (acento) · blanco
   Display: Outfit (sustituto de Lemon Milk) · Cuerpo: Montserrat
   =========================================================== */

:root {
  /* Brand */
  --navy-900: #001b33;
  --navy-800: #022a49;
  --navy:     #004874;
  --blue:     #0075bd;
  --blue-600: #0064a4;
  --lime:     #b4cc16;
  --lime-700: #9bb00d;

  /* Neutrals (cool whites / slate) */
  --ink:      #112233;
  --slate:    #51626f;
  --slate-2:  #6b7a86;
  --line:     #e2e9ef;
  --line-2:   #eef3f8;
  --bg:       #ffffff;
  --soft:     #f4f8fb;
  --soft-2:   #eaf1f7;

  --font-display: 'Outfit', 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(2, 42, 73, .06), 0 4px 14px rgba(2, 42, 73, .05);
  --shadow:    0 12px 34px rgba(2, 42, 73, .10);
  --shadow-lg: 0 30px 70px rgba(2, 42, 73, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--navy-900); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.section--navy { background: var(--navy-900); color: #cfe0ee; }
.section--soft { background: var(--soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block; }
.section--navy .eyebrow { color: #6fc4ff; }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
h2.title { font-size: clamp(1.85rem, 3.6vw, 2.9rem); margin: 18px 0 14px; }
.section--navy h2.title { color: #fff; }
.lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--slate); max-width: 60ch; }
.section--navy .lead { color: #a9c4dc; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-cta { background: var(--lime); color: var(--navy-900); box-shadow: 0 10px 24px rgba(180, 204, 22, .32); }
.btn-cta:hover { background: #c2da1f; box-shadow: 0 16px 32px rgba(180, 204, 22, .4); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-600); box-shadow: 0 14px 30px rgba(0, 117, 189, .3); }
.btn-outline { background: transparent; color: var(--navy); border-color: #c6d6e3; }
.btn-outline:hover { border-color: var(--navy); background: #fff; }
.btn-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); }
.btn-wa { background: #25d366; color: #04331a; }
.btn-wa:hover { background: #1fce5f; box-shadow: 0 14px 30px rgba(37, 211, 102, .35); }
.btn-sm { padding: 11px 20px; font-size: .875rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); font-size: .92rem; transition: gap .2s var(--ease); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover { gap: 12px; }

/* ---------- Top bar + Nav ---------- */
.topbar {
  background: var(--navy-900); color: #9fc1da;
  font-size: .8rem; letter-spacing: .01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar a { color: #cfe2f2; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
.topbar svg { width: 15px; height: 15px; color: var(--lime); }
.tb-hide { }

.nav {
  position: sticky; top: 0; z-index: 70;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.nav-logo { flex: none; }
.nav-logo img { height: 38px; width: auto; max-width: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .93rem; color: #25425a;
  transition: background .2s, color .2s;
}
.nav-links > li > a:hover { background: var(--soft); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy); }
.nav-toggle svg { width: 28px; height: 28px; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px; width: 320px; opacity: 0; visibility: hidden; transition: .22s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: flex; gap: 12px; padding: 10px 12px; border-radius: 10px; transition: background .18s; }
.drop a:hover { background: var(--soft); }
.drop .di { width: 36px; height: 36px; flex: none; border-radius: 9px; background: var(--soft-2); display: grid; place-items: center; color: var(--blue); }
.drop .di svg { width: 19px; height: 19px; }
.drop b { display: block; font-family: var(--font-display); font-size: .92rem; color: var(--navy-900); }
.drop span { font-size: .78rem; color: var(--slate-2); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(380px, 86vw); background: #fff; z-index: 90;
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mm-head img { height: 34px; }
.mobile-menu a.mm-link { padding: 14px 12px; border-bottom: 1px solid var(--line-2); font-weight: 600; color: #25425a; }
.mobile-menu .btn { width: 100%; margin-top: 10px; }
.scrim { position: fixed; inset: 0; background: rgba(0,27,51,.45); z-index: 85; opacity: 0; visibility: hidden; transition: .3s; }
.scrim.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(120% 120% at 80% 0%, #023e6b 0%, var(--navy-900) 55%); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 12% 18%, rgba(0,117,189,.35), transparent 70%),
    radial-gradient(30% 40% at 95% 85%, rgba(180,204,22,.10), transparent 70%);
  pointer-events: none;
}
.hero-grid-tex { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  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: 56px 56px; mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 75%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 84px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); font-size: .8rem; font-weight: 600; color: #cfe6fb;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(180,204,22,.22); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 4rem); margin: 22px 0 0; letter-spacing: -.025em; }
.hero h1 .hi { color: var(--lime); }
.hero h1 .hi2 { color: #5cb8f5; }
.hero-sub { margin: 22px 0 0; font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: #b6cee2; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--font-display); font-size: 1.7rem; color: #fff; line-height: 1; }
.hero-trust .ht span { font-size: .78rem; color: #93b2cb; margin-top: 6px; letter-spacing: .02em; }
.hero-trust .ht b .u { color: var(--lime); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual img { width: min(100%, 460px); filter: drop-shadow(0 30px 60px rgba(0,0,0,.45)); animation: floaty 7s ease-in-out infinite; }
.hero-ring { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; border: 1px dashed rgba(255,255,255,.16); animation: spin 60s linear infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-chip {
  position: absolute; background: rgba(255,255,255,.96); color: var(--navy-900); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px; font-size: .82rem; font-weight: 600;
}
.hero-chip svg { width: 26px; height: 26px; color: var(--blue); flex: none; }
.hero-chip.c1 { top: 8%; left: -3%; }
.hero-chip.c2 { bottom: 10%; right: -4%; }
.hero-chip small { display: block; color: var(--slate-2); font-weight: 600; font-size: .72rem; }

/* ---------- Trust / brands ---------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust .container { padding-top: 30px; padding-bottom: 30px; }
.trust-label { text-align: center; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; margin-bottom: 22px; }
.brand-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 64px); }
.brand-row .bm { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); color: #9fb0bd; letter-spacing: .02em; transition: color .25s; }
.brand-row .bm:hover { color: var(--navy); }

.cert-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }
.cert {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--soft); font-size: .82rem; font-weight: 600; color: #3a5163;
}
.cert svg { width: 17px; height: 17px; color: var(--lime-700); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pillar {
  position: relative; border-radius: 22px; padding: 38px; overflow: hidden;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar.sell { background: linear-gradient(180deg, #f3f9fd, #fff); }
.pillar.serv { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: #cfe0ee; border-color: transparent; }
.pillar .pnum { font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .14em; opacity: .6; }
.pillar.serv .pnum { color: #8fd0ff; opacity: 1; }
.pill-ico { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; margin: 16px 0 18px; }
.pillar.sell .pill-ico { background: rgba(0,117,189,.1); color: var(--blue); }
.pillar.serv .pill-ico { background: rgba(180,204,22,.16); color: var(--lime); }
.pill-ico svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.6rem; margin-bottom: 12px; }
.pillar.serv h3 { color: #fff; }
.pillar p { color: var(--slate); font-size: .98rem; }
.pillar.serv p { color: #a9c4dc; }
.pill-list { display: grid; gap: 11px; margin: 22px 0 28px; }
.pill-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: #33485a; }
.pillar.serv .pill-list li { color: #bcd3e6; }
.pill-list svg { width: 19px; height: 19px; flex: none; margin-top: 1px; color: var(--lime-700); }
.pillar.serv .pill-list svg { color: var(--lime); }
.pill-tag { position: absolute; top: 26px; right: 28px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.pillar.sell .pill-tag { background: rgba(0,117,189,.1); color: var(--blue); }
.pillar.serv .pill-tag { background: rgba(180,204,22,.18); color: var(--lime); }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; box-shadow: var(--shadow-sm);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe0ee; }
.prod-media { position: relative; aspect-ratio: 4 / 3; background: radial-gradient(120% 120% at 50% 20%, #fbfdff, #eef4f9); display: grid; place-items: center; padding: 24px; }
.prod-media img { max-height: 100%; width: auto; object-fit: contain; transition: transform .4s var(--ease); mix-blend-mode: multiply; }
.prod-card:hover .prod-media img { transform: scale(1.06); }
.prod-cat { position: absolute; top: 14px; left: 14px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: rgba(255,255,255,.92); padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.prod-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.18rem; }
.prod-body p { color: var(--slate); font-size: .9rem; margin: 9px 0 16px; flex: 1; }
.prod-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.prod-meta span { font-size: .72rem; font-weight: 600; color: #45617a; background: var(--soft); border: 1px solid var(--line); padding: 5px 10px; border-radius: 7px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-2); }

/* ---------- Maintenance ---------- */
.maint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.maint-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mcard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; transition: transform .3s var(--ease), background .3s; }
.mcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.mcard .mi { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,117,189,.2); color: #7fc6ff; display: grid; place-items: center; margin-bottom: 16px; }
.mcard .mi svg { width: 25px; height: 25px; }
.mcard h4 { color: #fff; font-size: 1.08rem; font-family: var(--font-display); margin-bottom: 8px; }
.mcard p { font-size: .85rem; color: #a4c0d8; line-height: 1.55; }
.maint-note { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; padding: 14px 20px; border-radius: 14px; background: rgba(180,204,22,.12); border: 1px solid rgba(180,204,22,.28); color: #dbe9a6; font-size: .9rem; font-weight: 600; }
.maint-note svg { width: 24px; height: 24px; color: var(--lime); flex: none; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 30px; border-radius: 18px; border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s; box-shadow: var(--shadow-sm); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-ico { width: 52px; height: 52px; border-radius: 13px; background: var(--soft-2); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.why-ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.why-card p { font-size: .9rem; color: var(--slate); }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
}
.testi .qmark { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--soft-2); margin-bottom: 6px; }
.testi-type { position: absolute; top: 26px; right: 26px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px; }
.testi-type.v { background: rgba(0,117,189,.1); color: var(--blue); }
.testi-type.m { background: rgba(180,204,22,.18); color: var(--lime-700); }
.testi p.quote { font-size: .96rem; color: #2c4255; line-height: 1.6; flex: 1; }
.stars { display: flex; gap: 3px; margin: 16px 0; color: var(--lime); }
.stars svg { width: 17px; height: 17px; }
.testi-person { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.testi-person .ph { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--soft-2); display: grid; place-items: center; font-family: var(--font-display); color: var(--navy); font-weight: 700; }
.testi-person b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--navy-900); }
.testi-person span { font-size: .8rem; color: var(--slate-2); }

/* ---------- Process ---------- */
.proc-tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 44px; }
.proc-tab { padding: 11px 24px; border-radius: 999px; border: 0; background: transparent; font-weight: 700; font-size: .92rem; color: var(--slate); transition: .25s var(--ease); }
.proc-tab.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.proc-tab.active.serv { background: var(--navy-900); color: #fff; }
.proc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.proc-step { position: relative; padding: 0 22px; }
.proc-step:not(:last-child)::after { content: ""; position: absolute; top: 28px; left: 60%; right: -40%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.proc-num { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); color: var(--blue); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; position: relative; z-index: 2; }
.proc-step h4 { font-family: var(--font-display); font-size: 1.05rem; margin: 20px 0 8px; color: var(--navy-900); }
.proc-step p { font-size: .86rem; color: var(--slate); }
.proc-panel[hidden] { display: none; }

/* ---------- Catalog ---------- */
.cat-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; border-radius: 24px; background: linear-gradient(120deg, var(--navy-900), var(--navy-800)); color: #cfe0ee; padding: clamp(34px, 5vw, 60px); overflow: hidden; position: relative; }
.cat-wrap::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(0,117,189,.4), transparent 70%); }
.cat-wrap h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cat-list { display: grid; gap: 12px; margin: 24px 0 30px; position: relative; z-index: 2; }
.cat-list li { display: flex; gap: 11px; align-items: center; font-size: .94rem; color: #bcd3e6; }
.cat-list svg { width: 20px; height: 20px; color: var(--lime); flex: none; }
.cat-actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 2; }
.cat-doc { position: relative; z-index: 2; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 28px; }
.cat-doc .doc-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cat-doc .doc-row:last-child { border-bottom: 0; }
.cat-doc .doc-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #ff8b8b; flex: none; }
.cat-doc .doc-ico svg { width: 22px; height: 22px; }
.cat-doc b { color: #fff; font-family: var(--font-display); font-size: .96rem; display: block; }
.cat-doc span { font-size: .78rem; color: #93b2cb; }
.cat-doc .doc-dl { margin-left: auto; color: #8fd0ff; }
.cat-doc .doc-dl svg { width: 22px; height: 22px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.astat { padding: 22px; border-radius: 14px; background: var(--soft); border: 1px solid var(--line); }
.astat b { font-family: var(--font-display); font-size: 2rem; color: var(--navy); display: block; line-height: 1; }
.astat span { font-size: .82rem; color: var(--slate); margin-top: 7px; display: block; }
.about-visual { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; background: var(--navy-900); }
.about-visual .ph-img { position: absolute; inset: 0; display: grid; place-items: center; color: #3e5e7c; }
.mv-cards { display: grid; gap: 14px; margin-top: 6px; }
.mv { display: flex; gap: 14px; padding: 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.mv .mvi { width: 42px; height: 42px; border-radius: 11px; background: var(--soft-2); color: var(--blue); display: grid; place-items: center; flex: none; }
.mv .mvi svg { width: 22px; height: 22px; }
.mv b { font-family: var(--font-display); color: var(--navy-900); font-size: .98rem; }
.mv p { font-size: .85rem; color: var(--slate); margin-top: 3px; }

/* ---------- Final CTA / form ---------- */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 66px); align-items: start; }
.cta-points { display: grid; gap: 18px; margin-top: 30px; }
.cta-point { display: flex; gap: 14px; }
.cta-point .cpi { width: 46px; height: 46px; border-radius: 12px; background: rgba(180,204,22,.16); color: var(--lime); display: grid; place-items: center; flex: none; }
.cta-point .cpi svg { width: 23px; height: 23px; }
.cta-point b { color: #fff; font-family: var(--font-display); font-size: 1rem; }
.cta-point p { color: #a9c4dc; font-size: .88rem; margin-top: 3px; }
.form-card { background: #fff; border-radius: 22px; padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .fsub { color: var(--slate); font-size: .9rem; margin-bottom: 22px; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; }
.seg .segbox { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; transition: .2s; font-weight: 600; font-size: .9rem; color: #45617a; }
.seg .segbox svg { width: 20px; height: 20px; color: var(--slate-2); }
.seg input:checked + .segbox { border-color: var(--blue); background: rgba(0,117,189,.05); color: var(--navy); }
.seg input:checked + .segbox svg { color: var(--blue); }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: #3a5163; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font: inherit; font-size: .92rem; color: var(--ink);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,117,189,.12); }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field.row2 > div { display: flex; flex-direction: column; }
.form-card .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: .76rem; color: var(--slate-2); text-align: center; margin-top: 14px; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; }
.form-ok .oki { width: 64px; height: 64px; border-radius: 50%; background: rgba(180,204,22,.16); color: var(--lime-700); display: grid; place-items: center; margin: 0 auto 18px; }
.form-ok .oki svg { width: 34px; height: 34px; }
.invalid input, .invalid select, .invalid textarea { border-color: #e2574c !important; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #9fc1da; padding: clamp(54px, 6vw, 80px) 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.foot-logo { height: 38px; width: auto; margin-bottom: 18px; background: #fff; padding: 9px 13px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.footer p.fdesc { font-size: .88rem; color: #8fb0cb; max-width: 32ch; }
.foot-soc { display: flex; gap: 10px; margin-top: 20px; }
.foot-soc a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cfe2f2; transition: .2s; }
.foot-soc a:hover { background: var(--blue); color: #fff; }
.foot-soc svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.foot-links li { margin-bottom: 11px; }
.foot-links a { font-size: .88rem; color: #9fc1da; transition: color .2s, padding .2s; }
.foot-links a:hover { color: #fff; padding-left: 4px; }
.foot-contact li { display: flex; gap: 11px; font-size: .88rem; margin-bottom: 14px; align-items: flex-start; }
.foot-contact svg { width: 18px; height: 18px; color: var(--lime); flex: none; margin-top: 2px; }
.foot-map { margin-top: 6px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); height: 150px; filter: grayscale(.3) brightness(.9); }
.foot-map iframe { width: 100%; height: 100%; border: 0; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .8rem; color: #7e9fba; }
.foot-bottom a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 0; }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .25s var(--ease); position: relative; }
.wa-btn:hover { transform: scale(1.07); }
.wa-btn svg { width: 32px; height: 32px; color: #fff; }
.wa-btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-tip { position: absolute; right: 72px; background: #fff; color: var(--navy-900); padding: 10px 16px; border-radius: 12px; box-shadow: var(--shadow); font-size: .82rem; font-weight: 600; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: .25s var(--ease); pointer-events: none; }
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn-cta, .topbar .tb-left { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin-inline: auto; }
  .hero-chip.c1 { left: 2%; } .hero-chip.c2 { right: 2%; }
  .prod-grid, .why-grid, .testi-track { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .proc-step:not(:last-child)::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-cta, .topbar .tb-left { display: none; }
  .nav-toggle { display: inline-flex; }
  .pillars, .maint-grid, .cat-wrap, .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .maint-cards { grid-template-columns: 1fr 1fr; }
  .about-visual { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  .prod-grid, .why-grid, .testi-track, .maint-cards, .about-stats, .seg { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .field.row2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .pillar { padding: 28px; }
  .hero-chip { display: none; }
  .testi-type { position: static; align-self: flex-start; margin-bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   PREMIUM ENHANCEMENTS
   =========================================================== */

/* --- Brand-cross watermark on navy sections --- */
.section--navy { position: relative; overflow: hidden; }
.section--navy > .container { position: relative; z-index: 2; }
.section--navy::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -8%; right: -6%; width: min(46vw, 560px); aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M38 2h24v36h36v24H62v36H38V62H2V38h36z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: .03; transform: rotate(8deg);
}
.section--navy.no-mark::before { display: none; }

/* --- CTA glow + shimmer sweep --- */
.btn-cta { position: relative; overflow: hidden; isolation: isolate; }
.btn-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,.55) 50%, transparent 62%, transparent 100%);
  transform: translateX(-120%); transition: none;
}
.btn-cta:hover::after { animation: ctaSheen .8s var(--ease) forwards; }
@keyframes ctaSheen { to { transform: translateX(120%); } }
.btn-cta.glow { animation: ctaGlow 3.2s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(180,204,22,.32); }
  50% { box-shadow: 0 10px 28px rgba(180,204,22,.5), 0 0 0 4px rgba(180,204,22,.12); }
}

/* --- 3D tilt scaffolding --- */
.prod-grid { perspective: 1400px; }
.prod-card { transform-style: preserve-3d; will-change: transform; }
.prod-card.tilt { transition: transform .12s ease-out, box-shadow .3s var(--ease), border-color .3s; }
.prod-card .prod-media img { transform: translateZ(0); transition: transform .4s var(--ease); }

/* --- Count-up: avoid layout jump --- */
.hero-trust .ht b, .about-stats .astat b, .tiein-stats .ts b { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .btn-cta.glow { animation: none !important; }
  .btn-cta:hover::after { animation: none !important; }
  .prod-card.tilt { transition: box-shadow .3s, border-color .3s !important; }
}

/* ===========================================================
   ACCESIBILIDAD + PULIDO (auditoría 2026-07-04)
   =========================================================== */

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--navy-900); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 700; font-size: .9rem; }
.skip-link:focus { left: 0; }

/* Foco visible consistente (teclado) */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-color: var(--navy-900); }
.section--navy :focus-visible, .footer :focus-visible, .lhero :focus-visible { outline-color: var(--lime); }

/* Radios segmentados del formulario: foco visible */
.seg input:focus-visible + .segbox { outline: 3px solid var(--blue); outline-offset: 2px; }

/* Menú móvil cerrado: fuera del orden de tabulación */
.mobile-menu { visibility: hidden; transition: transform .35s var(--ease), visibility 0s .35s; }
.mobile-menu.open { visibility: visible; transition: transform .35s var(--ease); }

/* Mensajes de error del formulario */
.f-error { color: #c0392b; font-size: .78rem; font-weight: 600; margin-top: 6px; min-height: 0; }
.f-error:empty { display: none; }

/* Contraste: textos secundarios y marcas */
:root { --slate-2: #5d6e7b; }
.brand-row .bm { color: #71838f; }

/* Topbar: badge de ubicación ya no es link */
.tb-loc { color: #cfe2f2; display: inline-flex; align-items: center; gap: 7px; }

/* Imagen de la sección Nosotros (interina) */
.about-visual { background: var(--soft-2); }

/* ===========================================================
   CRAFT PASS — pulido de interacción y motion (2026-07-11)
   Filosofía: Emil Kowalski (design engineering) + Apple (fluid motion).
   Reglas: animar solo transform/opacity · feedback al presionar ·
   hover solo con puntero fino · easing con carácter · tipografía por
   tamaño · sombras en capas · restraint (crisp & fast, no adornos).
   Todo aditivo: la cascada sobrescribe sin tocar reglas previas.
   =========================================================== */

:root {
  /* Curvas con carácter — las CSS por defecto son "débiles" (Emil) */
  --ease-out:    cubic-bezier(.23, 1, .32, 1);     /* entradas y feedback */
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);    /* movimiento en pantalla */
  --ease-soft:   cubic-bezier(.32, .72, 0, 1);     /* drawers / paneles (iOS) */

  /* Sombras en CAPAS — una sombra sola se ve plana; dos+ leen como profundidad real */
  --shadow-sm: 0 1px 2px rgba(2,42,73,.05), 0 3px 8px rgba(2,42,73,.05);
  --shadow:    0 2px 6px rgba(2,42,73,.06), 0 16px 36px rgba(2,42,73,.10);
  --shadow-lg: 0 6px 18px rgba(2,42,73,.10), 0 36px 74px rgba(2,42,73,.15);
}

/* --- Tipografía: tracking por tamaño (Apple) + wrap inteligente --- */
h1                { letter-spacing: -.032em; }
h2, h2.title      { letter-spacing: -.026em; }
h3                { letter-spacing: -.018em; }
h4                { letter-spacing: -.012em; }
h1, h2, h3, h4    { text-wrap: balance; }   /* títulos equilibrados, sin huérfanas */
p, .lead, .hero-sub { text-wrap: pretty; }  /* evita palabra sola en la última línea */

/* --- Botones: feedback INSTANTÁNEO al presionar (Emil: obligatorio) --- */
.btn {
  transition: transform .18s var(--ease-out), box-shadow .22s var(--ease-out),
              background .18s, color .18s, border-color .18s;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn:active { transform: scale(.97); transition-duration: .1s; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover        { transform: translateY(-2px); }
  .btn:hover:active { transform: translateY(-1px) scale(.98); }
}
@media (hover: none) { .btn:hover { transform: none; } }  /* no falsos hover en táctil */

/* press sutil en el resto de elementos presionables */
.link-arrow:active, .foot-soc a:active, .nav-links > li > a:active,
.proc-tab:active, .cert:active, .doc-dl:active { transform: scale(.96); }
.foot-soc a, .cert, .doc-dl, .proc-tab { transition: transform .16s var(--ease-out), background .2s, color .2s, border-color .2s; }

/* --- Tarjetas: hover-lift SOLO con puntero fino; press glued en táctil --- */
@media (hover: none) {
  .prod-card:hover, .pillar:hover, .why-card:hover, .mcard:hover,
  .prod-card:hover .prod-media img { transform: none; }
}
.prod-card { transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .28s; }
.prod-card:active { transform: translateY(-2px) scale(.995); transition-duration: .1s; }

/* --- Nav: subrayado animado desde la izquierda (origin-aware) --- */
.nav-links > li > a { position: relative; }
.nav-links > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--blue); border-radius: 2px; opacity: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .24s var(--ease-out), opacity .24s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-links > li > a:hover { background: transparent; }
  .nav-links > li > a:hover::after { transform: scaleX(1); opacity: 1; }
}

/* --- Dropdown y chips: escalar desde su origen, no desde el centro (Emil) --- */
.drop { transform-origin: top center; }

/* --- Campos de formulario: foco con carácter --- */
.field input, .field select, .field textarea {
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s;
}
.seg .segbox { transition: border-color .18s var(--ease-out), background .18s, color .18s, transform .1s var(--ease-out); }
.seg label:active .segbox { transform: scale(.98); }

/* --- WhatsApp flotante: press --- */
.wa-btn { transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.wa-btn:active { transform: scale(.93); }

/* --- Reveal on-scroll: más ajustado y con ease-out (entradas rápidas al inicio) --- */
.reveal { transform: translateY(18px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }

/* --- Nav material: borde de scroll suave en vez de sombra dura --- */
.nav.scrolled { box-shadow: 0 1px 0 rgba(2,42,73,.05), 0 10px 26px rgba(2,42,73,.07); }

/* --- Enlaces del footer: subrayado en vez de salto de padding (menos jarring) --- */
.foot-links a { transition: color .18s var(--ease-out); }
.foot-links a:hover { padding-left: 0; }

/* --- Respeta reduced-motion: sin movimiento, feedback solo por opacidad/color --- */
@media (prefers-reduced-motion: reduce) {
  .btn:active, .btn:hover, .prod-card:active, .wa-btn:active,
  .link-arrow:active, .foot-soc a:active, .seg label:active .segbox { transform: none; }
  .nav-links > li > a::after { transition: opacity .2s ease; }
}

/* ===========================================================
   CARRUSEL DE EQUIPOS (global) — slides horizontales premium
   Usado en la home (#destacados) y en páginas de equipos.
   Los slides viven completos en el HTML (SEO-safe); JS en app.js.
   =========================================================== */
.mcarousel { position: relative; }
.mcar-vp { overflow: hidden; border-radius: 20px; }
.mcar-track { display: flex; transition: transform .55s var(--ease-in-out); }
.mcar-slide { min-width: 100%; box-sizing: border-box; padding: 2px; }

/* Slide = tarjeta horizontal: imagen izquierda, contenido derecha */
.mcar-slide .model {
  display: grid; grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(20px, 3.5vw, 40px); align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm);
}
.mcar-slide .model:hover { transform: none; box-shadow: var(--shadow-sm); } /* sin lift dentro del carrusel: evita jitter */
.mcar-slide .model-media {
  display: flex; align-items: center; justify-content: center;
  height: clamp(230px, 26vw, 320px); margin: 0; align-self: stretch;
  background: radial-gradient(120% 120% at 50% 30%, #fbfdff, #eef4f9);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; padding: 18px;
}
.mcar-slide .model-media img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.mcar-slide .model-body { min-width: 0; }
.mcar-slide .model .link-arrow { margin-top: 14px; }

/* Estilos internos del slide — autosuficientes (la home no carga landings.css) */
.mcar-slide .model .mt { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.mcar-slide .model h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); margin: 8px 0 6px; color: var(--navy-900); }
.mcar-slide .model p { font-size: .93rem; color: var(--slate); margin: 0 0 14px; }
.mcar-slide .model ul { display: grid; gap: 8px; margin: 0 0 4px; padding: 0; list-style: none; }
.mcar-slide .model li { display: flex; gap: 9px; font-size: .88rem; color: #33485a; align-items: flex-start; }
.mcar-slide .model li svg { width: 17px; height: 17px; color: var(--lime-700); flex: none; margin-top: 2px; }

/* Flechas: centradas verticalmente, con press feedback */
.mcar-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.95); color: var(--navy-900); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 2;
  font-size: 23px; line-height: 1;
  transition: background .2s, color .2s, transform .16s var(--ease-out), box-shadow .2s;
}
.mcar-btn:hover { background: var(--navy-900); color: #fff; box-shadow: var(--shadow); }
.mcar-btn:active { transform: translateY(-50%) scale(.92); }
.mcar-prev { left: 12px; } .mcar-next { right: 12px; }
.mcar-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.mcar-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: width .25s var(--ease-out), background .25s; }
.mcar-dot.on { background: var(--blue); width: 24px; border-radius: 5px; }

@media (max-width: 860px) {
  .mcar-slide .model { display: block; padding: 18px; }
  .mcar-slide .model-media { height: 200px; margin-bottom: 16px; align-self: auto; }
  .mcar-btn { top: 100px; transform: none; width: 36px; height: 36px; }
  .mcar-btn:active { transform: scale(.92); }
}
@media (prefers-reduced-motion: reduce) {
  .mcar-track { transition: none; }
}

/* ---- Franja de características (reemplaza a la tabla apretada) ---- */
.spec-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 12px; }
.spec-item { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 15px 17px; }
.spec-item .k { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 5px; }
.spec-item .v { display: block; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--navy-900); line-height: 1.35; }
