/* =========================================================
   Acenox Kitchen Equipment — Tema Claro "Arctic Clean"
   Fondo blanco · Acento teal/navy · B2B profesional
   Tipografía: Space Grotesk + Inter Tight (Google Fonts)
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter+Tight:wght@400;500;600;700;800&display=swap");

:root {
  /* Superficie */
  --bg:        #ffffff;
  --bg-2:      #f0f7fb;
  --bg-3:      #e4f0f6;
  --surface:   #ffffff;
  --surface-2: #f8fbfd;

  /* Texto */
  --ink:       #071c28;
  --ink-2:     #1a3a4f;
  --muted:     #5a7d8e;
  --muted-2:   #3d5a70;

  /* Acento principal */
  --teal:      #0891b2;
  --teal-2:    #0ea5c4;
  --teal-3:    #22d3ee;
  --teal-bg:   rgba(8, 145, 178, 0.08);
  --teal-glow: rgba(8, 145, 178, 0.18);

  /* Ámbar */
  --amber:     #d97706;
  --amber-2:   #f59e0b;

  /* Bordes */
  --line:        rgba(8, 40, 60, 0.1);
  --line-strong: rgba(8, 40, 60, 0.18);

  /* Sombras */
  --shadow:      0 24px 60px rgba(8, 28, 45, 0.12);
  --shadow-soft: 0 10px 32px rgba(8, 28, 45, 0.08);

  /* Misc */
  --white:   #ffffff;
  --radius:  10px;
  --radius-sm: 8px;
  --max:     1400px;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);

  /* Ritmo vertical */
  --home-section-y: clamp(72px, 8vw, 112px);
  --home-section-y-tight: clamp(48px, 5.6vw, 76px);
  --section-head-gap: clamp(34px, 4vw, 48px);
  --section-head-gap-compact: clamp(28px, 3.2vw, 40px);
  --section-content-gap: clamp(28px, 3.5vw, 40px);
  --page-hero-height: clamp(420px, 38vw, 520px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter Tight", "Trebuchet MS", sans-serif;
  line-height: 1.62;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
::selection { background: var(--teal); color: #fff; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: linear-gradient(180deg, rgba(2, 24, 60, .82), rgba(2, 24, 60, .34) 72%, transparent);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 14px 40px rgba(2, 12, 18, 0.05);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; gap: 16px; min-width: 168px; }
.brand img {
  width: 158px;
  height: auto;
  filter: none;
  transition: filter .28s var(--ease), opacity .28s var(--ease);
}
.brand-note {
  display: block;
  max-width: 265px;
  padding-left: 16px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  transition: color .28s var(--ease), border-color .28s var(--ease), text-shadow .28s var(--ease);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: color .28s var(--ease), background-color .28s var(--ease), border-color .28s var(--ease);
}
.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s ease;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
.site-header .nav-toggle[aria-expanded="true"] {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.main-nav {
  display: flex; align-items: center; gap: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
}
.main-nav a {
  position: relative; padding: 10px 15px;
  border-radius: var(--radius-sm);
  color: var(--muted-2);
  transition: color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute;
  left: 15px; right: 15px; bottom: 5px; height: 2px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.main-nav a:hover {
  color: var(--teal);
  background: transparent;
  box-shadow: none;
}
.main-nav a.is-active {
  color: var(--teal);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

/* Submenú */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a .caret {
  display: inline-block; margin-left: 5px; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .28s var(--ease);
  vertical-align: middle;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px;
  display: grid; gap: 2px; padding: 8px;
  border: 1px solid var(--line-strong); border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover > a .caret,
.nav-item:focus-within > a .caret { transform: translateY(0) rotate(-135deg); }
.nav-dropdown a {
  padding: 11px 14px; border-radius: 10px;
  color: var(--muted-2); font-size: .8rem; text-transform: none;
}
.nav-dropdown a::after {
  display: none;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--teal);
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.site-header:not(.is-scrolled) .brand {
  min-width: 320px;
}
.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(0,0,0,.28));
}
.site-header:not(.is-scrolled) .brand-note {
  display: block;
  border-left-color: rgba(255,255,255,.55);
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.site-header:not(.is-scrolled) .main-nav a {
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.site-header:not(.is-scrolled) .main-nav a:hover {
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.site-header:not(.is-scrolled) .main-nav a.is-active {
  color: #fff;
}
.site-header:not(.is-scrolled) .main-nav a::after {
  background: #fff;
}
.site-header:not(.is-scrolled) .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header:not(.is-scrolled) .nav-cta:hover {
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  box-shadow: none;
}
.site-header:not(.is-scrolled) .nav-toggle {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.38);
}
.site-header:not(.is-scrolled) .nav-dropdown {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
}
.site-header:not(.is-scrolled) .main-nav .nav-dropdown a {
  color: var(--ink-2);
  background: transparent;
  box-shadow: none;
  text-shadow: none;
}
.site-header:not(.is-scrolled) .main-nav .nav-dropdown a::after {
  background: var(--teal);
}
.site-header:not(.is-scrolled) .main-nav .nav-dropdown a:hover,
.site-header:not(.is-scrolled) .main-nav .nav-dropdown a:focus-visible {
  color: var(--teal);
  background: transparent;
  box-shadow: none;
}

/* ============================================================
   BOTONES
   ============================================================ */
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  cursor: pointer;
  transition: box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}
.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: .84rem;
}
.btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: .94rem;
}
.nav-cta, .btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  box-shadow: none;
}
.nav-cta:hover, .btn.primary:hover { box-shadow: none; }

@media (min-width: 1280px) and (max-width: 1600px) {
  .nav-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: .78rem;
  }
}
.btn.secondary {
  color: var(--ink); background: var(--bg-2); border-color: var(--line-strong);
}
.btn.secondary:hover { background: var(--bg-3); }
.btn.whatsapp {
  color: #fff;
  background: #075e54;
  border-color: #075e54;
  box-shadow: none;
}
.btn.whatsapp:hover {
  color: #fff;
  background: #064c45;
  border-color: #064c45;
  box-shadow: none;
}
.btn-whatsapp-icon {
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 auto;
  fill: currentColor;
}
.btn.whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .38);
  outline-offset: 3px;
}
.btn.ghost {
  color: var(--teal); background: transparent; border-color: rgba(8,145,178,.35);
}
.btn.ghost:hover { color: #fff; background: var(--teal); }
.btn.amber {
  color: #fff; background: linear-gradient(135deg, var(--amber-2), var(--amber));
  box-shadow: 0 10px 28px rgba(217,119,6,.24);
}
.btn.amber:hover { box-shadow: 0 10px 28px rgba(217,119,6,.24); }

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
h1, h2, h3, .display {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; line-height: 1.06; letter-spacing: -.022em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.18; }

.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px;
  color: var(--teal); font-family: "Space Grotesk", sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before {
  content: ""; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.lead {
  max-width: 100%; color: var(--muted-2);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem); line-height: 1.66;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: calc(100vh - 76px);
  display: grid; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift { to { transform: scale(1.13) translateX(-2%); } }

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,.97) 0%,
    rgba(240,247,251,.93) 32%,
    rgba(230,243,250,.72) 58%,
    rgba(7,28,40,.28) 100%
  );
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto; padding: 60px 0 88px;
}
.hero-copy { max-width: 680px; }
.hero h1 span {
  background: linear-gradient(120deg, var(--teal), var(--teal-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-actions, .section-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px;
}

/* ============================================================
   MÉTRICAS
   ============================================================ */
.hero-metrics, .metric-row {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px; width: min(var(--max), calc(100% - 48px));
  margin: -52px auto 3%; position: relative; z-index: 5;
}
.metric {
  padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.metric:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.metric strong {
  display: flex; align-items: baseline; min-height: 1em;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  background: linear-gradient(120deg, var(--teal), var(--teal-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: clamp(2.35rem, 4vw, 3.1rem); line-height: .98; letter-spacing: 0;
  white-space: nowrap;
}
.metric strong span {
  display: inline;
  margin: 0;
  color: transparent;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.metric > span {
  display: block; margin-top: 10px; color: var(--muted); font-size: .93rem; font-weight: 600;
}

/* ============================================================
   SECCIONES Y BANDAS
   ============================================================ */
.section { padding: clamp(60px, 8vw, 80px) 0; }
.section.tight { padding: clamp(52px, 7vw, 86px) 0; }
body[data-page="inicio"] .section { padding: var(--home-section-y) 0; }
body[data-page="inicio"] .section.tight { padding: var(--home-section-y-tight) 0; }

.band-ice { background: linear-gradient(180deg, var(--bg-2), #e8f4f9); }

.band-ink {
  color: #fff;
  background: radial-gradient(circle at 10% 20%, rgba(8,145,178,.18), transparent 36%),
              linear-gradient(135deg, #071c28, #103241 65%, #071c28);
}
.band-ink .lead, .band-ink .section-kicker,
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink p { color: rgba(255,255,255,.88); }
.band-ink .section-kicker { color: var(--teal-3); }
.band-ink .section-kicker::before { background: linear-gradient(90deg, var(--teal-3), transparent); }

.band-frost {
  color: var(--ink);
  background: linear-gradient(180deg, #fff, var(--bg-2));
}

.home-advantages-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    url("images/generated-backup/home-advantages-bg.png") center / cover no-repeat;
}

.home-advantages-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-advantages-bg .container { position: relative; z-index: 1; }
.home-advantages-bg .value-card {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 30px; align-items: end; margin-bottom: var(--section-head-gap);
}
.section-head.center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head.center .section-actions { justify-content: center; margin-top: 0; }
.section-head--compact { margin-bottom: var(--section-head-gap-compact); }
.section-title--compact { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.product-spec-heading {
  grid-template-columns: 1fr;
}
.product-spec-heading h2 {
  max-width: 100%;
  font-size: clamp(1.45rem, 3vw, 3rem);
}
.section-cta-center {
  display: flex;
  justify-content: center;
  margin-top: var(--section-content-gap);
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 82px); align-items: center;
}
.split.reverse { grid-template-columns: minmax(300px, 1fr) minmax(0, .9fr); }

/* Media frame */
.media-frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, transparent 60%, rgba(7,28,40,.12));
}
.media-frame img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.media-frame.tall img { aspect-ratio: 4/5; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.9); border: 1px solid var(--line);
  backdrop-filter: blur(8px); color: var(--ink-2);
  font-size: .84rem; font-weight: 600; box-shadow: var(--shadow-soft);
}
.media-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal-glow);
}

.about-intro-split {
  align-items: stretch;
}
.about-intro-split > .reveal:not(.media-frame) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro-split .media-frame {
  min-height: 100%;
}
.about-intro-split .media-frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 36vw, 560px);
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

.process-split {
  align-items: stretch;
}
.process-split > .reveal:not(.media-frame) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-split .media-frame {
  min-height: 100%;
}
.process-split .media-frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 36vw, 560px);
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

.manufacturing-split {
  align-items: stretch;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
}
.manufacturing-copy,
.manufacturing-media {
  min-height: clamp(420px, 34vw, 560px);
}
.manufacturing-copy {
  display: flex; flex-direction: column; justify-content: center;
}
.manufacturing-copy > p:not(.section-kicker) {
  max-width: 100%;
  margin-top: 5%;
  color: var(--muted-2);
  font-size: 1.05rem;
  line-height: 1.75;
}
.manufacturing-copy .list-check { margin-top: 22px; }
.manufacturing-copy .section-actions { margin-top: 28px; }
.manufacturing-media img {
  width: 100%; height: 100%; min-height: inherit;
  aspect-ratio: auto; object-fit: cover; display: block;
}

.manufacturing-feature-section {
  border-top: none;
}

.manufacturing-feature-section .manufacturing-split {
  align-items: stretch;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .88fr);
  gap: clamp(28px, 4.8vw, 70px);
}

.manufacturing-feature-section .manufacturing-copy,
.manufacturing-feature-section .manufacturing-media {
  min-height: clamp(500px, 38vw, 620px);
  height: 100%;
}

.manufacturing-feature-section .manufacturing-copy {
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8,145,178,.08), rgba(255,255,255,.9) 42%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.manufacturing-feature-section .manufacturing-media {
  margin: 0;
}

.manufacturing-feature-section .manufacturing-media img {
  min-height: 100%;
}

.manufacturing-feature-section .home-mix-tags {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .manufacturing-feature-section .manufacturing-split {
    grid-template-columns: 1fr;
  }
  .manufacturing-feature-section .manufacturing-copy {
    min-height: auto;
    padding: clamp(24px, 6vw, 36px);
  }
  .manufacturing-feature-section .manufacturing-media {
    min-height: 360px;
  }
}

/* Check list */
.list-check { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.list-check li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--muted-2); font-size: 1rem; }
.list-check li::before {
  content: "✓"; display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff; font-size: .76rem; font-weight: 800;
}

/* ============================================================
   GRID Y TARJETAS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.product-card, .blog-card, .solution-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}

.blog-card--clickable,
.product-card--clickable {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.blog-card--clickable:focus-visible,
.product-card--clickable:focus-visible {
  outline: 3px solid rgba(8, 145, 178, .35);
  outline-offset: 4px;
}
.product-card:hover, .blog-card:hover, .solution-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(8,145,178,.35);
}
.product-card figure, .blog-card figure, .solution-card figure {
  margin: 0; background: var(--bg-2); overflow: hidden;
}
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card img, .solution-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card[id] { scroll-margin-top: 96px; }
.product-card:hover img, .blog-card:hover img, .solution-card:hover img { transform: scale(1.06); }

.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.product-card h3, .blog-card h3, .solution-card h3, .value-card h3 {
  display: -webkit-box;
  min-height: 2.56em;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.product-card p, .blog-card p, .solution-card p, .value-card p {
  display: -webkit-box;
  min-height: 3.1em;
  margin-top: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.card-link {
  display: inline-flex; align-items: center;
  margin-top: 18px; color: var(--teal);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .92rem;
}

/* Product category showcase */
.product-category-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
}
.product-category-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-category-card {
  position: relative;
  display: flex;
  min-height: clamp(300px, 26vw, 390px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(7,28,40,.08) 0%, rgba(7,28,40,.34) 42%, rgba(7,28,40,.82) 100%),
    var(--category-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.product-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(8,145,178,.26), transparent 52%);
  opacity: .78;
  transition: opacity .32s var(--ease);
}
.product-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.42);
  box-shadow: var(--shadow);
}
.product-category-card:hover::before { opacity: 1; }
.product-category-card h3 {
  max-width: 520px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 68px;
}
.product-category-card p {
  max-width: 460px;
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Value cards */
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(8,145,178,.3); }
.value-card .card-body { padding: 28px; }
.value-card .num,
.value-card .value-icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  margin-bottom: 16px; border-radius: 13px;
  background: var(--teal-bg); border: 1px solid rgba(8,145,178,.3);
  color: var(--teal); font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem;
}
.value-card .value-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card p { margin-top: 10px; color: var(--muted); font-size: .96rem; }

/* ============================================================
   PAGE HERO (páginas interiores)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  height: var(--page-hero-height);
  min-height: var(--page-hero-height);
  padding: clamp(80px, 12vw, 148px) 0 clamp(58px, 8vw, 96px);
  background-image: var(--page-hero-image, none);
  background-size: cover; background-position: center;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  color: #fff;
  text-shadow: 0 3px 22px rgba(3, 18, 42, .42);
}
.page-hero .lead,
.page-hero .section-kicker,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  margin-top: 20px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 16px rgba(3, 18, 42, .42);
}

.breadcrumb {
  margin-bottom: 20px; color: var(--muted);
  font-family: "Space Grotesk", sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.breadcrumb a { color: var(--teal); }

/* ============================================================
   FILTER STRIP
   ============================================================ */
.filter-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--surface); color: var(--muted-2);
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: all .22s var(--ease);
}
.filter-button:hover { color: var(--ink); border-color: var(--teal); }
.filter-button.is-active {
  color: #fff; background: linear-gradient(135deg, var(--teal-2), var(--teal));
  border-color: transparent; box-shadow: 0 6px 18px rgba(8,145,178,.28);
}

/* ============================================================
   SPEC TABLE
   ============================================================ */
.spec-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.spec-table th, .spec-table td { padding: 15px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th {
  width: 34%; background: var(--bg-2); color: var(--teal);
  font-family: "Space Grotesk", sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  border-right: 1px solid var(--line);
}
.spec-table td {
  color: var(--ink-2); font-weight: 500; line-height: 1.5;
}
.spec-table tbody tr { transition: background .2s var(--ease); }
.spec-table tbody tr:hover { background: var(--teal-bg); }
.spec-table tbody tr:hover th { color: var(--teal-2); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* ============================================================
   ARTÍCULO
   ============================================================ */
.article-shell { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 56px; align-items: start; }
.article-content { max-width: 100%; }
.article-content > img { width: 100%; margin: 28px 0 34px; border-radius: var(--radius); border: 1px solid var(--line); }
.article-content h2 { margin-top: 44px; font-size: clamp(1.55rem, 2.3vw, 2.15rem); }
.article-content h3 { margin-top: 30px; font-size: 1.25rem; }
.article-content p, .article-content li { color: var(--muted-2); font-size: 1.04rem; line-height: 1.74; }
.article-content ul { padding-left: 1.2rem; }
.article-content li { margin-bottom: 9px; }
.article-content blockquote {
  margin: 34px 0; padding: 24px 28px;
  border-left: 3px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--teal-bg);
  color: var(--ink); font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem; font-weight: 600; line-height: 1.42;
}
.side-panel {
  position: sticky; top: 100px; padding: 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-soft);
  display: grid; gap: 24px;
}
.side-panel h3 { margin: 0 0 8px; font-size: 1.15rem; }
.side-panel > a, .side-panel > span {
  display: block; padding: 12px 0; border-top: 1px solid var(--line);
  color: var(--muted-2); font-weight: 600; transition: color .22s var(--ease);
}
.side-panel > a:hover { color: var(--teal); }
.side-panel__group { display: grid; gap: 8px; }
.side-panel__link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 46px; padding: 11px 12px; border: 1px solid transparent;
  border-top-color: var(--line);
  color: var(--muted-2); font-weight: 700;
  transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.side-panel__link:hover {
  color: var(--teal);
  background: var(--teal-bg);
  border-color: rgba(8,145,178,.2);
}
.side-panel__link.is-current {
  color: var(--teal);
  background: linear-gradient(90deg, rgba(8,145,178,.12), rgba(8,145,178,.04));
  border-color: rgba(8,145,178,.28);
  box-shadow: inset 3px 0 0 var(--teal);
}
.side-panel__link.is-current::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 10px var(--teal-glow);
}
.article-nav {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
}
.article-nav__link {
  display: grid; gap: 9px; align-content: center;
  min-height: 120px; padding: 20px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--ink);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}
.article-nav__link:hover {
  transform: translateY(-3px);
  border-color: rgba(8,145,178,.28);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.article-nav__label {
  color: var(--teal); font-family: "Space Grotesk", sans-serif;
  font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.article-nav__link strong { font-size: 1.02rem; line-height: 1.35; }
.article-nav__link--next { justify-items: end; text-align: right; }

/* ============================================================
   TIMELINE, PRODUCT DETAIL
   ============================================================ */
.timeline { display: grid; gap: 20px; margin-top: 26px; counter-reset: step; }
.timeline-item { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; }
.timeline-item::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: grid; place-items: center; width: 58px; height: 58px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 20px rgba(8,145,178,.3);
}
.timeline-item h3 { font-size: 1.2rem; }
.timeline-item p { margin: 5px 0 0; color: var(--muted); }

.product-detail-layout {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,1fr);
  gap: 52px; align-items: start;
}
.product-visual {
  overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); box-shadow: var(--shadow);
}
.product-visual img {
  width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.product-visual img.is-changing { opacity: 0; transform: scale(.985); }
.thumb-carousel {
  display: grid; grid-template-columns: 40px minmax(0,1fr) 40px;
  align-items: center; gap: 10px; margin-top: 10px;
}
.thumb-row {
  display: flex; gap: 10px; min-width: 0;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;padding:5px;
}
.thumb-row::-webkit-scrollbar { display: none; }
.thumb-button {
  flex: 0 0 calc((100% - 30px) / 4);
  aspect-ratio: 1 / 1; padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--bg-2); cursor: pointer;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.thumb-button:hover { transform: translateY(-2px); border-color: rgba(8,145,178,.34); }
.thumb-button.is-active { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,145,178,.12); }
.thumb-button img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.thumb-nav {
  display: grid; place-items: center;
  width: 40px; height: 80px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--teal);
  font-size: 1.55rem; line-height: 1; cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.thumb-nav:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT LAYOUT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(330px,1fr);
  gap: 40px; align-items: stretch;
}
.contact-card {
  padding: 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-soft);
}
.contact-card h2 { margin-top: 6px; font-size: clamp(1.55rem, 2.4vw, 2rem); }
.contact-list { display: grid; gap: 2px; margin-top: 24px; }
.contact-list > a, .contact-list > span {
  display: grid; grid-template-columns: minmax(110px, .28fr) minmax(0, 1fr);
  align-items: center; gap: 14px; text-align: right;
  min-height: 54px; padding: 13px 0; border-top: 1px solid var(--line);
  color: var(--ink); font-weight: 600; transition: color .22s var(--ease);
}
.contact-list a:hover { color: var(--teal); }
.contact-list > a > span, .contact-list > span > span {
  min-height: auto; padding: 0; border: 0;
  color: var(--teal); font-family: "Space Grotesk", sans-serif;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-align: left;
}

/* ============================================================
   FORMULARIOS
   ============================================================ */
.contact-form {
  display: grid; gap: 16px; padding: 32px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow);
}
.field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }

label {
  display: grid; gap: 8px; color: var(--ink);
  font-family: "Space Grotesk", sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .01em;
}
input, select, textarea {
  width: 100%; min-height: 50px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 12px 15px;
  background: var(--bg-2); color: var(--ink); font: inherit;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,.14);
}
select option { background: var(--surface); }
textarea { min-height: 148px; resize: vertical; }
.form-note { min-height: 20px; margin: 0; color: var(--teal); font-weight: 600; }

/* ============================================================
   BRAND STRIP (componentes + CE)
   ============================================================ */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.brand-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--surface); color: var(--muted-2);
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1rem;
  box-shadow: var(--shadow-soft);
  transition: border-color .28s var(--ease), color .28s var(--ease), transform .28s var(--ease);
}
.brand-chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
}
.brand-chip:hover { color: var(--ink); border-color: var(--teal); transform: translateY(-3px); }
.brand-chip-logo {
  width: 100%;
  min-width: 0;
  min-height: 76px;
  justify-content: center;
  padding:0;
  background: linear-gradient(180deg, #fff, var(--surface-2));
}
.brand-chip-logo::before { display: none; }
.brand-chip-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 13px 22px; border: 1px solid rgba(217,119,6,.35); border-radius: 999px;
  background: rgba(245,158,11,.07); color: var(--amber);
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
}
.cert-badge strong {
  display: inline-grid; place-items: center; width: 36px; height: 36px;
  border-radius: 50%; background: linear-gradient(135deg, var(--amber-2), var(--amber));
  color: #fff; font-size: .8rem;
}

/* ============================================================
   CLIENTES
   ============================================================ */
.client-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.client-chip {
  padding: 12px 26px; border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--surface); color: var(--ink);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.08rem;
  box-shadow: var(--shadow-soft);
}
.client-logo-grid {
  position: relative;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.client-logo-track {
  display: flex;
  width: max-content;
  animation: clientLogoMarquee 46s linear infinite;
}
.client-logo-track--forward {
  animation-delay: -8s;
}
.client-logo-track--reverse {
  animation: clientLogoMarqueeReverse 52s linear infinite;
  animation-delay: -26s;
}
.client-logo-grid:hover .client-logo-track {
  animation-play-state: paused;
}
.client-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-right: 16px;
}
.client-logo-card {
  flex: 0 0 220px;
  width: 220px;
  display: grid;
  place-items: center;
  min-height: 80px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8,145,178,.32);
  box-shadow: var(--shadow);
}
.client-logo-card img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
@keyframes clientLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes clientLogoMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.country-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.country-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 15px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted-2); font-size: .9rem; font-weight: 500; background: var(--surface);
}
.country-tag::before { content: "📍"; font-size: .82rem; }

/* ============================================================
   GALERÍA DE PROYECTOS
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.case-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: var(--max);
  height: clamp(420px, 42vw, 560px);
  min-height: clamp(420px, 42vw, 560px);
  margin-inline: auto;
  overflow: hidden;
}
.gallery-item {
  position: relative; overflow: hidden; margin: 0; border-radius: var(--radius);
  border: 1px solid var(--line); aspect-ratio: 4/5; box-shadow: var(--shadow-soft);
  background: var(--ink);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.case-gallery .gallery-item {
  flex: 1 1 0;
  height: 100%;
  min-width: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
  isolation: isolate;
  transition:
    flex-basis .58s var(--ease),
    flex-grow .58s var(--ease),
    transform .32s var(--ease),
    box-shadow .32s var(--ease),
    border-color .32s var(--ease);
  will-change: flex-grow;
}
.case-gallery .case-featured {
  flex: 1 1 0;
}
.case-gallery:hover .gallery-item,
.case-gallery:focus-within .gallery-item {
  flex: 1 1 0;
}
.case-gallery .gallery-item:hover,
.case-gallery .gallery-item:focus,
.case-gallery .gallery-item:focus-visible {
  flex: 4.8 1 0;
  outline: 0;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(8,145,178,.3);
}
.gallery-item:focus-visible {
  border-color: rgba(8,145,178,.46);
  box-shadow: 0 0 0 4px rgba(8,145,178,.14), var(--shadow);
}
.case-gallery .gallery-item:hover,
.case-gallery .gallery-item:focus,
.case-gallery .gallery-item:focus-visible {
  transform: none;
  box-shadow: none;
}
.case-gallery .gallery-item:focus-visible {
  outline: 2px solid rgba(34,211,238,.86);
  outline-offset: -2px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .45s var(--ease); }
.case-gallery .gallery-item img { filter: brightness(.7) saturate(.92); }
.case-gallery .case-featured img,
.case-gallery .gallery-item:hover img,
.case-gallery .gallery-item:focus img,
.case-gallery .gallery-item:focus-visible img {
  filter: brightness(.9) saturate(1.05);
  transform: scale(1.06);
}
.case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) img,
.case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) img {
  filter: brightness(.7) saturate(.92);
  transform: none;
}
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: grid;
  gap: 5px;
  padding: clamp(18px, 2.4vw, 28px);
  background: linear-gradient(180deg, transparent 0%, rgba(7,28,40,.62) 28%, rgba(7,28,40,.93) 100%);
  color: #fff; font-family: "Space Grotesk", sans-serif;
}
.case-gallery .gallery-item figcaption {
  inset: 0;
  align-content: center;
  justify-items: center;
  padding: 26px 14px;
  background: linear-gradient(180deg, rgba(3,18,42,.08), rgba(3,18,42,.72));
  transition: background .42s var(--ease), padding .42s var(--ease), justify-items .42s var(--ease);
}
.case-gallery .case-featured figcaption,
.case-gallery .gallery-item:hover figcaption,
.case-gallery .gallery-item:focus figcaption,
.case-gallery .gallery-item:focus-visible figcaption {
  inset: auto 0 0;
  align-content: end;
  justify-items: start;
  min-height: 62%;
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(180deg, transparent 0%, rgba(7,28,40,.48) 36%, rgba(7,28,40,.92) 100%);
}
.case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption,
.case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption {
  inset: 0;
  align-content: center;
  justify-items: center;
  min-height: auto;
  padding: 26px 14px;
  background: linear-gradient(180deg, rgba(3,18,42,.08), rgba(3,18,42,.72));
}
.gallery-item figcaption span {
  color: var(--teal-3);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gallery-item figcaption strong {
  max-width: 520px;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.38rem);
  line-height: 1.12;
}
.case-gallery .gallery-item figcaption span,
.case-gallery .gallery-item figcaption small {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s var(--ease), transform .32s var(--ease);
}
.case-gallery .gallery-item figcaption strong {
  writing-mode: horizontal-tb;
  transform: none;
  max-width: 560px;
  font-size: clamp(1.12rem, 2.2vw, 1.65rem);
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 3px 18px rgba(3,18,42,.48);
  transition: font-size .34s var(--ease), opacity .28s var(--ease), letter-spacing .34s var(--ease);
}
.case-gallery .case-featured figcaption span,
.case-gallery .case-featured figcaption small,
.case-gallery .gallery-item:hover figcaption span,
.case-gallery .gallery-item:hover figcaption small,
.case-gallery .gallery-item:focus figcaption span,
.case-gallery .gallery-item:focus figcaption small,
.case-gallery .gallery-item:focus-visible figcaption span,
.case-gallery .gallery-item:focus-visible figcaption small {
  opacity: 1;
  transform: translateY(0);
}
.case-gallery .case-featured figcaption strong,
.case-gallery .gallery-item:hover figcaption strong,
.case-gallery .gallery-item:focus figcaption strong,
.case-gallery .gallery-item:focus-visible figcaption strong {
  writing-mode: horizontal-tb;
  transform: none;
  max-width: 560px;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  letter-spacing: 0;
  text-align: left;
}
.case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption span,
.case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption small,
.case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption span,
.case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption small {
  opacity: 0;
  transform: translateY(10px);
}
.case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption strong,
.case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption strong {
  writing-mode: horizontal-tb;
  transform: none;
  max-width: 560px;
  font-size: clamp(1.12rem, 2.2vw, 1.65rem);
  letter-spacing: 0;
  text-align: left;
}
.gallery-item figcaption small {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-family: "Inter Tight", sans-serif;
  font-size: .92rem;
  line-height: 1.45;
}

.case-gallery .case-featured,
.case-gallery .gallery-item:hover,
.case-gallery .gallery-item:focus,
.case-gallery .gallery-item:focus-visible,
.case-gallery:hover .gallery-item,
.case-gallery:focus-within .gallery-item {
  flex: 1 1 0;
}
.case-gallery .gallery-item.is-active,
.case-gallery:hover .gallery-item.is-active,
.case-gallery:focus-within .gallery-item.is-active {
  flex: 4.8 1 0;
}
.case-gallery .gallery-item:not(.is-active) img,
.case-gallery:hover .case-featured:not(.is-active) img,
.case-gallery:focus-within .case-featured:not(.is-active) img {
  filter: brightness(.64) saturate(.86);
  transform: none;
}
.case-gallery .gallery-item.is-active img,
.case-gallery:hover .gallery-item.is-active img,
.case-gallery:focus-within .gallery-item.is-active img {
  filter: brightness(.9) saturate(1.05);
  transform: scale(1.06);
}
.case-gallery .gallery-item:not(.is-active) figcaption {
  opacity: 0;
  pointer-events: none;
}
.case-gallery .gallery-item.is-active figcaption,
.case-gallery:hover .gallery-item.is-active figcaption,
.case-gallery:focus-within .gallery-item.is-active figcaption {
  inset: auto 0 0;
  align-content: end;
  justify-items: start;
  min-height: 62%;
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(180deg, transparent 0%, rgba(7,28,40,.48) 36%, rgba(7,28,40,.92) 100%);
  opacity: 1;
  pointer-events: auto;
}
.case-gallery .gallery-item:not(.is-active) figcaption span,
.case-gallery .gallery-item:not(.is-active) figcaption strong,
.case-gallery .gallery-item:not(.is-active) figcaption small {
  opacity: 0;
}
.case-gallery .gallery-item.is-active figcaption span,
.case-gallery .gallery-item.is-active figcaption small {
  opacity: 1;
  transform: translateY(0);
}
.case-gallery .gallery-item.is-active figcaption strong {
  writing-mode: horizontal-tb;
  transform: none;
  max-width: 560px;
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  letter-spacing: 0;
  text-align: left;
}

/* ============================================================
   SUBCATEGORÍAS PRODUCTOS
   ============================================================ */
.subcat-head {
  display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1fr);
  gap: 28px; align-items: end;
  margin: 60px 0 28px; padding-top: 34px;
  border-top: 1px solid var(--line); scroll-margin-top: 96px;
}
.subcat-head:first-of-type { margin-top: 6px; padding-top: 0; border-top: 0; }
.subcat-head .lead { margin: 0; }

/* ============================================================
   PRODUCTOS — TARJETAS PREMIUM REFINADAS (solo página productos)
   Imagen con degradado + CTA como botón al pie.
   Reutiliza .product-card / .card-link sin tocar el HTML.
   ============================================================ */
body[data-page="productos"] .product-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(8, 28, 45, 0.07);
}
body[data-page="productos"] .product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 30px 60px rgba(8, 28, 45, 0.16);
  border-color: rgba(8, 145, 178, 0.4);
}

/* Degradado sutil sobre la imagen */
body[data-page="productos"] .product-card figure::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 46%;
  background: linear-gradient(180deg, rgba(7, 28, 40, 0.42), rgba(7, 28, 40, 0));
  pointer-events: none;
  opacity: .9;
  transition: opacity .32s var(--ease);
}
body[data-page="productos"] .product-card:hover figure::after { opacity: 1; }

/* Cuerpo más aireado; el CTA se ancla al pie */
body[data-page="productos"] .card-body { padding: 26px 26px 28px; }
body[data-page="productos"] .product-card h3 { font-size: 1.24rem; line-height: 1.3; }
body[data-page="productos"] .product-card p { margin: 12px 0 22px; }

/* CTA como botón sólido al pie de la tarjeta */
body[data-page="productos"] .product-card .card-link {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff;
  box-shadow: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), gap .22s var(--ease);
}
body[data-page="productos"] .product-card .card-link:hover {
  gap: 12px;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Tarjeta CTA de acento dentro del grid de tipos de equipos */
.value-card--cta {
  background: linear-gradient(150deg, var(--teal-2), var(--teal));
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(8, 145, 178, 0.28);
}
.value-card--cta .section-kicker { color: rgba(255, 255, 255, 0.82); }
.value-card--cta .section-kicker::before { background: linear-gradient(90deg, #fff, transparent); }
.value-card--cta h3 { color: #fff; margin-top: 4px; }
.value-card--cta p { color: rgba(255, 255, 255, 0.9); }
.value-card--cta .card-link { color: #fff; margin-top: 16px; }
.value-card--cta .card-link:hover { color: #fff; }

/* Ocultar tarjetas de otras páginas (vence al display:flex de las cards) */
.product-card[hidden], .blog-card[hidden] { display: none !important; }

/* ============================================================
   PAGINACIÓN
   ============================================================ */
.pager {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px; margin-top: 44px;
}
.pager[hidden] { display: none; }
.pager-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 6px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--surface); color: var(--muted-2);
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .22s var(--ease);
}
.pager-btn:hover:not(:disabled) { color: var(--ink); border-color: var(--teal); }
.pager-btn:disabled { opacity: .4; cursor: not-allowed; }
.pager-pages { display: flex; gap: 8px; }
.pager-num.is-active {
  color: #fff; background: linear-gradient(135deg, var(--teal-2), var(--teal));
  border-color: transparent; box-shadow: 0 6px 18px rgba(8,145,178,.28);
}
.pager-arrow { font-size: 1.1rem; }

/* ============================================================
   PRODUCTOS — CARACTERÍSTICAS DE LAS CUATRO CATEGORÍAS
   ============================================================ */
.category-features {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 9vw, 126px) 0;
  background:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    radial-gradient(circle at 84% 8%, rgba(34,211,238,.15), transparent 25%),
    linear-gradient(145deg, #051721 0%, #0a2b3c 52%, #061a27 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
  color: #fff;
}
.category-features__glow {
  position: absolute;
  z-index: -1;
  right: -18%;
  top: 12%;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgba(34,211,238,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(34,211,238,.02), 0 0 0 180px rgba(34,211,238,.014);
}
.category-features__head {
  max-width: 900px;
  margin: 0 auto clamp(46px, 6vw, 78px);
  text-align: center;
}
.category-features .section-kicker {
  justify-content: center;
  color: var(--teal-3);
}
.category-features .section-kicker::before { background: linear-gradient(90deg, var(--teal-3), transparent); }
.category-features__head h2 {
  margin: 8px 0 18px;
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 4.15rem);
  line-height: 1.06;
}
.category-features__head > p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.7);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}
.category-features__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.category-features__nav a {
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.category-features__nav a:hover,
.category-features__nav a:focus-visible {
  border-color: rgba(34,211,238,.65);
  background: rgba(34,211,238,.1);
  color: #fff;
}
.category-features__stack { display: grid; gap: clamp(26px, 4vw, 48px); }
.category-feature-panel {
  scroll-margin-top: 102px;
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 58px);
  min-height: 570px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(8px);
}
.category-feature-panel--reverse { grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr); }
.category-feature-panel--reverse .category-feature-panel__copy { order: 2; }
.category-feature-panel--reverse .category-feature-media { order: 1; }
.category-feature-panel__copy {
  align-self: center;
  padding: clamp(8px, 2vw, 24px);
}
.category-feature-panel__index {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--teal-3);
  font-family: "Space Grotesk", sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.category-feature-panel__index span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(34,211,238,.5);
  border-radius: 50%;
  color: #fff;
  letter-spacing: 0;
}
.category-feature-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.04;
}
.category-feature-panel__copy > p:not(.category-feature-panel__index) {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.75;
}
.category-feature-panel__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  list-style: none;
}
.category-feature-panel__points li {
  position: relative;
  padding: 15px 0 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.4;
}
.category-feature-panel__points li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--teal-3);
  border-left: 2px solid var(--teal-3);
  transform: rotate(-45deg);
}
.category-feature-media {
  position: relative;
  min-height: 480px;
}
.category-feature-media figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  background: #0a2533;
  box-shadow: 0 20px 54px rgba(0,0,0,.3);
}
.category-feature-media__primary {
  inset: 0;
  border-radius: 22px;
}
.category-feature-panel--reverse .category-feature-media__primary { inset: 0; }
.category-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}
.category-feature-media__primary img { object-position: 62% center; }
.category-feature-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3,18,27,.86));
  pointer-events: none;
}
.category-feature-media figure:hover img { transform: scale(1.035); filter: saturate(1.06); }
.category-feature-media figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 22px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
}

/* ============================================================
   FAQ ACORDEÓN
   ============================================================ */
.faq-list { display: grid; gap: 12px; margin-top: 6px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.faq-item.is-open { border-color: rgba(8,145,178,.4); box-shadow: 0 6px 24px rgba(8,145,178,.1); }
.faq-question {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 20px 24px; border: 0; margin: 0; background: transparent;
  color: var(--ink); font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 600; text-align: left; cursor: pointer;
  transition: color .22s var(--ease);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  position: relative; flex-shrink: 0; width: 24px; height: 24px; margin-left: auto;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2px; background: var(--teal); border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(0); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted-2); font-size: 1rem; line-height: 1.7; }
.faq-answer-inner p { margin: 0; }

/* ============================================================
   PRE-FOOTER FORMULARIO GLOBAL
   ============================================================ */
.prefooter {
  position: relative; overflow: hidden;
  scroll-margin-top: 88px;
  padding: clamp(64px, 9vw, 108px) 0;
  background: linear-gradient(160deg, var(--bg-2) 0%, #fff 50%, var(--bg-3) 100%);
  border-top: 1px solid var(--line);
}
.prefooter-inner {
  width: min(var(--max), calc(100% - 48px)); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(320px,1fr);
  gap: clamp(38px, 6vw, 78px); align-items: center;
}
.prefooter-copy .section-kicker { color: var(--amber); }
.prefooter-copy .section-kicker::before { background: linear-gradient(90deg, var(--amber), transparent); }
.prefooter-copy h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-top: 4px; }
.prefooter-copy .lead { margin-top: 16px; }
.prefooter-copy .prefooter-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.prefooter-form {
  display: grid; gap: 15px; padding: 30px;
  border: none; border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow);
}
.prefooter-form .field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }

/* ============================================================
   MAPA
   ============================================================ */
.map-frame {
  position: relative; overflow: hidden;
  width: 100%; margin: 0;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.map-frame iframe { display: block; width: 100%; height: 440px; border: 0; }
.map-frame figcaption {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 15px 20px; background: var(--bg-2); border-top: 1px solid var(--line);
  color: var(--muted-2); font-size: .93rem;
}
.map-frame figcaption strong { color: var(--ink); font-family: "Space Grotesk", sans-serif; font-weight: 600; }
.map-frame figcaption .map-link {
  margin-left: auto; color: var(--teal);
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #071c28, #04121e);
  color: rgba(255,255,255,.78);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(130px, .6fr));
  gap: 38px;
}
.footer img { width: 160px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-grid > div > p { color: rgba(255,255,255,.55); font-size: .93rem; }
.footer-contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.footer .footer-contact-list li {
  margin: 0;
}
.footer .footer-contact-list a,
.footer .footer-contact-list li > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .96rem;
  line-height: 1.55;
}
.footer .footer-contact-list a:hover {
  color: var(--teal-3);
}
.footer-contact-icon {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: rgba(186, 232, 244, .9);
  transform: translateY(-1px);
  transition: color .22s var(--ease), transform .22s var(--ease);
}
.footer-contact-icon--whatsapp {
  width: 32px;
  height: 32px;
  transform: translate(-1px, -3px);
}
.footer-contact-icon--mail { stroke-width: 1.35; }
.footer-contact-icon--whatsapp { stroke-width: 1.38; }
.footer-contact-icon--phone { stroke-width: 1.45; }
.footer-contact-icon--pin { stroke-width: 1.42; }
.footer .footer-contact-list a:hover .footer-contact-icon {
  color: var(--teal-3);
  transform: translateY(-2px);
}
.footer .footer-contact-list a:hover .footer-contact-icon--whatsapp {
  transform: translate(-1px, -4px);
}
.footer h3 {
  margin-bottom: 16px; color: #fff;
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
}
.footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.62); font-size: .93rem; transition: color .22s var(--ease); }
.footer a:hover { color: var(--teal-3); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  margin-top: 46px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.42); font-size: .87rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.footer-social a {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.55); margin: 0;
  transition: color .22s var(--ease), border-color .22s var(--ease),
              background .22s var(--ease), transform .22s var(--ease);
}
.footer-social a:hover {
  color: var(--ink); background: var(--teal-3);
  border-color: transparent; transform: translateY(-3px);
}
.social-icon { width: 17px; height: 17px; fill: currentColor; }
.social-icon--instagram,
.social-icon--pinterest { width: 18px; height: 18px; }
.social-icon--tiktok { width: 16px; height: 18px; }
.social-icon--x { width: 16px; height: 16px; }
.contact-icon { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   CONTACTOS FLOTANTES
   ============================================================ */
.contact-float {
  position: fixed;
  right: 22px;
  top: 70%;
  z-index: 80;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}
.contact-float__item {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 9px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(7,28,40,.2);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.contact-float__item:hover,
.contact-float__item:focus-visible {
  transform: translateX(-4px);
  filter: brightness(1.06);
  box-shadow: 0 22px 44px rgba(7,28,40,.26);
}
.contact-float__item svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.contact-float__item--whatsapp {
  background: linear-gradient(135deg, #25d366, #21c563);
}
.contact-float__item--phone,
.contact-float__item--email {
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
}
.contact-float__item--top {
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
}
.contact-float__label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(7,28,40,.92);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.contact-float__item:hover .contact-float__label,
.contact-float__item:focus-visible .contact-float__label {
  opacity: 1;
  transform: translate(0, -50%);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.hidden { display: none !important; }

.numberbox{margin-bottom: -60px;}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-shell {
    flex-wrap: nowrap;
    min-height: 76px;
  }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    z-index: 70;
    display: none;
    width: auto;
    max-height: calc(100vh - 92px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(8,40,60,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 54px rgba(8, 28, 45, .18);
    backdrop-filter: blur(18px) saturate(140%);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a,
  .site-header:not(.is-scrolled) .main-nav.is-open a {
    padding: 13px 12px;
    color: var(--ink-2);
    text-shadow: none;
  }
  .main-nav a:hover,
  .site-header:not(.is-scrolled) .main-nav.is-open a:hover {
    color: var(--teal);
    background: transparent;
    box-shadow: none;
  }
  .main-nav a.is-active,
  .site-header:not(.is-scrolled) .main-nav.is-open a.is-active {
    color: var(--teal);
  }
  .main-nav a::after { display: none; }
  .nav-cta { display: none; }
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav-item > a .caret { display: none; }
  .nav-dropdown {
    position: static; min-width: 0; opacity: 1; visibility: visible;
    transform: none; border: 0; border-radius: 14px; box-shadow: none;
    background: rgba(240,247,251,.78);
    backdrop-filter: none; padding: 6px 8px 8px 14px;
  }
  .nav-dropdown a,
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown a {
    padding: 9px 12px;
    color: var(--muted-2);
    font-size: .82rem;
    background: transparent;
    box-shadow: none;
  }
  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible,
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown a:hover,
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown a:focus-visible {
    color: var(--teal);
    background: transparent;
    box-shadow: none;
  }
  .hero { min-height: auto; }
  .hero::before {
    background: linear-gradient(105deg, rgba(255,255,255,.97) 0%, rgba(240,247,251,.9) 50%, rgba(230,243,250,.68) 100%);
  }
  .hero-metrics, .metric-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-head, .split, .split.reverse,
  .product-detail-layout, .article-shell, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .media-frame { order: -1; }
  .about-intro-split { align-items: start; }
  .about-intro-split .media-frame { min-height: 0; }
  .about-intro-split .media-frame img {
    height: auto;
    min-height: 320px;
    aspect-ratio: 16/11;
  }
  .process-split { align-items: start; }
  .process-split .media-frame { min-height: 0; }
  .process-split .media-frame img {
    height: auto;
    min-height: 320px;
    aspect-ratio: 16/11;
  }
  .manufacturing-copy { min-height: auto; }
  .manufacturing-media { min-height: 320px;margin:0; }
  .manufacturing-media img { min-height: 320px; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .brand-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-category-showcase { grid-template-columns: 1fr; }
  .product-category-card { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .case-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    min-height: 0;
  }
  .case-gallery .gallery-item,
  .case-gallery .case-featured,
  .case-gallery:hover .gallery-item,
  .case-gallery:focus-within .gallery-item,
  .case-gallery .gallery-item:hover,
  .case-gallery .gallery-item:focus,
  .case-gallery .gallery-item:focus-visible {
    flex: none;
    min-height: 320px;
    height: 320px;
  }
  .case-gallery .gallery-item img,
  .case-gallery .case-featured img,
  .case-gallery .gallery-item:hover img,
  .case-gallery .gallery-item:focus img,
  .case-gallery .gallery-item:focus-visible img,
  .case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) img,
  .case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) img {
    filter: brightness(.88) saturate(1.04);
    transform: none;
  }
  .case-gallery .gallery-item:hover img,
  .case-gallery .gallery-item:focus img,
  .case-gallery .gallery-item:focus-visible img { transform: scale(1.04); }
  .case-gallery .gallery-item figcaption,
  .case-gallery .case-featured figcaption,
  .case-gallery .gallery-item:hover figcaption,
  .case-gallery .gallery-item:focus figcaption,
  .case-gallery .gallery-item:focus-visible figcaption,
  .case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption,
  .case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption {
    inset: auto 0 0;
    align-content: end;
    justify-items: start;
    min-height: 62%;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(7,28,40,.48) 34%, rgba(7,28,40,.92) 100%);
  }
  .case-gallery .gallery-item figcaption span,
  .case-gallery .gallery-item figcaption small,
  .case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption span,
  .case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption small,
  .case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption span,
  .case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption small {
    opacity: 1;
    transform: translateY(0);
  }
  .case-gallery .gallery-item figcaption strong,
  .case-gallery .case-featured figcaption strong,
  .case-gallery .gallery-item:hover figcaption strong,
  .case-gallery .gallery-item:focus figcaption strong,
  .case-gallery .gallery-item:focus-visible figcaption strong,
  .case-gallery:hover .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption strong,
  .case-gallery:focus-within .case-featured:not(:hover):not(:focus):not(:focus-visible) figcaption strong {
    writing-mode: horizontal-tb;
    transform: none;
    max-width: 560px;
    font-size: clamp(1.12rem, 2.6vw, 1.45rem);
    letter-spacing: 0;
    text-align: left;
  }
  .brand-chip-logo {
    min-height: auto;
  }
  .case-gallery .gallery-item:not(.is-active) figcaption {
    opacity: 0;
    pointer-events: none;
  }
  .case-gallery .gallery-item:not(.is-active) figcaption span,
  .case-gallery .gallery-item:not(.is-active) figcaption strong,
  .case-gallery .gallery-item:not(.is-active) figcaption small {
    opacity: 0;
  }
  .case-gallery .gallery-item.is-active figcaption {
    opacity: 1;
    pointer-events: auto;
  }
  .case-gallery .gallery-item.is-active figcaption span,
  .case-gallery .gallery-item.is-active figcaption small {
    opacity: 1;
    transform: translateY(0);
  }
  .case-gallery .gallery-item.is-active figcaption strong {
    opacity: 1;
  }
  .client-logo-card {
    flex-basis: 200px;
    width: 200px;
  }
  .prefooter-inner { grid-template-columns: 1fr; }
  .category-feature-panel,
  .category-feature-panel--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .category-feature-panel--reverse .category-feature-panel__copy,
  .category-feature-panel--reverse .category-feature-media { order: initial; }
  .category-feature-panel__copy { max-width: 720px; }
  .category-feature-media { min-height: 440px; }
  .side-panel { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .subcat-head { grid-template-columns: 1fr; gap: 14px; }
  .site-header:not(.is-scrolled) .brand {
    min-width: auto;
  }
  .brand-note,
  .site-header:not(.is-scrolled) .brand-note {
    display: none;
  }
  .site-header:not(.is-scrolled) .main-nav.is-open {
    background: rgba(255,255,255,.96);
  }
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown {
    background: rgba(240,247,251,.78);
  }
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown a {
    color: var(--muted-2);
    text-shadow: none;
  }
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown a:hover,
  .site-header:not(.is-scrolled) .main-nav.is-open .nav-dropdown a:focus-visible {
    color: var(--teal);
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  :root { --page-hero-height: 460px; }
  .container, .nav-shell, .hero-inner,
  .hero-metrics, .metric-row,
  .prefooter-inner { width: min(100% - 32px, var(--max)); }
  .brand img { width: 142px; }
  h1 { font-size: clamp(2rem, 13vw, 2rem); }
  .hero-metrics, .metric-row { grid-template-columns: 1fr; margin-top: -26px; }
  .metric { min-height: auto; padding: 20px; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .field-grid { grid-template-columns: 1fr; }
  .prefooter-form .field-grid { grid-template-columns: minmax(0, 1fr); }
  .brand-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-category-card {
    min-height: 260px;
    padding: 22px;
  }
  .category-features__nav { justify-content: flex-start; }
  .category-features__head { text-align: left; }
  .category-features .section-kicker { justify-content: flex-start; }
  .category-features__head > p:not(.section-kicker) { margin-left: 0; }
  .category-feature-panel { padding: 16px; border-radius: 20px; }
  .category-feature-panel__copy { padding: 14px 8px 8px; }
  .category-feature-panel__points { grid-template-columns: 1fr; }
  .category-feature-media { min-height: 350px; }
  .category-feature-media__primary,
  .category-feature-panel--reverse .category-feature-media__primary {
    inset: 0;
    border-radius: 16px;
  }
  .category-feature-media figcaption { padding: 16px; font-size: .76rem; }
  .contact-list > a,
  .contact-list > span {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 6px;
    text-align: left;
  }
  .thumb-carousel {
    grid-template-columns: 36px minmax(0,1fr) 36px;
    gap: 8px;
  }
  .thumb-button { flex-basis: calc((100% - 24px) / 4); }
  .thumb-nav {
    width: 36px;
    font-size: 1.35rem;
    height:60px;
  }
  .product-detail-layout{
    gap: 30px;
  }
  .article-nav { grid-template-columns: 1fr; }
  .article-nav__link--next { justify-items: start; text-align: left; }
  .case-gallery { grid-template-columns: 1fr; }
  .case-gallery .gallery-item,
  .case-gallery .case-featured,
  .case-gallery:hover .gallery-item,
  .case-gallery .gallery-item:hover,
  .case-gallery .gallery-item:focus,
  .case-gallery .gallery-item:focus-visible {
    grid-column: auto;
    min-height: 300px;
    height: 300px;
  }
  .case-gallery {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .case-gallery .gallery-item,
  .case-gallery .case-featured,
  .case-gallery:hover .gallery-item,
  .case-gallery:focus-within .gallery-item,
  .case-gallery .gallery-item:hover,
  .case-gallery .gallery-item:focus,
  .case-gallery .gallery-item:focus-visible {
    flex: 0 0 auto;
    min-height: 92px;
    height: 92px;
    cursor: pointer;
    transition: height .46s var(--ease), min-height .46s var(--ease), filter .34s var(--ease);
  }
  .case-gallery .gallery-item.is-active,
  .case-gallery:hover .gallery-item.is-active,
  .case-gallery:focus-within .gallery-item.is-active,
  .case-gallery .gallery-item.is-active:hover,
  .case-gallery .gallery-item.is-active:focus,
  .case-gallery .gallery-item.is-active:focus-visible {
    min-height: clamp(320px, 78vw, 430px);
    height: clamp(320px, 78vw, 430px);
  }
  .case-gallery .gallery-item:not(.is-active) img,
  .case-gallery:hover .gallery-item:not(.is-active) img,
  .case-gallery:focus-within .gallery-item:not(.is-active) img {
    filter: brightness(.62) saturate(.86);
    transform: none;
  }
  .case-gallery .gallery-item.is-active img,
  .case-gallery:hover .gallery-item.is-active img,
  .case-gallery:focus-within .gallery-item.is-active img {
    filter: brightness(.9) saturate(1.05);
    transform: scale(1.04);
  }
  .case-gallery .gallery-item:not(.is-active) figcaption,
  .case-gallery:hover .gallery-item:not(.is-active) figcaption,
  .case-gallery:focus-within .gallery-item:not(.is-active) figcaption {
    opacity: 0;
    pointer-events: none;
  }
  .case-gallery .gallery-item.is-active figcaption,
  .case-gallery:hover .gallery-item.is-active figcaption,
  .case-gallery:focus-within .gallery-item.is-active figcaption {
    inset: auto 0 0;
    align-content: end;
    justify-items: start;
    min-height: 62%;
    padding: 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(7,28,40,.48) 34%, rgba(7,28,40,.92) 100%);
    opacity: 1;
    pointer-events: auto;
  }
  .case-gallery .gallery-item.is-active figcaption span,
  .case-gallery .gallery-item.is-active figcaption small {
    opacity: 1;
    transform: translateY(0);
  }
  .case-gallery .gallery-item.is-active figcaption strong {
    opacity: 1;
    font-size: clamp(1.22rem, 6vw, 1.72rem);
  }
  .client-logo-card {
    flex-basis: 176px;
    width: 176px;
    min-height: 60px;
  }
  .hero-actions, .section-actions, .prefooter-copy .prefooter-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:nth-child(n + 2) { display: none; }
  .footer-bottom { flex-direction: column; }
  .footer-social { justify-content: flex-start; }
  .footer .footer-contact-list a,
  .footer .footer-contact-list li > span {
    grid-template-columns: 32px minmax(0, 1fr);
    font-size: .92rem;
    word-break: break-word;
  }
  .footer-contact-icon {
    width: 26px;
    height: 26px;
    stroke-width: 1.35;
    transform: translateY(-1px);
  }
  .footer-contact-icon--whatsapp {
    width: 28px;
    height: 28px;
    transform: translate(-1px, -2px);
  }
  .map-frame iframe { height: 320px; }
  .contact-float {
    right: 14px;
    top: 60%;
    gap: 9px;
  }
  .contact-float__item {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }
  .contact-float__item svg {
    width: 20px;
    height: 20px;
  }
  .contact-float__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .contact-float__item,
  .contact-float__label { transition: none; }
  .client-logo-track { animation: none; }
}

/* ============================================================
   NEW HOME: DISTRIBUTOR FOCUS
   ============================================================ */
.home-v2-page {
  background: var(--bg);
}

.home-v2-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #071c28;
}

.home-v2-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,18,31,.92) 0%, rgba(5,41,59,.82) 38%, rgba(7,28,40,.34) 100%),
    url("images/new-home/exhibition-booth.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.home-v2-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 52%, rgba(34,211,238,.22), transparent 34%),
    linear-gradient(180deg, rgba(7,28,40,.12), rgba(7,28,40,.72));
}

.home-v2-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(460px, .74fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  padding-top: 132px;
  padding-bottom: 94px;
}

.home-v2-hero__copy {
  max-width: 860px;
}

.home-v2-hero .section-kicker,
.home-v2-hero .lead,
.home-v2-hero h1 {
  color: #fff;
}

.home-v2-hero .section-kicker {
  color: var(--teal-3);
}

.home-v2-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: .96;
  text-wrap: balance;
}

.home-v2-hero .lead {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.home-v2-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-v2-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.84);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .86rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.home-v2-hero__media {
  position: relative;
  min-height: 560px;
}

.home-v2-hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.home-v2-hero-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-v2-hero-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,28,40,.72);
  color: #fff;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.home-v2-hero-card--main {
  inset: 24px 0 0 72px;
}

.home-v2-hero-card--small {
  left: 0;
  bottom: 34px;
  width: min(280px, 46%);
  height: 230px;
}

.home-v2-stats {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.home-v2-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(8,40,60,.13);
  background: #fff;
  box-shadow: var(--shadow);
}

.home-v2-stats__grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.home-v2-stats__grid div:last-child {
  border-right: 0;
}

.home-v2-stats__grid strong {
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
}

.home-v2-stats__grid span {
  color: var(--muted-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: .92rem;
  font-weight: 700;
}

.home-v2-value-grid .value-card {
  min-height: 100%;
}

.home-v2-value-grid .value-icon svg,
.journey-steps svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.climate-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

.climate-card,
.oem-more-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.climate-card strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.climate-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.climate-panel figure {
  grid-column: 1 / -1;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.climate-panel img,
.serve-card img,
.facility-card img,
.exhibition-collage img,
.exhibition-wall img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-mix-climate .climate-panel {
  grid-template-columns: 1fr;
}

.home-mix-climate .climate-panel figure {
  grid-column: auto;
  min-height: 100%;
}

.market-config-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
}

.market-config-cards .climate-card {
  min-height: 150px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.serve-card {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  color: #fff;
  background: #071c28;
  box-shadow: var(--shadow-soft);
}

.serve-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 8%, rgba(7,28,40,.18) 42%, rgba(7,28,40,.92) 100%);
}

.serve-card img {
  position: absolute;
  inset: 0;
}

.serve-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 28px;
}

.serve-card span,
.home-v2-product-card span,
.journey-steps span,
.facility-card figcaption span {
  color: var(--teal-3);
  font-family: "Space Grotesk", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.serve-card h3 {
  margin-top: 10px;
  color: #fff;
}

.serve-card p {
  margin-top: 10px;
  color: rgba(255,255,255,.82);
}

.home-mix-audience {
  background:
    linear-gradient(135deg, rgba(8,145,178,.08), transparent 34%),
    linear-gradient(180deg, var(--bg-2), #fff);
}

.audience-gallery {
  height: clamp(420px, 38vw, 540px);
  min-height: clamp(420px, 38vw, 540px);
  box-shadow: none;
}

.audience-gallery .gallery-item.is-active,
.audience-gallery:hover .gallery-item.is-active,
.audience-gallery:focus-within .gallery-item.is-active {
  flex: 3.9 1 0;
}

.audience-gallery .gallery-item.is-active figcaption strong {
  max-width: 680px;
}

.home-v2-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 460px;
  border: 1px solid rgba(255,255,255,.32);
  overflow: hidden;
  background: #071c28;
  box-shadow: none;
}

.home-v2-product-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 28px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.16);
}

.home-v2-product-card:last-child {
  border-right: 0;
}

.home-v2-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--product-image) center / cover no-repeat;
  filter: brightness(.72) saturate(.96);
  transform: scale(1.04);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}

.home-v2-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,28,40,.08), rgba(7,28,40,.86));
}

.home-v2-product-card:hover::before {
  transform: scale(1.1);
  filter: brightness(.88) saturate(1.05);
}

.home-v2-product-card h3 {
  min-height: 1.5em;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-v2-product-card p {
  min-height: 3.2em;
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  color: rgba(255,255,255,.82);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.journey-map {
  align-self: stretch;
  display: grid;
  align-content: start;
  min-height: 640px;
  padding: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 30% 24%, rgba(34,211,238,.2), transparent 26%),
    linear-gradient(135deg, #071c28, #103241);
  color: #fff;
}

.journey-map h2,
.journey-map .lead {
  color: #fff;
}

.journey-map .section-kicker {
  color: var(--teal-3);
}

.latin-map {
  position: relative;
  height: clamp(430px, 48vw, 520px);
  margin: 34px 0;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 28% 24%, rgba(34,211,238,.24), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(8,145,178,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  overflow: hidden;
}

.latin-map::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% 18%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.13), transparent);
  transform: skewX(-18deg);
  animation: latinMapSweep 7s linear infinite;
  pointer-events: none;
}

.latin-map::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 44px rgba(34,211,238,.08);
  pointer-events: none;
}

.latin-map__shape {
  position: absolute;
  inset: 4% 2% 2% 1%;
  width: 97%;
  height: 94%;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.34));
  opacity: .92;
}

.latin-map__country {
  fill: rgba(255,255,255,.15);
  stroke: rgba(190,247,255,.46);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
  animation: latinMapGlow 4.8s ease-in-out infinite;
  transition: fill .35s var(--ease), stroke .35s var(--ease);
}

.latin-map__country:nth-child(3n + 1) {
  fill: rgba(34,211,238,.16);
}

.latin-map__country:nth-child(3n + 2) {
  fill: rgba(8,145,178,.22);
}

.latin-map__country:nth-child(3n + 3) {
  fill: rgba(255,255,255,.18);
}

.latin-map:hover .latin-map__country {
  fill: rgba(34,211,238,.22);
  stroke: rgba(220,252,255,.66);
}

.latin-map__route {
  fill: none;
  stroke: rgba(245,158,11,.76);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(245,158,11,.48));
  animation: latinMapRoute 9s linear infinite;
}

.map-dot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px 5px 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(178,246,255,.4);
  background: rgba(7,28,40,.74);
  color: #fff;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .62rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  animation: mapLabelFloat 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.12s);
}

.map-dot::before,
.map-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-dot::before {
  width: 7px;
  height: 7px;
  background: var(--teal-3);
  box-shadow: 0 0 12px rgba(34,211,238,.9);
}

.map-dot::after {
  z-index: -1;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(34,211,238,.55);
  animation: mapPulse 2.6s ease-out infinite;
  animation-delay: calc(var(--i, 0) * .08s);
}

@keyframes latinMapSweep {
  0% { left: -45%; opacity: 0; }
  16% { opacity: .9; }
  70% { opacity: .55; }
  100% { left: 110%; opacity: 0; }
}

@keyframes latinMapGlow {
  0%, 100% { stroke: rgba(167,243,255,.34); }
  50% { stroke: rgba(167,243,255,.62); }
}

@keyframes latinMapRoute {
  to { stroke-dashoffset: -180; }
}

@keyframes mapPulse {
  0% { opacity: .85; transform: translate(-50%, -50%) scale(.6); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.4); }
}

@keyframes mapLabelFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-3px); }
}

.journey-steps {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.journey-steps div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  align-content: center;
  min-height: 96px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.journey-steps span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8,145,178,.25);
  background: var(--teal-bg);
  color: var(--teal);
}

.journey-steps strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.process-map-layout {
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
  gap: clamp(24px, 4.2vw, 58px);
  align-items: stretch;
}

.process-map-layout .journey-map {
  min-height: auto;
  padding: clamp(28px, 3.6vw, 46px);
}

.process-map-layout .latin-map {
  height: clamp(560px, 56vw, 700px);
  margin: 26px 0 24px;
}

.process-map-layout .journey-steps {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.process-map-layout .journey-steps div {
  min-height: 0;
  padding: clamp(14px, 1.6vw, 20px);
}

.process-map-only {
  display: grid;
}

.process-map-head {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.process-map-head h2 {
  max-width: 920px;
}

body[data-page="inicio"] .home-mix-process {
  padding-block: clamp(60px, 8vh, 60px);
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-2) 48%, var(--bg-2) 100%);
}

.home-mix-process .process-map-head h2,
.home-v2-journey .process-map-head h2 {
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
}

.home-mix-process .process-map-only .journey-map,
.home-v2-journey .process-map-only .journey-map {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.home-mix-process .process-map-only .latin-map,
.home-v2-journey .process-map-only .latin-map {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-mix-process .latin-map::before,
.home-v2-journey .latin-map::before {
  display: none;
}

.home-mix-process .latin-map::after,
.home-v2-journey .latin-map::after {
  border-color: transparent;
  box-shadow: none;
}

.home-mix-process .latin-map__shape,
.home-v2-journey .latin-map__shape {
  filter: drop-shadow(0 18px 28px rgba(8,28,45,.16));
  opacity: .96;
}

.home-mix-process .latin-map__country,
.home-v2-journey .latin-map__country {
  fill: rgba(14,165,196,.1);
  stroke: rgba(8,145,178,.4);
}

.home-mix-process .latin-map__country:nth-child(3n + 1),
.home-v2-journey .latin-map__country:nth-child(3n + 1) {
  fill: rgba(34,211,238,.12);
}

.home-mix-process .latin-map__country:nth-child(3n + 2),
.home-v2-journey .latin-map__country:nth-child(3n + 2) {
  fill: rgba(8,145,178,.14);
}

.home-mix-process .latin-map__country:nth-child(3n + 3),
.home-v2-journey .latin-map__country:nth-child(3n + 3) {
  fill: rgba(255,255,255,.56);
}

.home-mix-process .latin-map:hover .latin-map__country,
.home-v2-journey .latin-map:hover .latin-map__country {
  fill: rgba(34,211,238,.18);
  stroke: rgba(8,145,178,.58);
}

.home-mix-process .map-dot,
.home-v2-journey .map-dot {
  border-color: rgba(8,145,178,.28);
  background: rgba(255,255,255,.9);
  color: var(--ink-2);
  box-shadow: 0 10px 24px rgba(8,28,45,.12);
}

.home-mix-process .visual-process::before {
  background:
    linear-gradient(180deg, transparent, rgba(8,145,178,.28), rgba(217,119,6,.76), rgba(8,145,178,.28), transparent);
}

.home-mix-process .visual-process-card {
  border-color: rgba(8,145,178,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,251,253,.9));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(8,28,45,.08);
}

.home-mix-process .visual-process-card::before {
  background:
    linear-gradient(90deg, rgba(8,145,178,.08), transparent 62%);
}

.home-mix-process .visual-process-card span {
  border-color: rgba(8,145,178,.24);
  background: rgba(8,145,178,.08);
  color: var(--teal);
}

.home-mix-process .visual-process-icon {
  border-color: rgba(8,145,178,.24);
  background: rgba(8,145,178,.08);
  color: var(--teal);
}

.home-mix-process .visual-process-card strong {
  color: var(--ink);
}

.home-mix-process .visual-process-card p {
  color: var(--muted);
}

.home-mix-process .visual-process-card:hover {
  border-color: rgba(8,145,178,.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,1), rgba(240,247,251,.96));
}

.process-map-only .journey-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .78fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
  min-height: auto;
  padding: clamp(16px, 2vw, 24px);
}

.process-map-only .latin-map {
  height: clamp(500px, 42vw, 620px);
  margin: 0;
}

.market-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  align-self: stretch;
  min-height: 100%;
}

.market-fit-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 0;
  padding: clamp(18px, 1.6vw, 24px);
  overflow: hidden;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(8,28,45,.08);
  animation: visualProcessFloat 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -.16s);
}

.market-fit-card span,
.market-fit-card strong,
.market-fit-card p {
  position: relative;
  z-index: 1;
}

.market-fit-card span {
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(8,145,178,.24);
  background: rgba(8,145,178,.08);
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.market-fit-card strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(.96rem, 1vw, 1.08rem);
  line-height: 1.18;
}

.market-fit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.visual-process {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 12px;
  min-height: 100%;
  margin-top: 0;
  padding-left: 22px;
}

.visual-process::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  background:
    linear-gradient(180deg, transparent, rgba(34,211,238,.35), rgba(245,158,11,.85), rgba(34,211,238,.35), transparent);
  background-size: 100% 220%;
  animation: visualProcessLine 4.8s linear infinite;
}

.visual-process-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(190,247,255,.28);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(7,28,40,.2);
  color: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
  animation: visualProcessFloat 4.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -.22s);
}

.visual-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 50%, rgba(34,211,238,.18), transparent 32%),
    linear-gradient(90deg, rgba(34,211,238,.12), transparent 58%);
  pointer-events: none;
}

.visual-process-card span,
.visual-process-card strong,
.visual-process-card p,
.visual-process-icon {
  position: relative;
  z-index: 2;
}

.visual-process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(190,247,255,.54);
  background: rgba(7,28,40,.66);
  color: var(--teal-3);
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.visual-process-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,211,238,.36);
  background: rgba(34,211,238,.1);
  color: var(--teal-3);
}

.visual-process-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-process-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(.9rem, 1vw, 1.05rem);
  line-height: 1.1;
}

.visual-process-card p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  line-height: 1.4;
}

.visual-process-card:hover {
  border-color: rgba(34,211,238,.56);
  background:
    linear-gradient(135deg, rgba(34,211,238,.16), rgba(255,255,255,.06)),
    rgba(7,28,40,.24);
}

@media (min-width: 981px) {
  .home-mix-process {
    max-height: none;
    overflow: visible;
  }

  .home-mix-process .process-map-only .journey-map {
    height: auto;
    max-height: none;
    padding: 0;
  }

  .home-mix-process .process-map-only .latin-map {
    height: clamp(520px, 58vh, 620px);
    min-height: 0;
  }

  .home-mix-process .market-fit,
  .home-v2-journey .market-fit {
    height: clamp(520px, 58vh, 620px);
    min-height: 0;
  }

  .home-mix-process .visual-process {
    align-self: stretch;
    height: clamp(520px, 58vh, 620px);
    gap: clamp(6px, 1vh, 10px);
    padding-left: 18px;
  }

  .home-mix-process .visual-process-card {
    grid-template-columns: 40px 46px minmax(0, 1fr);
    gap: 10px;
    padding: clamp(8px, 1.2vh, 12px);
  }

  .home-mix-process .visual-process-card span {
    width: 36px;
    height: 36px;
    font-size: .72rem;
  }

  .home-mix-process .visual-process-icon {
    width: 46px;
    height: 46px;
  }

  .home-mix-process .visual-process-icon svg {
    width: 25px;
    height: 25px;
  }

  .home-mix-process .visual-process-card strong {
    font-size: clamp(.84rem, .86vw, .96rem);
  }

  .home-mix-process .visual-process-card p {
    margin-top: 4px;
    font-size: .72rem;
    line-height: 1.25;
  }
}

@media (min-width: 1500px) {
  .process-map-only .journey-map {
    grid-template-columns: minmax(0, .96fr) minmax(520px, .84fr);
  }

  .home-mix-process .process-map-only .latin-map,
  .home-v2-journey .process-map-only .latin-map,
  .home-mix-process .market-fit,
  .home-v2-journey .market-fit,
  .home-mix-process .visual-process {
    height: clamp(560px, 54vh, 660px);
  }
}

@media (max-width: 980px) {
  .process-map-only .journey-map {
    grid-template-columns: 1fr;
  }

  .process-map-only .latin-map {
    height: min(680px, 118vw);
  }

  .market-fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes visualProcessLine {
  to { background-position: 0 -220%; }
}

@keyframes visualProcessFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.facility-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #071c28;
  box-shadow: var(--shadow-soft);
}

.facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(7,28,40,.86) 100%);
}

.facility-card figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.facility-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.oem-more-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.oem-more-grid article {
  min-height: 210px;
}

.oem-more-grid h3 {
  font-size: 1.12rem;
}

.oem-more-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.exhibition-collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
  align-self: stretch;
}

.exhibition-collage img {
  min-height: 0;
  box-shadow: var(--shadow-soft);
}

.exhibition-collage img:first-child {
  grid-row: 1 / -1;
}

.exhibition-wall {
  --exhibition-gap: 12px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  gap: var(--exhibition-gap);
  min-height: 0;
  align-self: stretch;
  align-items: stretch;
}

.exhibition-wall__left,
.exhibition-wall__right {
  display: grid;
  min-height: 0;
}

.exhibition-wall__left {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--exhibition-gap);
}

.exhibition-wall__right {
  grid-template-columns: 1fr;
  gap: calc(var(--exhibition-gap) / 2);
}

.exhibition-wall__item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface-2);
  aspect-ratio: 1 / 1;
}

.exhibition-wall__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 28, 40, .68));
  pointer-events: none;
}

.exhibition-wall__item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exhibition-wall__item img {
  transition: transform .55s var(--ease);
}

.exhibition-wall__item:hover img {
  transform: scale(1.045);
}

.exhibition-wall__item--hero {
  grid-column: 1 / -1;
}

.exhibition-wall__item--tall {
  grid-column: auto;
  grid-row: auto;
}

.exhibition-wall__item--wide {
  grid-column: auto;
  grid-row: auto;
}

@media (max-width: 1100px) {
  .home-v2-hero__inner {
    grid-template-columns: 1fr;
  }
  .home-v2-hero__media {
    display: none;
  }
  .home-v2-product-grid,
  .oem-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-v2-product-card {
    min-height: 340px;
  }
  .audience-gallery {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: hidden;
    box-shadow: none;
  }
  .audience-gallery .gallery-item,
  .audience-gallery .case-featured,
  .audience-gallery:hover .gallery-item,
  .audience-gallery:focus-within .gallery-item,
  .audience-gallery .gallery-item:hover,
  .audience-gallery .gallery-item:focus,
  .audience-gallery .gallery-item:focus-visible {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 96px;
    height: 96px;
    cursor: pointer;
    transition:
      height .46s var(--ease),
      min-height .46s var(--ease),
      filter .34s var(--ease);
  }
  .audience-gallery .gallery-item.is-active,
  .audience-gallery:hover .gallery-item.is-active,
  .audience-gallery:focus-within .gallery-item.is-active,
  .audience-gallery .gallery-item.is-active:hover,
  .audience-gallery .gallery-item.is-active:focus,
  .audience-gallery .gallery-item.is-active:focus-visible {
    min-height: clamp(350px, 46vw, 480px);
    height: clamp(350px, 46vw, 480px);
  }
  .audience-gallery .gallery-item:not(.is-active) img,
  .audience-gallery:hover .gallery-item:not(.is-active) img,
  .audience-gallery:focus-within .gallery-item:not(.is-active) img {
    filter: brightness(.62) saturate(.86);
    transform: none;
  }
  .audience-gallery .gallery-item.is-active img,
  .audience-gallery:hover .gallery-item.is-active img,
  .audience-gallery:focus-within .gallery-item.is-active img {
    filter: brightness(.9) saturate(1.05);
    transform: scale(1.035);
  }
  .audience-gallery .gallery-item:not(.is-active) figcaption,
  .audience-gallery:hover .gallery-item:not(.is-active) figcaption,
  .audience-gallery:focus-within .gallery-item:not(.is-active) figcaption {
    opacity: 0;
    pointer-events: none;
  }
  .audience-gallery .gallery-item.is-active figcaption,
  .audience-gallery:hover .gallery-item.is-active figcaption,
  .audience-gallery:focus-within .gallery-item.is-active figcaption {
    inset: auto 0 0;
    align-content: end;
    justify-items: start;
    min-height: 64%;
    padding: clamp(24px, 4vw, 40px);
    background: linear-gradient(180deg, transparent 0%, rgba(7,28,40,.5) 34%, rgba(7,28,40,.94) 100%);
    opacity: 1;
    pointer-events: auto;
  }
  .audience-gallery .gallery-item.is-active figcaption span,
  .audience-gallery .gallery-item.is-active figcaption small {
    opacity: 1;
    transform: translateY(0);
  }
  .audience-gallery .gallery-item.is-active figcaption strong {
    opacity: 1;
    font-size: clamp(1.45rem, 3.4vw, 2.1rem);
  }
  .serve-grid,
  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-v2-hero__inner {
    padding-top: 116px;
    padding-bottom: 86px;
  }
  .home-v2-hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.35rem);
  }
  .home-v2-proof {
    display: none;
  }
  .home-v2-stats {
    margin-top: 0;
  }
  .audience-gallery .gallery-item,
  .audience-gallery .case-featured,
  .audience-gallery:hover .gallery-item,
  .audience-gallery:focus-within .gallery-item,
  .audience-gallery .gallery-item:hover,
  .audience-gallery .gallery-item:focus,
  .audience-gallery .gallery-item:focus-visible {
    min-height: 84px;
    height: 84px;
  }
  .audience-gallery .gallery-item.is-active,
  .audience-gallery:hover .gallery-item.is-active,
  .audience-gallery:focus-within .gallery-item.is-active,
  .audience-gallery .gallery-item.is-active:hover,
  .audience-gallery .gallery-item.is-active:focus,
  .audience-gallery .gallery-item.is-active:focus-visible {
    min-height: clamp(320px, 78vw, 430px);
    height: clamp(320px, 78vw, 430px);
  }
  .audience-gallery .gallery-item.is-active figcaption {
    min-height: 68%;
    padding: 22px;
  }
  .audience-gallery .gallery-item.is-active figcaption strong {
    font-size: clamp(1.22rem, 6vw, 1.72rem);
  }
  .home-v2-stats__grid,
  .serve-grid,
  .home-v2-product-grid,
  .facility-grid,
  .oem-more-grid,
  .climate-panel {
    grid-template-columns: 1fr;
  }
  .home-v2-stats__grid div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-v2-stats__grid div:last-child {
    border-bottom: 0;
  }
  .serve-card,
  .home-v2-product-card,
  .facility-card {
    min-height: 310px;
  }
  .journey-map {
    min-height: auto;
  }
  .process-map-only .journey-map {
    grid-template-columns: 1fr;
  }
  .process-map-layout {
    grid-template-columns: 1fr;
  }
  .process-map-layout .latin-map {
    height: min(720px, 150vw);
  }
  .process-map-layout .journey-steps {
    grid-template-rows: auto;
  }
  .process-map-layout .journey-steps div {
    min-height: 96px;
  }
  .visual-process {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .market-fit {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .market-fit-card {
    min-height: 160px;
  }
  .latin-map {
    height: min(620px, 132vw);
  }
  .map-dot {
    max-width: 96px;
    min-height: 20px;
    padding: 4px 6px 4px 15px;
    font-size: .52rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .map-dot::before,
  .map-dot::after {
    left: 7px;
  }
  .map-dot::before {
    width: 6px;
    height: 6px;
  }
  .market-config-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding-top: 0;
  }
  .market-config-cards .climate-card {
    min-height: 0;
  }
  .journey-steps div {
    grid-template-columns: 44px 1fr;
  }
  .journey-steps span {
    width: 44px;
    height: 44px;
  }
  .exhibition-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
  }
  .exhibition-collage img:first-child {
    grid-row: auto;
  }
  .exhibition-wall {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .exhibition-wall__right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--exhibition-gap);
  }
}

@media (max-width: 640px) {
  .exhibition-wall {
    grid-template-columns: 1fr;
  }
  .exhibition-wall__left,
  .exhibition-wall__right {
    grid-template-columns: 1fr;
  }
  .exhibition-wall__item--hero {
    grid-column: auto;
  }
}

/* ============================================================
   INTEGRATED HOME: OLD HERO + NEW DISTRIBUTOR SECTIONS
   ============================================================ */
.home-mix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.home-mix-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 5px;
  border: 1px solid rgba(8,145,178,.24);
  background: rgba(8,145,178,.08);
  color: var(--ink-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: .84rem;
  font-weight: 800;
}

.home-mix-trust {
  background:
    radial-gradient(circle at 12% 18%, rgba(34,211,238,.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
}

.home-mix-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, .86fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.home-mix-trust__copy {
  display: grid;
  align-content: center;
}

.home-mix-trust__copy .lead {
  margin-top: 20px;
}

.home-mix-trust__proof {
  display: flex;
  min-height: 100%;
}

.home-mix-trust__photo {
  flex: 1 1 auto;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.home-mix-trust__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 34vw, 620px);
  object-fit: cover;
}

.home-mix-trust__advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 4vw, 52px);
}

.home-mix-trust__advantages div {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(8,145,178,.18);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
}

.home-mix-trust__advantages strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.home-mix-trust__advantages span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
}

.home-mix-components {
  background:
    radial-gradient(circle at 12% 18%, rgba(34,211,238,.12), transparent 28%),
    linear-gradient(180deg, #fff, var(--surface-2));
}

.home-mix-products .home-v2-product-grid {
  min-height: 440px;
}

.home-mix-products .home-v2-product-card {
  min-height: 440px;
}

.home-mix-exhibition .manufacturing-copy {
  align-content: center;
}

@media (max-width: 980px) {
  .home-mix-trust__grid {
    grid-template-columns: 1fr;
  }
  .home-mix-trust__advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-mix-trust__advantages {
    grid-template-columns: 1fr;
  }
  .home-mix-trust__photo img {
    min-height: 280px;
  }
  .visual-process-card {
    min-height: 104px;
  }
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  touch-action: pan-y;
  background: #06295a;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .9s var(--ease), visibility .9s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide .hero-bg {
  position: absolute; inset: 0;
  background-image: var(--slide-bg);
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero-slide::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(3, 18, 42, .88) 0%,
      rgba(4, 39, 83, .74) 34%,
      rgba(5, 56, 112, .34) 64%,
      rgba(3, 18, 42, .12) 100%
    ),
    radial-gradient(circle at 20% 46%, rgba(34,211,238,.22), transparent 30%);
}
.hero-slide::after {
  content: ""; position: absolute; inset: auto 0 0; z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(7,28,40,.24) 44%, rgba(7,28,40,.72));
}
.hero-carousel .hero-inner {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: start;
  margin: 0 auto;
  padding: 136px 0 118px;
}
.hero-carousel .hero-copy {
  width: min(900px, 60vw);
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  color: #fff;
  text-align: left;
  text-shadow: 0 12px 34px rgba(0,0,0,.22);
}
.hero-carousel .eyebrow {
  margin-bottom: 18px;
  color: rgba(255,255,255,.88);
}
.hero-carousel .eyebrow::before {
  background: linear-gradient(90deg, var(--teal-3), rgba(255,255,255,.08));
}
.hero-carousel h1 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 4.95rem;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-carousel h1 span {
  display: block;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #b9f4ff;
}
.hero-carousel .lead {
  color: rgba(255,255,255,.82);
  max-width: 590px;
  margin-top: 24px;
  font-size: 1.12rem;
  line-height: 1.68;
}
.hero-carousel .hero-actions {
  margin-top: 32px;
  gap: 14px;
}
.hero-carousel .btn {
  min-width: 168px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.46);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.hero-carousel .btn:hover {
  color: #fff;
  background: rgba(255,255,255,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
/* Dots + arrows */
.carousel-dots {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; display: flex; gap: 9px; align-items: center;
}
.carousel-dots .dot {
  width: 9px; height: 9px; border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
  transition: background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.carousel-dots .dot.is-active {
  width: 28px;
  background: #fff;
  transform: none;
}
.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 40px; height: 80px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  color: #fff; font-size: 1.75rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .28s var(--ease);
}
.carousel-prev:hover, .carousel-next:hover {
  background: rgba(255,255,255,.24); transform: translateY(-50%);
}
.carousel-prev { left: 36px; }
.carousel-next { right: 36px; }

/* Bright integrated homepage concept */
body.home-bright-page .site-header:not(.is-scrolled) {
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
body.home-bright-page .site-header:not(.is-scrolled) .brand img {
  filter: none;
}
body.home-bright-page .site-header:not(.is-scrolled) .brand-note {
  border-left-color: var(--line-strong);
  color: var(--muted-2);
  text-shadow: none;
}
body.home-bright-page .site-header:not(.is-scrolled) .main-nav a {
  color: var(--muted-2);
  text-shadow: none;
}
body.home-bright-page .site-header:not(.is-scrolled) .main-nav a:hover {
  color: var(--teal);
  background: transparent;
  box-shadow: none;
}
body.home-bright-page .site-header:not(.is-scrolled) .main-nav a.is-active {
  color: var(--teal);
}
body.home-bright-page .site-header:not(.is-scrolled) .main-nav a::after {
  background: var(--teal);
}
body.home-bright-page .site-header:not(.is-scrolled) .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  border-color: transparent;
  backdrop-filter: none;
}
body.home-bright-page .site-header:not(.is-scrolled) .nav-toggle {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
}
body.home-bright-page .site-header:not(.is-scrolled) .nav-toggle[aria-expanded="true"] {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}
body.home-bright-page .hero-carousel {
  background: #eef8fb;
}
body.home-bright-page:not(.home-b2b-optimized) .hero-slide:nth-of-type(n+6) {
  display: none;
}
body.home-bright-page .hero-slide .hero-bg {
  filter: saturate(.98) contrast(1.02);
}
body.home-bright-page .hero-slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(246,252,254,.91) 30%,
      rgba(237,248,252,.58) 52%,
      rgba(255,255,255,.04) 78%
    ),
    radial-gradient(circle at 18% 44%, rgba(34,211,238,.2), transparent 32%);
}
body.home-bright-page .hero-slide::after {
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.64) 58%, #fff);
}
body.home-bright-page.home-b2b-optimized .hero-slide .hero-bg {
  filter: none;
  transform: none;
  animation: none;
}
body.home-bright-page.home-b2b-optimized .hero-slide::before {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.3) 0%,
    rgba(255,255,255,.14) 30%,
    rgba(255,255,255,0) 58%
  );
}
body.home-bright-page.home-b2b-optimized .hero-slide::after {
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.16));
}
body.home-bright-page .hero-carousel .hero-copy {
  color: var(--ink);
  text-shadow: none;
}
body.home-bright-page .hero-carousel .eyebrow {
  color: var(--teal);
}
body.home-bright-page .hero-carousel .eyebrow::before {
  background: linear-gradient(90deg, var(--teal), rgba(8,145,178,.08));
}
body.home-bright-page .hero-carousel h1 {
  color: var(--ink);
}
body.home-bright-page .hero-carousel h1 span {
  color: var(--teal);
}
body.home-bright-page .hero-carousel .lead {
  color: var(--muted-2);
}
body.home-bright-page .hero-carousel .btn {
  color: var(--ink-2);
  background: rgba(255,255,255,.82);
  border-color: rgba(8, 40, 60, .16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
body.home-bright-page .hero-carousel .btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  border-color: transparent;
}
body.home-bright-page .hero-carousel .btn:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 28, 45, .11);
}
body.home-bright-page .hero-carousel .btn.primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  box-shadow: none;
}
body.home-bright-page.home-b2b-optimized .hero-carousel .btn:hover,
body.home-bright-page.home-b2b-optimized .carousel-prev,
body.home-bright-page.home-b2b-optimized .carousel-next {
  box-shadow: none;
  backdrop-filter: none;
}
body.home-bright-page:not(.home-b2b-optimized) .carousel-dots .dot:nth-child(n+6) {
  display: none;
}
body.home-bright-page .carousel-dots .dot {
  background: rgba(8, 145, 178, .28);
}
body.home-bright-page .carousel-dots .dot.is-active {
  background: var(--teal);
}
body.home-bright-page .carousel-prev,
body.home-bright-page .carousel-next {
  color: var(--teal);
  background: rgba(255,255,255,.72);
  border-color: rgba(8, 145, 178, .28);
  box-shadow: 0 14px 34px rgba(8, 28, 45, .1);
}
body.home-bright-page .carousel-prev:hover,
body.home-bright-page .carousel-next:hover {
  background: #fff;
}
body.home-bright-page.home-b2b-optimized .carousel-prev,
body.home-bright-page.home-b2b-optimized .carousel-next {
  color: rgba(8,145,178,.72);
  background: rgba(255,255,255,.28);
  border-color: rgba(8,145,178,.18);
}
body.home-bright-page.home-b2b-optimized .carousel-prev:hover,
body.home-bright-page.home-b2b-optimized .carousel-next:hover {
  color: rgba(8,145,178,.9);
  background: rgba(255,255,255,.52);
}

/* ============================================================
   STATS MARQUEE
   ============================================================ */
/* Cuadrícula de estadísticas (sección Presentación) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(40px, 5vw, 64px);
}
.stats-grid .metric {
  padding: 22px 16px;
  box-shadow: var(--shadow-soft);
}
.stats-grid .metric strong {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}
.stats-grid .metric > span {
  font-size: .84rem;
}

/* ============================================================
   CERTIFICATIONS BAND
   ============================================================ */
.cert-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.cert-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 24px 22px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.cert-item:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(8,145,178,.3);
}
.cert-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(8,145,178,.12), rgba(8,145,178,.06));
  border: 1px solid rgba(8,145,178,.2);
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .86rem;
}
.cert-item h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--ink);
}
.cert-item p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.certificate-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
}
.certificate-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.certificate-showcase {
  display: flex;
  gap: 20px;
  transition: transform .48s var(--ease);
  will-change: transform;
  padding-top:5px;
}
.certificate-card {
  flex: 0 0 calc((100% - 60px) / 4);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  text-align: center;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  box-shadow: none;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.certificate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(8,145,178,.32);
}
.certificate-media {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(8,40,60,.14);
  border-radius: 10px;
  background: #fff;
}
.certificate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.certificate-card h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
}
.certificate-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.certificate-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 88px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.certificate-nav:hover,
.certificate-nav:focus-visible {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.certificate-nav:disabled {
  opacity: .38;
  cursor: default;
  pointer-events: none;
}
.certificate-carousel.is-dragging .certificate-viewport {
  cursor: grabbing;
}
.certificate-carousel.is-static {
  grid-template-columns: minmax(0, 1fr);
}
.certificate-carousel.is-static .certificate-nav,
.certificate-carousel.is-static .certificate-dots {
  display: none;
}
.certificate-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
}
.certificate-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(8,40,60,.24);
  cursor: pointer;
  transition: width .24s var(--ease), background .24s var(--ease);
}
.certificate-dots button.is-active {
  width: 28px;
  background: var(--teal);
}

/* ============================================================
   OEM STEPS
   ============================================================ */
body.home-b2b-optimized .home-oem-process {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(240,247,251,.78) 46%, rgba(240,247,251,.72) 100%),
    url("images/backgrounds/oem-process-factory-4k.avif") center / cover no-repeat;
}
body.home-b2b-optimized .home-oem-process .oem-step {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
}
.oem-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.oem-step {
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.oem-step:hover {
  transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(8,145,178,.3);
}
.oem-step .step-icon {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; margin-bottom: 18px; border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff;
  box-shadow: 0 8px 20px rgba(8,145,178,.28);
}
.oem-step .step-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.oem-step h4 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--ink);
}
.oem-step p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.58; }

/* ============================================================
   ABOUT TRUST PAGE
   ============================================================ */
.trust-hero .section-actions { margin-top: 28px; }

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(0,1.08fr) minmax(0,.92fr);
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}
.trust-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.trust-panel-highlight {
  border-color: rgba(217,119,6,.26);
  background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}
.trust-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}
.trust-panel p {
  color: var(--muted-2);
  font-size: .98rem;
}
.trust-panel .section-kicker {
  color: var(--amber);
}
.trust-panel .section-kicker::before {
  background: linear-gradient(90deg, var(--amber), transparent);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: qc-step;
}
.process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  color: var(--muted-2);
}
.process-list li::before {
  counter-increment: qc-step;
  content: counter(qc-step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal-bg);
  border: 1px solid rgba(8,145,178,.22);
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.process-list strong {
  display: block;
  grid-column: 2;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.25;
}
.process-list span {
  display: block;
  grid-column: 2;
  margin-top: 3px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.doc-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--ink-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: .88rem;
  font-weight: 700;
}

/* Responsive: nuevos componentes */
@media (max-width: 980px) {
  .hero-carousel { min-height: 100vh; }
  .hero-carousel .hero-inner {
    justify-items: start;
    padding: 118px 0 104px;
  }
  .hero-carousel .hero-copy {
    width: min(900px, 88vw);
    margin-left: 0;
    padding-left: 0;
  }
  .hero-carousel h1 {
    font-size: 4rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .carousel-prev, .carousel-next { width: 40px; height: 80px; border-radius: 10px; font-size: 1.3rem; }
  .cert-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .certificate-card { flex-basis: calc((100% - 20px) / 2); }
  .oem-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-carousel { min-height: 100vh; }
  .hero-carousel .hero-inner {
    min-height: 100vh;
    padding: 104px 0 96px;
  }
  .hero-carousel .hero-copy {
    width: 100%;
    padding-left: 0;
  }
  .hero-carousel h1 {
    font-size: 2.85rem;
    line-height: 1.04;
  }
  .hero-carousel .lead {
    font-size: 1.02rem;
    line-height: 1.58;
  }
  .carousel-dots {
    bottom: 30px;
  }
  body[data-page="inicio"] .carousel-prev,
  body[data-page="inicio"] .carousel-next {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .cert-row, .oem-steps { grid-template-columns: 1fr; }
  .certificate-carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .certificate-card { flex-basis: 100%; }
  .certificate-nav {
    display: none;
  }
  .certificate-dots {
    margin-top: 16px;
  }
  .trust-panel { padding: 22px; }
  .doc-list { grid-template-columns: 1fr; }
  .footer {
    padding: 30px 0 30px;
}
}

/* ============================================================
   DIRECTIONAL BUTTON FILL
   El relleno nace desde el borde por el que entra el puntero.
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .has-directional-fill {
    --fill-origin-x: 50%;
    --fill-origin-y: 50%;
    --fill-scale: 0;
    --directional-fill: linear-gradient(135deg, var(--teal-2), var(--teal));
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .has-directional-fill::before {
    content: "";
    position: absolute;
    left: var(--fill-origin-x);
    top: var(--fill-origin-y);
    z-index: -1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--directional-fill);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .5s var(--ease);
    will-change: transform;
  }

  .has-directional-fill.is-directional-active::before {
    transform: translate(-50%, -50%) scale(var(--fill-scale));
  }

  .has-directional-fill.is-directional-active {
    color: #fff !important;
  }

  .has-directional-fill:hover,
  .has-directional-fill:focus-visible {
    transform: none !important;
  }

  .nav-cta.has-directional-fill,
  .btn.primary.has-directional-fill {
    --directional-fill: linear-gradient(135deg, #08738d, #07566d);
  }

  .btn.amber.has-directional-fill {
    --directional-fill: linear-gradient(135deg, #c45f08, #934208);
  }

  .btn.whatsapp.has-directional-fill {
    --directional-fill: linear-gradient(135deg, #096f63, #043d38);
  }

  .btn.whatsapp.has-directional-fill.is-directional-active {
    color: #fff !important;
  }

  .btn.ghost.has-directional-fill:hover {
    background: transparent;
  }

  .filter-button.has-directional-fill,
  .pager-btn.has-directional-fill {
    --directional-fill: linear-gradient(135deg, var(--teal-2), var(--teal));
  }

  .filter-button.is-active.has-directional-fill {
    --directional-fill: linear-gradient(135deg, #08738d, #07566d);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-directional-fill::before {
    transition: none;
  }
}
