/* ============================================================
   LogyNet WMS — sistema de diseño v2
   Modo claro, acento azul avaro, Figtree self-hosted.
   ============================================================ */

/* ---------- Fuentes ---------- */
@font-face { font-family: 'Figtree'; src: url('../fonts/figtree-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Figtree'; src: url('../fonts/figtree-medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Figtree'; src: url('../fonts/figtree-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Figtree'; src: url('../fonts/figtree-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --azul-marca: #3773FE;
  --azul-accion: #2558D9;
  --azul-accion-hover: #1E49B8;
  --azul-oscuro: #0D173B;
  --tinta: #1B2430;
  --tinta-suave: #5B6472;
  --fondo: #FFFFFF;
  --fondo-alterno: #EFF4FF;
  --superficie: #F7F9FC;
  --borde: #E4E9F0;
  --exito: #1A7F4B;
  --error: #C2362B;
  --sombra-hover: 0 12px 32px rgba(13, 23, 59, .10);
  --radio: 14px;
  --radio-chico: 10px;
  --fuente: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ancho: 1140px;
  --seccion-y: clamp(3.5rem, 2.5rem + 4vw, 6rem);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--fuente);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--tinta);
  background: var(--fondo);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--azul-accion); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--azul-accion-hover); }
:focus-visible { outline: 3px solid var(--azul-marca); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { color: var(--azul-oscuro); line-height: 1.15; margin: 0 0 .6em; }
h1 { font-size: clamp(2.25rem, 1.6rem + 3vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.25rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1em; max-width: 62ch; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: .35em; }
strong { font-weight: 600; color: var(--azul-oscuro); }
abbr[title] { text-decoration: underline dotted; cursor: help; }

.centrado { text-align: center; }
.centrado p, .centrado h2 { margin-left: auto; margin-right: auto; }
.tinta-suave { color: var(--tinta-suave); }
.contenedor { max-width: var(--ancho); margin: 0 auto; padding: 0 20px; }
.contenedor-angosto { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* Etiqueta pequeña sobre los títulos de sección */
.antetitulo {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--azul-accion);
  background: var(--fondo-alterno);
  border-radius: 999px;
  padding: .3em 1em;
  margin-bottom: 1rem;
}

/* ---------- Botones ---------- */
.boton {
  display: inline-block;
  font-family: var(--fuente);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: .95em 1.8em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.boton-primario { background: var(--azul-accion); color: #fff; }
.boton-primario:hover { background: var(--azul-accion-hover); color: #fff; transform: translateY(-1px); }
.boton-fantasma { background: transparent; color: var(--azul-accion); border-color: var(--azul-accion); }
.boton-fantasma:hover { background: var(--fondo-alterno); color: var(--azul-accion-hover); }
.boton-blanco { background: #fff; color: var(--azul-oscuro); }
.boton-blanco:hover { background: var(--fondo-alterno); color: var(--azul-oscuro); }
.boton-grande { font-size: 1.125rem; padding: 1.05em 2.2em; }
.nota-cta { font-size: .9rem; color: var(--tinta-suave); margin-top: .75rem; }

/* ---------- Encabezado ---------- */
.encabezado {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.encabezado.compacto { border-bottom-color: var(--borde); box-shadow: 0 2px 16px rgba(13, 23, 59, .06); }
.encabezado-interno {
  max-width: var(--ancho); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 1.5rem;
  height: 76px;
  transition: height 180ms ease;
}
.encabezado.compacto .encabezado-interno { height: 62px; }
.marca { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.marca img { width: 42px; height: auto; }
.marca span { font-weight: 700; font-size: 1.25rem; color: var(--azul-oscuro); letter-spacing: -0.01em; }
.marca span b { color: var(--azul-accion); font-weight: 700; }
.navegacion { display: flex; align-items: center; gap: 1.4rem; }
.navegacion a { color: var(--tinta); text-decoration: none; font-weight: 500; font-size: .975rem; padding: .35em 0; border-bottom: 2px solid transparent; }
.navegacion a:hover { color: var(--azul-accion); }
.navegacion a.activo { color: var(--azul-accion); border-bottom-color: var(--azul-accion); }
.navegacion .boton { font-size: .925rem; padding: .8em 1.5em; }
.boton-menu { display: none; background: none; border: none; padding: .4rem; cursor: pointer; }
.boton-menu svg { display: block; }

@media (max-width: 900px) {
  .boton-menu { display: block; }
  .navegacion {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--borde);
    padding: .5rem 20px 1.25rem;
    box-shadow: 0 16px 32px rgba(13, 23, 59, .08);
  }
  .navegacion.abierta { display: flex; }
  .navegacion a { padding: .8em 0; border-bottom: 1px solid var(--superficie); font-size: 1.05rem; }
  .navegacion a.activo { border-bottom-color: var(--superficie); }
  .navegacion .boton { margin-top: 1rem; text-align: center; }
}

/* ---------- Secciones ---------- */
.seccion { padding: var(--seccion-y) 0; }
.seccion-alterna { background: var(--fondo-alterno); }
.seccion-superficie { background: var(--superficie); }
.seccion-oscura { background: var(--azul-oscuro); }
.seccion-oscura h2, .seccion-oscura h3 { color: #fff; }
.seccion-oscura p { color: rgba(255, 255, 255, .82); }
.encabezado-seccion { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.encabezado-seccion p { margin-left: auto; margin-right: auto; color: var(--tinta-suave); font-size: 1.125rem; }

/* ---------- Héroe ---------- */
.heroe { position: relative; overflow: hidden; background: var(--azul-oscuro); }
.heroe-fondo { position: absolute; inset: 0; }
.heroe-fondo img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.heroe-fondo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13, 23, 59, .92) 25%, rgba(13, 23, 59, .55) 70%, rgba(13, 23, 59, .35));
}
.heroe-contenido {
  position: relative; z-index: 1;
  max-width: var(--ancho); margin: 0 auto; padding: clamp(4rem, 3rem + 5vw, 7.5rem) 20px;
}
.heroe h1 { color: #fff; max-width: 15em; }
.heroe .bajada { color: rgba(255, 255, 255, .88); font-size: clamp(1.125rem, 1rem + .5vw, 1.3rem); max-width: 34em; margin-bottom: 2rem; }
.heroe .bajada strong { color: #fff; }
.heroe-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.heroe .nota-cta { color: rgba(255, 255, 255, .7); width: 100%; }

/* ---------- Franja de logos ---------- */
.franja-logos { padding: 2.25rem 0; border-bottom: 1px solid var(--borde); }
.franja-logos p { text-align: center; font-size: .875rem; color: var(--tinta-suave); margin-bottom: 1.25rem; }
.logos-clientes { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.logos-clientes img { height: 34px; width: auto; filter: grayscale(1) opacity(.55); transition: filter 180ms ease; }
.logos-clientes img:hover { filter: none; }

/* ---------- Tarjetas y grillas ---------- */
.grilla { display: grid; gap: 1.5rem; }
.grilla-2 { grid-template-columns: repeat(2, 1fr); }
.grilla-3 { grid-template-columns: repeat(3, 1fr); }
.grilla-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grilla-3, .grilla-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grilla-2, .grilla-3, .grilla-4 { grid-template-columns: 1fr; } }

.tarjeta {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 1.75rem;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.tarjeta:hover { box-shadow: var(--sombra-hover); }
.tarjeta h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.tarjeta p { font-size: .975rem; color: var(--tinta-suave); margin-bottom: 0; }
.tarjeta p + p, .tarjeta ul { margin-top: .75em; }
.tarjeta .icono { margin-bottom: 1.1rem; }
.tarjeta-enlace { text-decoration: none; color: inherit; display: block; }
.tarjeta-enlace:hover { color: inherit; }
.mas { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .95rem; color: var(--azul-accion); }
.tarjeta:hover .mas { text-decoration: underline; }

.icono {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--fondo-alterno); color: var(--azul-accion);
}
.icono svg { width: 26px; height: 26px; }

/* Tarjeta con foto arriba */
.tarjeta-foto { overflow: hidden; padding: 0; }
.tarjeta-foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tarjeta-foto .cuerpo { padding: 1.5rem 1.75rem 1.75rem; }

/* ---------- Bento (alcance del producto) ---------- */
.bento { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.bento .celda-grande { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bento .celda-grande img { border-radius: var(--radio-chico); margin-top: auto; aspect-ratio: 16 / 9; object-fit: cover; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .bento .celda-grande { grid-column: span 2; grid-row: auto; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .bento .celda-grande { grid-column: auto; } }

/* ---------- Dos columnas texto+imagen ---------- */
.dupla { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.dupla img { border-radius: var(--radio); border: 1px solid var(--borde); }
.dupla .invertida { order: -1; }
@media (max-width: 820px) { .dupla { grid-template-columns: 1fr; } .dupla .invertida { order: 0; } }

/* ---------- Pasos (proceso) ---------- */
.pasos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: paso; }
@media (max-width: 820px) { .pasos { grid-template-columns: 1fr; } }
.paso { position: relative; background: #fff; border: 1px solid var(--borde); border-radius: var(--radio); padding: 1.75rem; counter-increment: paso; }
.paso::before {
  content: counter(paso);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--azul-accion); color: #fff;
  font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.paso h3 { font-size: 1.15rem; }
.paso p { font-size: .95rem; color: var(--tinta-suave); margin-bottom: 0; }
.paso .tiempo { display: inline-block; margin-top: .9rem; font-size: .85rem; font-weight: 600; color: var(--azul-accion); background: var(--fondo-alterno); border-radius: 999px; padding: .25em .9em; }

/* ---------- Flujo del depósito (diagrama 4 pasos) ---------- */
.flujo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .flujo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .flujo { grid-template-columns: 1fr; } }
.flujo-paso { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radio); background: #fff; border: 1px solid var(--borde); position: relative; }
.flujo-paso img { border-radius: var(--radio-chico); aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 1rem; }
.flujo-paso h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.flujo-paso p { font-size: .9rem; color: var(--tinta-suave); margin: 0 auto; }
.flujo-paso .numero { position: absolute; top: .9rem; left: .9rem; z-index: 1; width: 32px; height: 32px; border-radius: 50%; background: var(--azul-accion); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .95rem; }

/* ---------- Cifras ---------- */
.cifras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 620px) { .cifras { grid-template-columns: 1fr; } }
.cifra strong { display: block; font-size: clamp(2.25rem, 2rem + 1.5vw, 3rem); font-weight: 700; color: var(--azul-marca); line-height: 1.1; }
.seccion-oscura .cifra strong { color: #fff; }
.cifra span { color: var(--tinta-suave); font-size: 1rem; }
.seccion-oscura .cifra span { color: rgba(255, 255, 255, .75); }

/* ---------- Cita / testimonio ---------- */
.cita {
  background: #fff; border: 1px solid var(--borde); border-radius: var(--radio);
  padding: 2rem 2.25rem; max-width: 760px; margin: 0 auto;
}
.cita blockquote { margin: 0 0 1rem; font-size: 1.2rem; line-height: 1.5; color: var(--azul-oscuro); font-weight: 500; }
.cita blockquote::before { content: '“'; color: var(--azul-marca); font-size: 2.5rem; line-height: 0; vertical-align: -0.35em; margin-right: .1em; }
.cita figcaption { color: var(--tinta-suave); font-size: .95rem; }

/* ---------- Tabla comparativa ---------- */
.envoltorio-tabla { overflow-x: auto; }
.tabla-comparativa { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--borde); border-radius: var(--radio); overflow: hidden; }
.tabla-comparativa th, .tabla-comparativa td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--borde); vertical-align: top; font-size: .975rem; }
.tabla-comparativa th { background: var(--superficie); color: var(--azul-oscuro); font-weight: 600; }
.tabla-comparativa th:nth-child(3), .tabla-comparativa td:nth-child(3) { background: var(--fondo-alterno); }
.tabla-comparativa tr:last-child td { border-bottom: none; }
.tabla-comparativa td:first-child { font-weight: 600; color: var(--azul-oscuro); white-space: nowrap; }

/* ---------- Acordeones ---------- */
.acordeon { border: 1px solid var(--borde); border-radius: var(--radio-chico); background: #fff; margin-bottom: .75rem; }
.acordeon summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 600; color: var(--azul-oscuro); font-size: 1.02rem;
  position: relative;
}
.acordeon summary::-webkit-details-marker { display: none; }
.acordeon summary::after {
  content: ''; position: absolute; right: 1.3rem; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--azul-accion); border-bottom: 2px solid var(--azul-accion);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}
.acordeon[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.acordeon .contenido { padding: 0 1.4rem 1.25rem; color: var(--tinta-suave); font-size: .975rem; }
.acordeon .contenido p:last-child { margin-bottom: 0; }

/* ---------- Formularios ---------- */
.formulario { display: grid; gap: 1.15rem; }
.campo label { display: block; font-weight: 600; font-size: .95rem; color: var(--azul-oscuro); margin-bottom: .35rem; }
.campo label .opcional { font-weight: 400; color: var(--tinta-suave); font-size: .85rem; }
.campo input, .campo textarea, .campo select {
  width: 100%; font-family: var(--fuente); font-size: 1rem; color: var(--tinta);
  padding: .8em 1em; border: 1px solid var(--borde); border-radius: var(--radio-chico);
  background: #fff; transition: border-color 150ms ease, box-shadow 150ms ease;
}
.campo input:focus, .campo textarea:focus { outline: none; border-color: var(--azul-accion); box-shadow: 0 0 0 3px rgba(55, 115, 254, .18); }
.campo textarea { min-height: 110px; resize: vertical; }
.campo .ayuda { font-size: .85rem; color: var(--tinta-suave); margin-top: .3rem; }
.campo.invalido input, .campo.invalido textarea { border-color: var(--error); }
.campo .error { display: none; font-size: .85rem; color: var(--error); margin-top: .3rem; }
.campo.invalido .error { display: block; }
.trampa { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.aviso { border-radius: var(--radio-chico); padding: 1rem 1.25rem; font-size: .975rem; }
.aviso-exito { background: #E7F5EC; color: var(--exito); border: 1px solid #BCE3CB; }
.aviso-error { background: #FCEBE9; color: var(--error); border: 1px solid #F2C6C1; }

/* ---------- CTA final ---------- */
.cta-final { background: linear-gradient(120deg, #12224F 0%, var(--azul-oscuro) 55%, #17275a 100%); }
.cta-final .contenedor { text-align: center; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255, 255, 255, .82); margin-left: auto; margin-right: auto; }

/* ---------- Pie ---------- */
.pie { background: var(--azul-oscuro); color: rgba(255, 255, 255, .78); padding: 4rem 0 2rem; font-size: .95rem; }
.pie a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.pie a:hover { color: #fff; text-decoration: underline; }
.pie-columnas { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .pie-columnas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pie-columnas { grid-template-columns: 1fr; } }
.pie h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.pie ul { list-style: none; padding: 0; margin: 0; }
.pie li { margin-bottom: .6rem; }
.pie .marca { margin-bottom: 1rem; }
.pie .marca span { color: #fff; }
.pie .legal { font-size: .85rem; color: rgba(255, 255, 255, .55); }
.pie-base { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: rgba(255, 255, 255, .55); }

/* ---------- WhatsApp flotante ---------- */
.whatsapp-flotante {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  transition: transform 180ms ease;
}
.whatsapp-flotante:hover { transform: scale(1.07); color: #fff; }
.whatsapp-flotante svg { width: 30px; height: 30px; }

/* ---------- Miga de pan / TOC ---------- */
.toc { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0 0 2.5rem; padding: 0; list-style: none; }
.toc a { display: inline-block; font-size: .9rem; font-weight: 600; text-decoration: none; color: var(--azul-accion); background: var(--fondo-alterno); border-radius: 999px; padding: .45em 1.1em; }
.toc a:hover { background: #DBE6FE; }

/* ---------- Buscador de capacidades ---------- */
.buscador { position: relative; max-width: 560px; margin: 0 auto 2.5rem; }
.buscador input {
  width: 100%; font-family: var(--fuente); font-size: 1.05rem;
  padding: .9em 1.2em .9em 3em;
  border: 1px solid var(--borde); border-radius: 999px;
  box-shadow: 0 4px 20px rgba(13, 23, 59, .05);
}
.buscador input:focus { outline: none; border-color: var(--azul-accion); box-shadow: 0 0 0 3px rgba(55, 115, 254, .18); }
.buscador svg { position: absolute; left: 1.1em; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--tinta-suave); pointer-events: none; }
.resultado-busqueda { text-align: center; color: var(--tinta-suave); font-size: .95rem; margin-bottom: 1.5rem; }
.grupo-capacidades h4 { margin: 1.75rem 0 .75rem; color: var(--tinta-suave); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.ficha-capacidad { padding: .9rem 1.2rem; border: 1px solid var(--borde); border-radius: var(--radio-chico); background: #fff; margin-bottom: .6rem; }
.ficha-capacidad h5 { margin: 0 0 .25rem; font-size: 1rem; color: var(--azul-oscuro); }
.ficha-capacidad p { margin: 0; font-size: .925rem; color: var(--tinta-suave); }
.oculto { display: none !important; }

/* ---------- Operaciones sobre LogyNet ---------- */
.chip-op {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--borde); border-radius: 999px;
  padding: .4em 1em .4em .55em; white-space: nowrap;
}
.chip-op img, .chip-op svg { width: 24px; height: 24px; flex-shrink: 0; }
.chip-op img { object-fit: contain; filter: grayscale(1); border-radius: 50%; }
.chip-op svg { color: #9AA5B5; }
.chip-op b { font-weight: 600; font-size: .875rem; color: var(--tinta); }
.franja-operaciones { padding: 3rem 0 3.25rem; border-bottom: 1px solid var(--borde); overflow: hidden; }
.franja-operaciones .titulo-franja { text-align: center; margin-bottom: .4rem; font-weight: 600; color: var(--azul-oscuro); font-size: 1.05rem; }
.franja-operaciones .sub-franja { text-align: center; font-size: .9rem; color: var(--tinta-suave); margin: 0 auto 1.5rem; }
.cinta-marco { overflow: hidden; margin-bottom: .75rem; }
.cinta { display: flex; width: max-content; }
.cinta .grupo { display: flex; gap: .65rem; padding-right: .65rem; }
@media (prefers-reduced-motion: no-preference) {
  .cinta-a { animation: cinta 80s linear infinite; }
  .cinta-b { animation: cinta 95s linear infinite reverse; }
  .cinta:hover { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) {
  .cinta { width: auto; flex-wrap: wrap; justify-content: center; }
  .cinta .copia { display: none; }
}
@keyframes cinta { to { transform: translateX(-50%); } }
.muro-operaciones { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }

/* ---------- Animación de aparición ----------
   Solo se oculta cuando JS marcó <html class="js">: sin JS todo queda visible. */
@media (prefers-reduced-motion: no-preference) {
  html.js .aparece { opacity: 0; transform: translateY(20px); transition: opacity 400ms ease-out, transform 400ms ease-out; }
  html.js .aparece.visible { opacity: 1; transform: none; }
}

/* ---------- Banner héroe BoxTracked ---------- */
.banner-boxtracked { position: relative; overflow: hidden; background: #14100C; }
.banner-boxtracked .fondo { position: absolute; inset: 0; }
.banner-boxtracked .fondo img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.banner-boxtracked .fondo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(16, 12, 8, .94) 0%, rgba(16, 12, 8, .82) 38%, rgba(16, 12, 8, .35) 70%, rgba(255, 102, 0, .16) 100%);
}
.banner-boxtracked .contenido {
  position: relative; z-index: 1;
  max-width: var(--ancho); margin: 0 auto;
  padding: clamp(3.5rem, 2.5rem + 4vw, 6rem) 20px;
}
.banner-boxtracked .chip-equipo {
  display: inline-block; font-size: .8125rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: #FFB177; background: rgba(255, 102, 0, .16);
  border: 1px solid rgba(255, 102, 0, .35);
  border-radius: 999px; padding: .3em 1em; margin-bottom: 1.25rem;
}
.banner-boxtracked .logo-bt { height: 40px; width: auto; margin-bottom: 1.25rem; }
.banner-boxtracked h2 { color: #fff; max-width: 15em; font-size: clamp(1.9rem, 1.5rem + 2vw, 2.7rem); }
.banner-boxtracked .bajada-bt { color: rgba(255, 255, 255, .85); max-width: 36em; font-size: 1.1rem; }
.banner-boxtracked .rasgos { display: flex; flex-wrap: wrap; gap: 1rem 2.25rem; margin: 1.75rem 0 2rem; padding: 0; list-style: none; }
.banner-boxtracked .rasgos li { display: flex; align-items: center; gap: .6rem; color: rgba(255, 255, 255, .92); font-weight: 500; font-size: .975rem; }
.banner-boxtracked .rasgos svg { width: 22px; height: 22px; color: #FF8A3D; flex-shrink: 0; }
.banner-boxtracked .nota-cta { color: rgba(255, 255, 255, .6); }
.banner-boxtracked .nota-cta a { color: #fff; }
.boton-naranja { background: #C24E00; color: #fff; }
.boton-naranja:hover { background: #A54200; color: #fff; transform: translateY(-1px); }
@media (max-width: 820px) {
  .banner-boxtracked .fondo img { object-position: 78% center; }
  .banner-boxtracked .fondo::after { background: rgba(16, 12, 8, .82); }
}

/* ---------- Retratos del equipo ---------- */
.retrato { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; border: 3px solid var(--fondo-alterno); margin-bottom: 1rem; }

/* ---------- Logos del ecosistema ---------- */
.producto-nimach { display: inline-flex; align-items: center; gap: .55rem; }
.producto-nimach img { width: 20px; height: 20px; object-fit: contain; background: #fff; border-radius: 5px; padding: 2px; }
.ecosistema-logo { height: 34px; width: auto; margin-bottom: 1rem; }

/* ---------- Utilidades ---------- */
.nota-esquema { text-align: center; font-size: .8rem; color: var(--tinta-suave); margin-top: .75rem; }
.margen-arriba-2 { margin-top: 2rem; }
.margen-arriba-3 { margin-top: 3rem; }
.lista-checks { list-style: none; padding: 0; }
.lista-checks li { position: relative; padding-left: 2rem; margin-bottom: .6rem; }
.lista-checks li::before {
  content: ''; position: absolute; left: 0; top: .32em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--fondo-alterno);
}
.lista-checks li::after {
  content: ''; position: absolute; left: 5px; top: .55em;
  width: 8px; height: 5px;
  border-left: 2px solid var(--azul-accion); border-bottom: 2px solid var(--azul-accion);
  transform: rotate(-45deg);
}
