/* ============================================================
   TRUMAN DOMINICANA — Hoja de estilos única
   ------------------------------------------------------------
   Para cambiar TODOS los colores del sitio, edita solamente
   las variables del bloque :root de abajo.
   ============================================================ */

:root {
  /* --- Paleta de marca --- */
  --ink: #071626;          /* azul marino casi negro: títulos */
  --navy: #0C2742;         /* azul marino: fondos oscuros */
  --navy-2: #123A63;       /* azul marino medio */
  --blue: #1266C4;         /* azul primario: botones y enlaces */
  --blue-dark: #0D4E99;
  --cyan: #00C2F5;         /* cian eléctrico: acentos */
  --cyan-soft: #E2F6FD;
  --green: #12A66A;        /* disponibilidad */
  --amber: #D98A0B;        /* bajo pedido */

  /* --- Neutrales --- */
  --bg: #F4F7FB;
  --surface: #FFFFFF;
  --line: #E2E9F1;
  --line-strong: #CBD8E6;
  --muted: #5B7186;
  --muted-light: #8CA0B4;

  /* --- Medidas --- */
  --radius: 16px;
  --radius-lg: 24px;
  --wrap: 1160px;
  --shadow-sm: 0 2px 8px -2px rgba(7, 22, 38, .08);
  --shadow: 0 14px 34px -18px rgba(7, 22, 38, .28);
  --shadow-lg: 0 34px 70px -34px rgba(7, 22, 38, .45);

  /* --- Línea decorativa de los fondos oscuros --- */
  --malla: rgba(0, 194, 245, .08);
}

/* ============================================================
   BANDA DE LA EMPRESA HERMANA (Truman Consulting)
   ------------------------------------------------------------
   Enlace discreto al sitio de consultoría, que vive en su propio
   dominio. La URL se configura en data/empresa.js (hermanaUrl).
   ============================================================ */
.hermana {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 34px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.hermana .txt { max-width: 620px; }
.hermana .rotulo {
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #0C6E5F; margin-bottom: 10px;
}
.hermana b { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; display: block; }
.hermana p { font-size: 15px; color: var(--muted); margin-top: 8px; }
.hermana .btn { border-color: #0C6E5F; color: #0C6E5F; }
.hermana .btn:hover { background: #E3F5F2; border-color: #094F45; color: #094F45; }

/* ---------------- Base ---------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .disp {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 6px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- Botones ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -12px rgba(18, 102, 196, .75); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--cyan-soft); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-wa { background: #1FAF54; color: #fff; box-shadow: 0 12px 26px -12px rgba(31, 175, 84, .7); }
.btn-wa:hover { background: #189146; }
.btn-sm { padding: 10px 17px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------------- Barra superior ---------------- */
.topbar { background: var(--ink); color: #C6D6E6; font-size: 13px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--cyan); }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }
.topbar .tb-right { color: var(--muted-light); }

/* ---------------- Navegación ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo .mark {
  width: 38px; height: 38px; border-radius: 11px; flex: 0 0 auto;
  background: linear-gradient(140deg, var(--cyan), var(--blue) 55%, var(--navy));
  display: grid; place-items: center; color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px;
  box-shadow: 0 8px 18px -8px rgba(18, 102, 196, .8);
}
.logo .txt { line-height: 1.05; }
.logo .txt b {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: -.02em;
}
.logo .txt span {
  display: block; font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 10px; font-size: 15px; font-weight: 500;
  color: var(--muted); transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg); }
.nav-links a.activo { color: var(--blue); background: var(--cyan-soft); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

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

/* ---------------- Secciones ---------------- */
section { padding: 84px 0; }
section.compacta { padding: 60px 0; }
.encabezado { max-width: 660px; margin-bottom: 44px; }
.encabezado.centro { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 700; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--cyan); border-radius: 2px; }
.encabezado.centro .kicker::before { display: none; }
h2.titulo { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-top: 14px; }
.encabezado p { color: var(--muted); font-size: 17px; margin-top: 16px; }
.encabezado.centro p { margin-inline: auto; }

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--ink) 55%, #04101C 100%);
  color: #fff; position: relative; overflow: hidden; padding: 88px 0 76px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(0, 194, 245, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 245, .07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; right: -180px; top: -180px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 245, .22), transparent 65%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0, 194, 245, .13); border: 1px solid rgba(0, 194, 245, .3);
  color: #8FE3FB; font-weight: 600; font-size: 13px;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 24px;
}
.hero .eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 245, .2);
}
.hero h1 { font-size: clamp(34px, 5.2vw, 54px); font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero .lead { font-size: clamp(16px, 2vw, 19px); color: #B4C8DB; margin-top: 22px; max-width: 520px; }
.hero .acciones { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero .respaldo { margin-top: 26px; font-size: 13.5px; color: #8AA3BA; display: flex; align-items: center; gap: 9px; }
.hero .respaldo svg { width: 16px; height: 16px; color: var(--cyan); flex: 0 0 auto; }

/* Panel de servicios dentro del hero */
.hero-panel {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-panel h3 { font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 4px; }
.hero-panel > p { font-size: 13px; color: #91AAC1; margin-bottom: 20px; }
.hp-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.hp-item:last-child { border-bottom: none; padding-bottom: 0; }
.hp-item .ico {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto;
  background: rgba(0, 194, 245, .14); color: var(--cyan);
  display: grid; place-items: center;
}
.hp-item .ico svg { width: 19px; height: 19px; }
.hp-item b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; color: #fff; }
.hp-item span { font-size: 13px; color: #93ACC3; }

/* ---------------- Franja de indicadores ---------------- */
.franja { background: var(--surface); border-bottom: 1px solid var(--line); }
.franja .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 22px; }
.franja .dato { text-align: center; }
.franja .dato b {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 30px; color: var(--blue);
}
.franja .dato span { font-size: 13.5px; color: var(--muted); }

/* ---------------- Tarjetas de categoría ---------------- */
.rejilla-cat { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
  display: block;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.cat .ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--cyan-soft); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 16px;
}
.cat .ico svg { width: 23px; height: 23px; }
.cat b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 16.5px; font-weight: 600; }
.cat p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.cat .link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.cat .link svg { width: 14px; height: 14px; transition: transform .16s; }
.cat:hover .link svg { transform: translateX(3px); }

/* ---------------- Servicios ---------------- */
.rejilla-serv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.serv {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
}
.serv .num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--cyan); letter-spacing: .1em;
}
.serv h3 { font-size: 19px; font-weight: 600; margin-top: 10px; }
.serv p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }
.serv ul { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.serv li { font-size: 14px; display: flex; gap: 9px; align-items: flex-start; color: var(--ink); }
.serv li svg { width: 17px; height: 17px; color: var(--green); flex: 0 0 auto; margin-top: 2px; }

/* ---------------- Marcas ---------------- */
.marcas { background: var(--surface); border-block: 1px solid var(--line); padding: 44px 0; }
.marcas p.rotulo {
  text-align: center; font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-light); font-weight: 600; margin-bottom: 26px;
}
.marcas-lista { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.marcas-lista span {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--muted); background: var(--bg); border: 1px solid var(--line);
  padding: 9px 18px; border-radius: 999px;
}

/* ---------------- Bloque dos columnas ---------------- */
.dos-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lista-check { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.lista-check li { display: flex; gap: 14px; align-items: flex-start; }
.lista-check .ck {
  width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
  background: var(--cyan-soft); color: var(--blue); display: grid; place-items: center;
}
.lista-check .ck svg { width: 15px; height: 15px; }
.lista-check b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 15.5px; font-weight: 600; }
.lista-check span { font-size: 14.5px; color: var(--muted); }

.panel-oscuro {
  background: linear-gradient(150deg, var(--navy-2), var(--ink));
  border-radius: var(--radius-lg); padding: 34px; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.panel-oscuro::after {
  content: ""; position: absolute; left: -70px; bottom: -90px;
  width: 240px; height: 240px; border-radius: 50%; background: rgba(0, 194, 245, .1);
}
.panel-oscuro h3 { font-size: 21px; position: relative; z-index: 2; }
.panel-oscuro > p { color: #A9C0D6; font-size: 14.5px; margin-top: 10px; position: relative; z-index: 2; }
.paso { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; z-index: 2; }
.paso:last-of-type { border-bottom: none; }
.paso .n {
  width: 30px; height: 30px; border-radius: 9px; flex: 0 0 auto;
  background: var(--cyan); color: var(--ink); display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px;
}
.paso b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 15px; }
.paso span { font-size: 13.5px; color: #A0B8CE; }

/* ---------------- Banda de llamado a la acción ---------------- */
.cta-banda {
  background: linear-gradient(140deg, var(--blue), var(--navy-2) 70%, var(--ink));
  color: #fff; border-radius: var(--radius-lg); padding: 48px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-banda::after {
  content: ""; position: absolute; right: -60px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.07);
}
.cta-banda .txt { position: relative; z-index: 2; max-width: 560px; }
.cta-banda h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 700; }
.cta-banda p { color: #C6DCEE; margin-top: 12px; font-size: 16px; }
.cta-banda .acciones { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------------- Catálogo ---------------- */
.cabecera-pagina {
  background: linear-gradient(150deg, var(--navy) 0%, var(--ink) 100%);
  color: #fff; padding: 62px 0 56px; position: relative; overflow: hidden;
}
.cabecera-pagina::before {
  content: ""; position: absolute; inset: 0; opacity: .45;
  background-image:
    linear-gradient(var(--malla) 1px, transparent 1px),
    linear-gradient(90deg, var(--malla) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 70% at 80% 10%, #000, transparent 72%);
}
.cabecera-pagina .wrap { position: relative; z-index: 2; }
.migas { font-size: 13.5px; color: #8AA3BA; margin-bottom: 14px; }
.migas a:hover { color: var(--cyan); }
.cabecera-pagina h1 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 700; }
.cabecera-pagina p { color: #B4C8DB; margin-top: 14px; max-width: 620px; font-size: 17px; }

.barra-filtros {
  position: sticky; top: 72px; z-index: 40;
  background: rgba(244, 247, 251, .94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
.filtros-fila { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.buscador { position: relative; flex: 1 1 260px; max-width: 340px; }
.buscador svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted-light); pointer-events: none;
}
.buscador input {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px 12px 42px; border: 1px solid var(--line-strong);
  border-radius: 12px; background: var(--surface);
}
.buscador input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,102,196,.14); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--muted);
  transition: all .15s ease;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.activo { background: var(--blue); border-color: var(--blue); color: #fff; }
.conteo { font-size: 14px; color: var(--muted); margin-left: auto; white-space: nowrap; }
.conteo b { color: var(--ink); font-weight: 600; }

.rejilla-prod { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.prod-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.etiqueta {
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 7px; background: var(--cyan-soft); color: var(--blue-dark);
  white-space: nowrap;
}
.etiqueta.destacado { background: #FFF4DE; color: #9A6407; }
.estado { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.estado .punto { width: 8px; height: 8px; border-radius: 50%; }
.estado.disponible { color: var(--green); }
.estado.disponible .punto { background: var(--green); box-shadow: 0 0 0 3px rgba(18,166,106,.16); }
.estado.pedido { color: var(--amber); }
.estado.pedido .punto { background: var(--amber); box-shadow: 0 0 0 3px rgba(217,138,11,.16); }

.prod .marca { font-size: 13px; color: var(--muted); margin-top: 18px; font-weight: 500; }
.prod h3 { font-size: 18px; font-weight: 600; margin-top: 4px; }
.prod .resumen { font-size: 14px; color: var(--muted); margin-top: 10px; }
.prod .specs { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.prod .specs li { font-size: 13.5px; display: flex; gap: 9px; align-items: flex-start; }
.prod .specs li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); flex: 0 0 auto; margin-top: 8px;
}
.prod .btn { margin-top: 20px; }

.vacio { text-align: center; padding: 70px 20px; color: var(--muted); }
.vacio svg { width: 46px; height: 46px; color: var(--line-strong); margin: 0 auto 16px; }
.vacio b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--ink); }

.aviso {
  display: flex; gap: 14px; background: var(--cyan-soft); border: 1px solid #BEE7F7;
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 30px;
}
.aviso svg { width: 20px; height: 20px; color: var(--blue); flex: 0 0 auto; margin-top: 2px; }
.aviso p { font-size: 14.5px; color: var(--navy-2); }
.aviso b { font-weight: 600; }

/* ---------------- Nosotros ---------------- */
.valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.valor {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
}
.valor .ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-soft);
  color: var(--blue); display: grid; place-items: center; margin-bottom: 16px;
}
.valor .ico svg { width: 22px; height: 22px; }
.valor h3 { font-size: 18px; font-weight: 600; }
.valor p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }

.linea-tiempo { position: relative; padding-left: 34px; }
.linea-tiempo::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--cyan), var(--line));
}
.hito { position: relative; padding-bottom: 30px; }
.hito:last-child { padding-bottom: 0; }
.hito::before {
  content: ""; position: absolute; left: -30px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--blue);
}
.hito .anio { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: var(--blue); }
.hito b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 17px; margin-top: 4px; }
.hito p { font-size: 14.5px; color: var(--muted); margin-top: 6px; }

/* ---------------- Contacto ---------------- */
.contacto-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.tarjeta {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
}
.campo { margin-bottom: 18px; }
.campo label {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--ink);
}
.campo label .req { color: #D14343; }
.campo input, .campo select, .campo textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: 11px; background: var(--surface); transition: border-color .15s, box-shadow .15s;
}
.campo textarea { min-height: 130px; resize: vertical; }
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,102,196,.14);
}
.campo .ayuda { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.fila-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.info-item {
  display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: none; }
.info-item .ico {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  background: var(--cyan-soft); color: var(--blue); display: grid; place-items: center;
}
.info-item .ico svg { width: 20px; height: 20px; }
.info-item b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 15px; }
.info-item span, .info-item a { font-size: 14.5px; color: var(--muted); }
.info-item a:hover { color: var(--blue); }

.mapa {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); margin-top: 22px;
}
.mapa iframe { width: 100%; height: 260px; border: 0; display: block; }
.mapa-placeholder {
  height: 200px; display: grid; place-items: center; text-align: center;
  background: linear-gradient(140deg, #EAF1F8, #F7FAFD); color: var(--muted); padding: 20px;
}
.mapa-placeholder svg { width: 30px; height: 30px; color: var(--blue); margin: 0 auto 10px; }

/* ---------------- Pie de página ---------------- */
.pie { background: var(--ink); color: #9DB4C8; padding: 62px 0 0; }
.pie-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.pie .logo .txt b { color: #fff; }
.pie .logo .txt span { color: var(--muted-light); }
.pie-marca p { font-size: 14px; margin-top: 18px; max-width: 300px; line-height: 1.65; }
.pie h4 {
  color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 18px;
}
.pie ul { display: flex; flex-direction: column; gap: 11px; }
.pie ul a, .pie ul li { font-size: 14.5px; }
.pie ul a:hover { color: var(--cyan); }
.pie .contacto-pie li { display: flex; gap: 10px; align-items: flex-start; }
.pie .contacto-pie svg { width: 16px; height: 16px; color: var(--cyan); flex: 0 0 auto; margin-top: 3px; }
.redes { display: flex; gap: 10px; margin-top: 20px; }
.redes a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: #C6D6E6; transition: all .15s;
}
.redes a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.redes svg { width: 18px; height: 18px; }
.pie-abajo {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
}

/* ============================================================
   DIVISIONES (bloque del inicio: Equipos TIC / Consulting)
   ============================================================ */
.divisiones { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.division {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.division:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.division::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}
.division.consulting::before { background: linear-gradient(90deg, #37C2AC, #0C6E5F); }
.division.consulting:hover { border-color: #0C6E5F; }
.division:not(.consulting):hover { border-color: var(--blue); }

.division .rotulo {
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.division.consulting .rotulo { color: #0C6E5F; }
.division h3 { font-size: 24px; font-weight: 700; }
.division .bajada { font-size: 15px; color: var(--muted); margin-top: 12px; }
.division ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.division li { font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; }
.division li svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--blue); }
.division.consulting li svg { color: #0C6E5F; }
.division .btn { margin-top: 24px; align-self: flex-start; }
.division.consulting .btn-primary { background: #0C6E5F; box-shadow: 0 12px 26px -12px rgba(12,110,95,.7); }
.division.consulting .btn-primary:hover { background: #094F45; }

/* ============================================================
   SUB-MARCA (encabezado de Truman Consulting)
   ============================================================ */
.sub-marca {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
  padding: 10px 18px 10px 12px; border-radius: 14px;
}
.sub-marca .mark {
  width: 36px; height: 36px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(140deg, #37C2AC, #0C6E5F);
  display: grid; place-items: center; color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px;
}
.sub-marca .txt b {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 17px; color: #fff; line-height: 1.1;
}
.sub-marca .txt span { display: block; font-size: 12px; color: #9FBACD; margin-top: 2px; }

/* ============================================================
   MODALIDADES DE CAPACITACIÓN
   ============================================================ */
.modalidades { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.modalidad {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-soft); color: var(--blue-dark);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 13.5px; font-weight: 600;
}
.modalidad svg { width: 15px; height: 15px; }

/* ============================================================
   PREGUNTAS FRECUENTES
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 11px; height: 11px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(45deg) translateY(-2px); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq .respuesta { padding: 0 24px 22px; font-size: 15px; color: var(--muted); }

/* ---------------- Botón flotante de WhatsApp ---------------- */
.wa-flotante {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #1FAF54; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(31,175,84,.8);
  transition: transform .16s ease;
}
.wa-flotante:hover { transform: scale(1.06); }
.wa-flotante svg { width: 29px; height: 29px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .rejilla-cat { grid-template-columns: repeat(2, 1fr); }
  .rejilla-serv { grid-template-columns: repeat(2, 1fr); }
  .rejilla-prod { grid-template-columns: repeat(2, 1fr); }
  .dos-col { grid-template-columns: 1fr; gap: 40px; }
  .contacto-grid { grid-template-columns: 1fr; }
  .pie-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .valores { grid-template-columns: 1fr; }
  .divisiones { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 12px 22px 18px; box-shadow: var(--shadow);
  }
  .nav-links.abierto { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 16px; }
  .nav .wrap { position: relative; }
  .nav-cta .btn { display: none; }
  .topbar .tb-right { display: none; }
  .franja .wrap { grid-template-columns: 1fr 1fr; gap: 26px; }
  .cta-banda { padding: 36px 28px; }
  .barra-filtros { top: 72px; }
  .conteo { margin-left: 0; width: 100%; }
}

@media (max-width: 620px) {
  section { padding: 60px 0; }
  .rejilla-cat, .rejilla-serv, .rejilla-prod { grid-template-columns: 1fr; }
  .fila-2 { grid-template-columns: 1fr; }
  .pie-grid { grid-template-columns: 1fr; }
  .tarjeta { padding: 24px 20px; }
  .hero { padding: 62px 0 56px; }
  .topbar .tb-left { gap: 14px; font-size: 12.5px; }
  .hero .acciones .btn, .cta-banda .acciones .btn { flex: 1 1 100%; }
}

@media print {
  .nav, .topbar, .wa-flotante, .barra-filtros, .cta-banda { display: none; }
  body { background: #fff; }
}

/* Número de modelo / parte en la tarjeta de producto */
.prod .modelo {
  margin-top: 14px; font-size: 12px; color: var(--muted-light);
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  word-break: break-word;
}
