/* ============================================================
   Browix — Sitio nuevo (preview /nuevo)
   Sistema de diseño: blanco de fondo, naranja #c66300 primario,
   acentos suaves de la paleta histórica (#ff9257, #f1c233,
   #27c0fb, #5cc184). Tipografía Poppins.
   ============================================================ */

:root {
  /* Marca */
  --bx-orange: #c66300;
  --bx-orange-soft: #ff9257;
  --bx-orange-tint: #fff4ea;
  --bx-orange-tint-2: #ffe9d6;
  --bx-amber: #f1c233;
  --bx-amber-tint: #fdf6e0;
  --bx-blue: #27c0fb;
  --bx-blue-tint: #e7f7fe;
  --bx-green: #5cc184;
  --bx-green-tint: #e9f7ef;

  /* Neutros */
  --bx-ink: #2b2620;
  --bx-body: #4c463f;
  --bx-muted: #6f6a60; /* 5.4:1 sobre blanco (WCAG AA) */
  --bx-line: #f0ebe4;
  --bx-bg: #ffffff;
  --bx-bg-warm: #faf7f3;

  /* Forma */
  --bx-radius: 16px;
  --bx-radius-lg: 24px;
  --bx-shadow: 0 8px 30px rgba(43, 38, 32, .08);
  --bx-shadow-soft: 0 2px 12px rgba(43, 38, 32, .06);
  --bx-max: 1200px;

  --bx-grad: linear-gradient(120deg, #ff9257 0%, #c66300 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bx-body);
  background: var(--bx-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--bx-orange); text-decoration: none; }
a:hover { color: #a35200; }

h1, h2, h3, h4 { color: var(--bx-ink); line-height: 1.22; font-weight: 700; }

.container { max-width: var(--bx-max); margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

/* ---------- Utilidades ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bx-orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  border-radius: 2px;
  background: var(--bx-grad);
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--bx-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bx-orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(198, 99, 0, .28);
}
.btn-primary:hover { background: #a35200; color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: #fff;
  color: var(--bx-ink);
  border-color: var(--bx-line);
}
.btn-ghost:hover { border-color: var(--bx-orange); color: var(--bx-orange); }
.btn-light {
  background: #fff;
  color: var(--bx-orange);
}
.btn-light:hover { transform: translateY(-2px); color: #a35200; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

.link-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 15px;
}
.link-more .arr { transition: transform .18s ease; }
.link-more:hover .arr { transform: translateX(3px); }

/* Animación de aparición */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Header + Mega menú
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--bx-line); box-shadow: 0 4px 24px rgba(43,38,32,.06); }

.header-inner {
  max-width: var(--bx-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; }

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bx-ink);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--bx-orange); background: var(--bx-orange-tint); }
.nav-link .caret { transition: transform .2s ease; }
.nav-item.open > .nav-link { color: var(--bx-orange); background: var(--bx-orange-tint); }
.nav-item.open > .nav-link .caret { transform: rotate(180deg); }

.nav-link.ai-link { color: var(--bx-orange); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 22px; font-size: 14px; }

/* --- Mega menú --- */

.mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1120px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius-lg);
  box-shadow: 0 24px 70px rgba(43, 38, 32, .16);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  padding: 34px 34px 0;
}
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* En desktop el panel se centra respecto del header (no del nav-item,
   que está pegado al borde izquierdo y lo sacaría de pantalla) */
@media (min-width: 1024px) {
  .header-inner { position: relative; }
  .nav-item.has-mega { position: static; }
  .mega { top: calc(100% - 8px); }
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 232px;
  gap: 30px;
  align-items: start;
}

/* Encabezado de grupo: chip de color del área */
.mega-group-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
  white-space: nowrap;
}
.mega-group-head svg { width: 15px; height: 15px; flex-shrink: 0; }
.mega-group-head .mgh-arr { opacity: 0; transition: opacity .15s ease, transform .15s ease; transform: translateX(-3px); }
.mega-group-head:hover .mgh-arr { opacity: 1; transform: none; }

.acc-personas.mega-group-head { background: var(--bx-orange-tint-2); color: var(--bx-orange); }
.acc-tiempo.mega-group-head   { background: var(--bx-amber-tint); color: #a37e08; }
.acc-terreno.mega-group-head  { background: var(--bx-blue-tint); color: #0e87b6; }
.acc-com.mega-group-head      { background: var(--bx-green-tint); color: #2e9459; }

/* Lista de submódulos: links de texto, limpios y densos */
.mega-list { display: flex; flex-direction: column; }
.mega-list a {
  position: relative;
  display: block;
  padding: 6px 0 6px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bx-body);
  line-height: 1.35;
  transition: color .13s ease, transform .13s ease;
}
.mega-list a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bx-line);
  transition: background .13s ease;
}
.mega-list a:hover { color: var(--bx-orange); transform: translateX(3px); }
.mega-list a:hover::before { background: var(--bx-orange); }

/* Carta destacada del Asistente IA (conecta con el banner IA del sitio) */
.mega-feature {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  background: linear-gradient(150deg, #2b2620 0%, #4a3421 60%, #7a4a12 100%);
  border-radius: 18px;
  padding: 20px 20px 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mega-feature::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 146, 87, .4), rgba(255, 146, 87, 0) 70%);
}
.mega-feature .mf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bx-orange-soft);
  margin-bottom: 8px;
}
.mega-feature b { display: block; font-size: 16px; margin-bottom: 5px; position: relative; }
.mega-feature p { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.75); margin-bottom: 12px; position: relative; }
.mega-feature .mf-bubble {
  display: block;
  background: #fff;
  color: var(--bx-ink);
  font-size: 11.5px;
  line-height: 1.45;
  border-radius: 12px 12px 12px 4px;
  padding: 9px 12px;
  margin-bottom: 14px;
  position: relative;
}
.mega-feature .mf-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bx-orange-soft);
  position: relative;
  margin-top: auto;
}
.mega-feature:hover .mf-cta { color: #fff; }
.mega-feature .mf-cta .arr { transition: transform .18s ease; }
.mega-feature:hover .mf-cta .arr { transform: translateX(3px); }

/* Fila inferior del mega menú */
.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px -34px 0;
  padding: 20px 34px;
  background: var(--bx-bg-warm);
  border-top: 1px solid var(--bx-line);
  border-radius: 0 0 var(--bx-radius-lg) var(--bx-radius-lg);
}
.mega-foot p { font-size: 14px; color: var(--bx-muted); }
.mega-foot p b { color: var(--bx-ink); display: block; font-size: 15px; }

/* --- Nav móvil --- */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--bx-ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .header-inner { height: 64px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }

  /* Anclado al header sticky (el backdrop-filter del header lo vuelve
     containing block de position:fixed, así que usamos absolute + altura) */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 40px;
    overflow-y: auto;
  }
  .nav-open .main-nav { display: flex; overscroll-behavior: contain; }
  body.nav-open { overflow: hidden; }

  .nav-item { border-bottom: 1px solid var(--bx-line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 4px; border-radius: 0; font-size: 16px; }
  .nav-link:hover { background: none; }
  .nav-link.ai-link { justify-content: flex-start; }

  .mega {
    position: static;
    transform: none;
    width: auto;
    opacity: 1;
    visibility: hidden;
    display: none;
    border: none;
    box-shadow: none;
    padding: 0 0 16px;
  }
  .nav-item.open .mega { display: block; visibility: visible; transform: none; }
  .mega-cols { grid-template-columns: 1fr; gap: 20px; }
  .mega-group-head { margin-bottom: 6px; }
  .mega-feature { margin-top: 4px; }
  .mega-foot { margin: 16px 0 0; border-radius: var(--bx-radius); flex-direction: column; align-items: flex-start; }

  .mobile-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
}
@media (min-width: 1024px) { .mobile-cta { display: none; } }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -320px; right: -280px;
  width: 780px; height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 146, 87, .16) 0%, rgba(255, 146, 87, 0) 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(29px, 3.9vw, 44px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero h1 .hl {
  color: var(--bx-orange);
  background-image: linear-gradient(var(--bx-orange-tint-2), var(--bx-orange-tint-2));
  background-size: 100% 12px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-sub { font-size: 18px; color: var(--bx-muted); max-width: 540px; margin-bottom: 30px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; }
.hero-points li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--bx-body);
}
.hero-points svg { color: var(--bx-green); flex-shrink: 0; }

/* Mock visual del hero (CSS puro) */
.hero-visual { position: relative; }

.mock-card {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius-lg);
  box-shadow: var(--bx-shadow);
  overflow: hidden;
}
.mock-top {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bx-line);
}
.mock-dot { width: 26px; height: 6px; border-radius: 999px; background: var(--bx-orange-soft); }
.mock-top .mock-dot:not(:first-child) { display: none; }
.mock-body { padding: 22px; display: grid; gap: 14px; }

.mock-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--bx-line);
  border-radius: 14px;
}
.mock-ava {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.mock-lines { flex: 1; min-width: 0; }
.mock-line { height: 8px; border-radius: 4px; background: var(--bx-line); margin: 5px 0; }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }
.mock-pill {
  font-size: 11.5px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  flex-shrink: 0;
}
.pill-ok { background: var(--bx-green-tint); color: #2e9459; }
.pill-warn { background: var(--bx-amber-tint); color: #b78d0a; }
.pill-info { background: var(--bx-blue-tint); color: #0e87b6; }
.pill-orange { background: var(--bx-orange-tint-2); color: var(--bx-orange); }

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: 14px;
  box-shadow: var(--bx-shadow);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--bx-ink);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip small { display: block; font-weight: 400; color: var(--bx-muted); font-size: 11.5px; line-height: 1.3; }
.float-chip .fc-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chip-tl { top: -22px; left: calc(50% - 215px); }
.chip-br { bottom: -14px; right: calc(50% - 215px); animation-delay: 2.5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .chip-tl { left: 0; }
  .chip-br { right: 0; }
}

/* ============================================================
   Logos de clientes
   ============================================================ */

.logos { padding: 34px 0 60px; }
.logos p {
  text-align: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bx-muted);
  margin-bottom: 26px;
}
.logo-track { overflow: hidden; position: relative; }
.logo-track::before, .logo-track::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 90px; z-index: 2;
  pointer-events: none;
}
.logo-track::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.logo-track::after { right: 0; background: linear-gradient(-90deg, #fff, rgba(255,255,255,0)); }
.logo-row {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.logo-row img {
  margin-right: 68px; /* en vez de gap: así translateX(-50%) del loop es exacto */
  height: 64px; width: auto;
  filter: grayscale(1);
  opacity: .78;
  transition: filter .2s ease, opacity .2s ease;
}
.logo-row img:hover { filter: none; opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .logo-row { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ============================================================
   Cobertura top-down (pilares)
   ============================================================ */

.coverage { background: var(--bx-bg-warm); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--bx-shadow); }

.pillar-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-ico svg { width: 23px; height: 23px; }

.pillar h3 { font-size: 18px; margin-bottom: 8px; }
.pillar > p { font-size: 14px; color: var(--bx-muted); margin-bottom: 16px; }

.pillar ul { list-style: none; margin-bottom: 20px; flex: 1; }
.pillar ul li {
  font-size: 13.5px;
  padding: 5px 0 5px 24px;
  position: relative;
  color: var(--bx-body);
}
.pillar ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c66300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
}

.pillar .link-more { align-self: flex-end; }

@media (max-width: 1023px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   Secciones de feature (alternadas)
   ============================================================ */

.feature-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}
/* Evita que contenido con ancho mínimo grande (chips nowrap, svgs) infle la columna */
.feature-split > div { min-width: 0; }

/* Las filas de chips dentro de los mockups siempre pueden quebrar línea */
.panel-body div[style*="display:flex"],
.phone-body div[style*="display:flex"] { flex-wrap: wrap; }
.feature-split + .feature-split { margin-top: 96px; }
.feature-split.rev .feature-media { order: 2; }
.feature-split.rev .feature-copy { order: 1; }

.feature-copy h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.feature-copy > p { font-size: 16px; color: var(--bx-muted); margin-bottom: 22px; }

.feature-list { list-style: none; margin-bottom: 26px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 7px 0;
  font-size: 15px;
}
.feature-list li svg { flex-shrink: 0; margin-top: 4px; color: var(--bx-orange); }
.feature-list li b { color: var(--bx-ink); font-weight: 600; }

.feature-media { position: relative; }
.media-frame {
  border-radius: var(--bx-radius-lg);
  padding: 34px;
  position: relative;
}
.frame-orange { background: linear-gradient(150deg, var(--bx-orange-tint) 0%, var(--bx-orange-tint-2) 100%); }
.frame-amber  { background: linear-gradient(150deg, #fefaf0 0%, var(--bx-amber-tint) 100%); }
.frame-blue   { background: linear-gradient(150deg, #f2fbff 0%, var(--bx-blue-tint) 100%); }
.frame-green  { background: linear-gradient(150deg, #f3fbf6 0%, var(--bx-green-tint) 100%); }

@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-split.rev .feature-media { order: 1; }
  .feature-split.rev .feature-copy { order: 2; }
  .feature-split + .feature-split { margin-top: 64px; }
}

/* ============================================================
   Grid de módulos (nivel fino)
   ============================================================ */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.module-card {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--bx-shadow-soft); border-color: var(--bx-orange-tint-2); }
.module-card .m-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.module-card .m-ico svg { width: 20px; height: 20px; }
.module-card h4 { font-size: 15px; margin-bottom: 5px; }
.module-card p { font-size: 13px; color: var(--bx-muted); line-height: 1.5; }

@media (max-width: 1023px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modules-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Sección IA
   ============================================================ */

.ai-banner {
  background: linear-gradient(135deg, #2b2620 0%, #4a3421 55%, #7a4a12 100%);
  border-radius: var(--bx-radius-lg);
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-banner::after {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,146,87,.35), rgba(255,146,87,0) 70%);
}
.ai-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ai-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.ai-banner h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; }
.ai-banner p.lead { color: rgba(255,255,255,.78); font-size: 16.5px; margin-bottom: 26px; }

.ai-points { list-style: none; margin-bottom: 30px; display: grid; gap: 16px; }
.ai-points li { display: flex; gap: 12px; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.68); }
.ai-points li svg { flex-shrink: 0; margin-top: 5px; color: var(--bx-orange-soft); }
.ai-points li b {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

/* Mock de chat IA */
.ai-chat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--bx-radius-lg);
  padding: 22px;
  backdrop-filter: blur(6px);
  display: grid; gap: 12px;
}
.bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
}
.bubble.user {
  background: rgba(255,255,255,.14);
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: 4px;
}
.bubble.bot {
  background: #fff;
  color: var(--bx-ink);
  justify-self: start;
  border-bottom-left-radius: 4px;
}
.bubble.bot b { color: var(--bx-orange); }
.bubble .src {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px;
  font-size: 11px; font-weight: 600;
  color: var(--bx-muted);
  background: var(--bx-bg-warm);
  border-radius: 999px;
  padding: 3px 10px;
}

@media (max-width: 900px) {
  .ai-banner { padding: 40px 28px; }
  .ai-banner-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Números / stats
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--bx-radius-lg);
  background: var(--bx-green-tint);
  border: 1px solid #d4eedd;
}
.stat .num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: #2e9459;
  line-height: 1;
  margin-bottom: 10px;
}
.stat p { font-size: 14px; font-weight: 600; color: var(--bx-ink); letter-spacing: .04em; text-transform: uppercase; }
.stat small { display: block; font-weight: 400; color: var(--bx-muted); text-transform: none; letter-spacing: 0; margin-top: 6px; font-size: 13px; }

@media (max-width: 767px) {
  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  .stat { padding: 18px 16px; display: flex; align-items: center; gap: 14px; text-align: left; }
  .stat .num { font-size: 34px; margin-bottom: 0; flex-shrink: 0; min-width: 74px; }
  .stat p { font-size: 12.5px; }
  .stat small { font-size: 12px; margin-top: 3px; }
}

/* ============================================================
   Industrias
   ============================================================ */

.industries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ind {
  display: block;
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  padding: 24px 14px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ind:hover { transform: translateY(-3px); border-color: var(--bx-orange-tint-2); box-shadow: var(--bx-shadow-soft); }
.ind .i-ico {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--bx-orange-tint);
  color: var(--bx-orange);
  display: flex; align-items: center; justify-content: center;
}
.ind p { font-size: 13px; font-weight: 600; color: var(--bx-ink); line-height: 1.35; }

@media (max-width: 1023px) { .industries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industries { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Apps (empleado / supervisor / kiosco)
   ============================================================ */

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.app-card {
  border-radius: var(--bx-radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--bx-line);
  background: #fff;
}
.app-card .a-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.app-card h3 { font-size: 18px; margin-bottom: 6px; }
.app-card .a-sub { font-size: 13px; font-weight: 600; color: var(--bx-orange); margin-bottom: 14px; }
.app-card ul { list-style: none; }
.app-card ul li {
  font-size: 13.5px;
  padding: 4px 0 4px 22px;
  position: relative;
}
.app-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 11px; height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c66300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
}
@media (max-width: 900px) { .apps-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Seguridad / confianza
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: var(--bx-bg-warm);
  border-radius: var(--bx-radius);
  padding: 26px 22px;
}
.trust-card .t-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #fff;
  color: var(--bx-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: var(--bx-shadow-soft);
}
.trust-card h4 { font-size: 15px; margin-bottom: 5px; }
.trust-card p { font-size: 13px; color: var(--bx-muted); }
@media (max-width: 1023px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA final
   ============================================================ */

.cta-final {
  background: var(--bx-grad);
  border-radius: var(--bx-radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  left: -100px; bottom: -160px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.cta-final h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; position: relative; }
.cta-final p { color: rgba(255,255,255,.9); font-size: 17px; max-width: 560px; margin: 0 auto 30px; position: relative; }
.cta-final .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--bx-line);
  padding: 64px 0 32px;
  margin-top: 88px;
  background: var(--bx-bg-warm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--bx-muted); max-width: 260px; }
.footer-col h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bx-ink);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--bx-body);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--bx-orange); }
.footer-bottom {
  border-top: 1px solid var(--bx-line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--bx-muted);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--bx-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--bx-body);
}
.footer-social a:hover { color: var(--bx-orange); border-color: var(--bx-orange-tint-2); }
@media (max-width: 1023px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Páginas internas (pilares / IA)
   ============================================================ */

.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--bx-bg-warm) 0%, #fff 100%);
}
.page-hero .crumbs { font-size: 13px; color: var(--bx-muted); margin-bottom: 18px; }
.page-hero .crumbs a { color: var(--bx-muted); }
.page-hero .crumbs a:hover { color: var(--bx-orange); }
.page-hero h1 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; margin-bottom: 16px; max-width: 760px; }
.page-hero p.lead { font-size: 18px; color: var(--bx-muted); max-width: 640px; margin-bottom: 28px; }

.subnav {
  position: sticky;
  top: 74px;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bx-line);
}
.subnav-inner {
  max-width: var(--bx-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bx-body);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.subnav a:hover, .subnav a.active { color: var(--bx-orange); border-bottom-color: var(--bx-orange); }
@media (max-width: 1023px) { .subnav { top: 64px; } }

/* Tabla comparativa simple (cobertura) */
.coverage-map { overflow-x: auto; }
.coverage-map table { width: 100%; border-collapse: collapse; min-width: 640px; }
.coverage-map th, .coverage-map td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--bx-line);
}
.coverage-map th { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--bx-muted); font-weight: 600; }
.coverage-map td:first-child { font-weight: 600; color: var(--bx-ink); }

/* Ancla de secciones internas con offset por header sticky */
.anchor-target { scroll-margin-top: 130px; }

/* ============================================================
   Formulario de contacto
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius-lg);
  padding: 36px;
  box-shadow: var(--bx-shadow-soft);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bx-ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--bx-line);
  border-radius: 12px;
  background: var(--bx-bg-warm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--bx-ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bx-orange-soft);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 18px; }
.form-note { font-size: 12px; color: var(--bx-muted); text-align: center; margin-top: 12px; }

.contact-aside { display: grid; gap: 18px; }
.contact-card {
  background: var(--bx-bg-warm);
  border-radius: var(--bx-radius);
  padding: 24px;
}
.contact-card h4 { font-size: 15px; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--bx-body); }
.contact-card ul { list-style: none; }
.contact-card ul li {
  font-size: 13.5px;
  padding: 4px 0 4px 24px;
  position: relative;
}
.contact-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c66300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.alert-banner {
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-banner.ok { background: var(--bx-green-tint); color: #21713f; }
.alert-banner.err { background: #fdeaea; color: #a33228; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Blog / novedades
   ============================================================ */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--bx-shadow); }
.post-card .post-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--bx-orange-tint);
}
.post-card .post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card h2 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.post-card h2 a { color: var(--bx-ink); }
.post-card h2 a:hover { color: var(--bx-orange); }
.post-card p { font-size: 13.5px; color: var(--bx-muted); flex: 1; margin-bottom: 16px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }

/* Capturas de producto dentro de los marcos */
.media-frame img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--bx-shadow);
  border: 1px solid rgba(43, 38, 32, .06);
}

/* Flujo de pasos numerados */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  padding: 24px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bx-grad);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.step h4 { font-size: 15px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--bx-muted); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Mockups de producto (basados en la app Browix Pro real:
   toolbar #ff7d21, fondo #eef1f5, superficies blancas)
   ============================================================ */

:root {
  --app-orange: #ff7d21;
  --app-orange-shade: #e07100;
  --app-teal: #20c7c7;
  --app-blue: #10abd8;
  --app-green: #10dc60;
  --app-yellow: #f0c000;
  --app-bg: #eef1f5;
  --app-surface: #ffffff;
  --app-text: #3a4150;
}

/* --- Marco de teléfono --- */
.phone {
  width: min(300px, 100%);
  margin: 0 auto;
  background: #1b1f27;
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--bx-shadow);
}
.phone-screen {
  background: var(--app-bg);
  border-radius: 26px;
  overflow: hidden;
  font-size: 12px;
  color: var(--app-text);
  line-height: 1.45;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 4px;
  background: var(--app-orange);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .03em;
}
.phone-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--app-orange);
  color: #fff;
}
.phone-toolbar .pt-burger { display: grid; gap: 3px; }
.phone-toolbar .pt-burger span { display: block; width: 14px; height: 2px; background: #fff; border-radius: 2px; }
.phone-toolbar .pt-title { flex: 1; text-align: center; font-size: 13px; font-weight: 600; }
.phone-toolbar .pt-pill {
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 9.5px;
  font-weight: 600;
}
.phone-body { padding: 12px; display: grid; gap: 9px; }

/* Elementos tipo Ionic */
.ap-card {
  background: var(--app-surface);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(20, 30, 50, .08);
}
.ap-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--app-surface);
  border-radius: 12px;
  padding: 9px 11px;
  box-shadow: 0 1px 4px rgba(20, 30, 50, .08);
}
.ap-item .ai-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.ap-item .ai-txt { flex: 1; min-width: 0; }
.ap-item .ai-txt b { display: block; font-size: 11.5px; color: #23293a; }
.ap-item .ai-txt span { font-size: 10px; color: #8a92a5; }
.ap-chip {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.chip-green { background: #e2fbec; color: #0a9b46; }
.chip-amber { background: #fdf4d6; color: #a88600; }
.chip-blue  { background: #e0f4fb; color: #0d7fa0; }
.chip-orange{ background: #ffe9d8; color: var(--app-orange-shade); }
.chip-red   { background: #fdeaea; color: #c0392b; }
.chip-gray  { background: #eef1f5; color: #8a92a5; }

.ap-btn {
  display: block;
  text-align: center;
  background: var(--app-orange);
  color: #fff;
  font-weight: 700;
  font-size: 11.5px;
  border-radius: 999px;
  padding: 9px;
}
.ap-btn.teal { background: var(--app-teal); }

/* Pill de validación GPS (como la app real) */
.gps-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #e2fbec;
  color: #0a9b46;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 10.5px;
  font-weight: 600;
}
.gps-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #10dc60; flex-shrink: 0; }

/* Preview de cámara (selfie de fichaje) */
.cam-preview {
  position: relative;
  background: linear-gradient(160deg, #2c3444 0%, #47536b 100%);
  border-radius: 12px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cam-preview .face {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #8fa0bd;
  position: relative;
  top: 12px;
}
.cam-preview .face::after {
  content: "";
  position: absolute;
  top: 46px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 44px;
  border-radius: 40px 40px 0 0;
  background: #8fa0bd;
}
.cam-preview .cam-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.85);
}
.cam-preview .c-tl { top: 8px; left: 8px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.cam-preview .c-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.cam-preview .c-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.cam-preview .c-br { bottom: 8px; right: 8px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

/* Botón redondo de fichaje (Entrada verde / Salida ámbar como la app) */
.track-btn {
  width: 88px; height: 88px;
  margin: 2px auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(16, 220, 96, .35);
}
.track-btn.in { background: var(--app-green); }
.track-btn.out { background: var(--app-yellow); color: #4a3b00; box-shadow: 0 6px 16px rgba(240, 192, 0, .35); }
.track-btn svg { width: 20px; height: 20px; }

/* Mapa estilizado */
.mini-map {
  position: relative;
  border-radius: 12px;
  height: 130px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(190, 205, 190, .5) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(0deg, rgba(190, 205, 190, .5) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(150deg, #e8efe4 0%, #dfe9e0 60%, #d3e4d8 100%);
}
.mini-map .road {
  position: absolute;
  background: #fff;
  opacity: .8;
}
.mini-map .route {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.mini-map .pin {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.25);
}
.mini-map .pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

/* --- Teléfono del hero, en perspectiva --- */
.hero-phone {
  width: min(320px, 100%);
  margin: 0 auto;
  transform: perspective(1400px) rotateY(-12deg) rotateX(4deg) rotate(1deg);
  transition: transform .45s ease;
}
.hero-visual:hover .hero-phone { transform: perspective(1400px) rotateY(-5deg) rotateX(2deg); }
@media (prefers-reduced-motion: reduce) {
  .hero-phone, .hero-visual:hover .hero-phone { transform: none; transition: none; }
}

/* Mockups en perspectiva: alternan con las vistas de frente para variar */
.tilt-l, .tilt-r { transition: transform .45s ease; }
.tilt-l { transform: perspective(1400px) rotateY(-10deg) rotateX(3deg) rotate(1deg); }
.tilt-r { transform: perspective(1400px) rotateY(10deg) rotateX(3deg) rotate(-1deg); }
.feature-media:hover .tilt-l { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }
.feature-media:hover .tilt-r { transform: perspective(1400px) rotateY(4deg) rotateX(2deg); }
@media (prefers-reduced-motion: reduce) {
  .tilt-l, .tilt-r, .feature-media:hover .tilt-l, .feature-media:hover .tilt-r { transform: none; transition: none; }
}
.hero-phone .phone { width: 100%; }
.float-chip { z-index: 2; }

/* Franja de bienvenida de Mi Portal (como la app real) */
.home-hero-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--app-surface);
  padding: 12px 14px;
  border-bottom: 1px solid #e6eaf0;
}
.home-hero-strip .hh-ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bx-grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.home-hero-strip b { display: block; font-size: 12px; color: #23293a; line-height: 1.3; }
.home-hero-strip small { font-size: 9.5px; color: #8a92a5; }

/* Grilla de accesos de Mi Portal */
.pt-sec-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .04em;
  color: #8a92a5;
  padding: 2px 2px 0;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pt-tile {
  position: relative;
  background: var(--app-surface);
  border-radius: 12px;
  padding: 11px 5px 9px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(20, 30, 50, .08);
}
.pt-tile .tile-ico {
  width: 30px; height: 30px;
  margin: 0 auto 5px;
  border-radius: 9px;
  background: var(--bx-orange-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.pt-tile .tile-label {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--app-text);
  line-height: 1.25;
}
.pt-tile .tile-badge {
  position: absolute;
  top: 5px; right: 7px;
  min-width: 15px; height: 15px;
  border-radius: 999px;
  background: var(--app-yellow);
  color: #4a3b00;
  font-size: 8.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* --- Chat del asistente dentro del teléfono (UI real de la app) --- */
.chat-topics { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-topic {
  font-size: 10px; font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--app-surface);
  color: var(--app-orange-shade);
  border: 1px solid #ffd9bc;
}
.chat-bubble {
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 13px;
  font-size: 11px;
  line-height: 1.5;
}
.chat-bubble.user {
  background: var(--app-orange);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.chat-bubble.bot {
  background: var(--app-surface);
  color: #23293a;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(20,30,50,.08);
}
.chat-bubble.bot b { color: var(--app-orange-shade); }
.chat-src {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px;
  font-size: 9px; font-weight: 700;
  color: #8a92a5;
  background: var(--app-bg);
  border-radius: 999px;
  padding: 2px 8px;
}
.chat-status {
  font-size: 9.5px;
  font-style: italic;
  color: #8a92a5;
  padding-left: 4px;
}
.chat-feedback {
  display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; color: #8a92a5;
  padding-left: 4px;
}
.chat-feedback span.fb {
  background: var(--app-surface);
  border-radius: 999px;
  padding: 2px 8px;
  box-shadow: 0 1px 3px rgba(20,30,50,.08);
}
.chat-disclaimer {
  font-size: 8.5px;
  color: #a5adc0;
  text-align: center;
  padding-top: 2px;
}

/* --- Árbol del Repositorio de Datos (panel admin) --- */
.repo-tree { display: grid; gap: 7px; }
.repo-row {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--bx-line);
  border-radius: 10px;
  background: #fff;
}
.repo-row.child { margin-left: 26px; }
.repo-row .r-ico { flex-shrink: 0; font-size: 13px; }
.repo-row .r-txt { flex: 1; min-width: 0; }
.repo-row .r-txt b { display: block; font-size: 11.5px; color: #23293a; }
.repo-row .r-txt span { font-size: 9.5px; color: #8a92a5; }
.repo-row.live { border-style: dashed; border-color: #b5e3f5; background: #f4fbfe; }

/* --- Bandeja de tickets (tabs + filas) --- */
.tab-row { display: flex; gap: 6px; }
.tab-pill {
  font-size: 10.5px; font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--app-bg);
  color: #8a92a5;
}
.tab-pill.active { background: var(--app-orange); color: #fff; }
.ticket-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--bx-line);
  border-radius: 11px;
  background: #fff;
}
.ticket-row .t-txt { flex: 1; min-width: 0; }
.ticket-row .t-txt b { display: block; font-size: 11.5px; color: #23293a; }
.ticket-row .t-txt span { font-size: 9.5px; color: #8a92a5; }
.area-tag {
  flex-shrink: 0;
  font-size: 8.5px; font-weight: 800;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--app-bg);
  color: #6b7488;
}

/* --- Slider del teléfono del hero --- */
.hs-track { position: relative; }
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  display: flex;
  flex-direction: column;
}
.hs-slide.hs-sizer { position: relative; }
.hs-slide.is-active { opacity: 1; pointer-events: auto; }
.hs-slide .phone-body { flex: 1; }
.hs-dots {
  position: absolute;
  bottom: 7px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 3;
}
.hs-dots span {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(43, 38, 32, .18);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hs-dots span.active { background: var(--app-orange); width: 16px; }

/* Escaneo facial animado (slide de fichaje) */
.cam-preview .scan-line {
  position: absolute;
  left: 10%; right: 10%;
  top: 14%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #35e07c, transparent);
  box-shadow: 0 0 10px 2px rgba(53, 224, 124, .55);
  animation: hsScan 2.4s ease-in-out infinite;
}
@keyframes hsScan { 0%, 100% { top: 14%; } 50% { top: 82%; } }
.cam-preview .face-ok {
  position: absolute;
  left: 50%; bottom: 9px;
  transform: translateX(-50%);
  background: rgba(16, 220, 96, .92);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 999px;
  white-space: nowrap;
  animation: hsFaceOk 2.4s ease-in-out infinite;
}
@keyframes hsFaceOk { 0%, 55% { opacity: 0; } 70%, 92% { opacity: 1; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .cam-preview .scan-line { animation: none; top: 50%; }
  .cam-preview .face-ok { animation: none; opacity: 1; }
}

/* --- Marco de panel web --- */
.panel-mock {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  overflow: hidden;
  box-shadow: var(--bx-shadow);
  font-size: 12px;
  color: var(--app-text);
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--bx-line);
  background: var(--bx-bg-warm);
}
.panel-top .p-dot { width: 26px; height: 6px; border-radius: 999px; background: var(--bx-orange-soft); }
.panel-top .p-dot:not(:first-child) { display: none; }
.panel-top .p-url {
  flex: 1;
  margin-left: 8px;
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 10px;
  color: var(--bx-muted);
}
.panel-body { padding: 16px; display: grid; gap: 12px; }

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.kpi {
  background: var(--app-bg);
  border-radius: 10px;
  padding: 9px 11px;
}
.kpi b { display: block; font-size: 17px; font-weight: 800; color: #23293a; }
.kpi span { font-size: 9.5px; color: #8a92a5; font-weight: 600; }
.kpi.k-orange b { color: var(--app-orange-shade); }
.kpi.k-green b { color: #0a9b46; }
.kpi.k-red b { color: #c0392b; }

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 74px;
  padding: 4px 2px 0;
}
.bar-chart .bar {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: var(--bx-orange-soft);
  min-height: 8px;
}
.bar-chart .bar.muted { background: #e3e8ef; }

/* Grilla de planificación (planner de jornadas) */
.plan-grid {
  display: grid;
  grid-template-columns: 64px repeat(5, 1fr);
  gap: 4px;
  font-size: 9px;
}
.plan-grid .pg-head { font-weight: 700; color: #8a92a5; text-align: center; padding: 3px 0; }
.plan-grid .pg-name {
  font-weight: 600;
  color: #23293a;
  font-size: 9.5px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.plan-grid .pg-cell {
  border-radius: 5px;
  padding: 4px 2px;
  text-align: center;
  font-weight: 700;
  font-size: 8.5px;
}
.pg-morning { background: #ffe9d8; color: var(--app-orange-shade); }
.pg-night { background: #e0e7ff; color: #4b5bd0; }
.pg-off { background: #eef1f5; color: #a5adc0; }
.pg-vac { background: #e2fbec; color: #0a9b46; }

/* Etiqueta suave */
.badge-soft {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bx-orange-tint);
  color: var(--bx-orange);
  margin-bottom: 12px;
}

/* --- Mega de Casos de uso: grilla de industrias --- */
.mega.mega-cases { width: min(940px, calc(100vw - 32px)); }
.mega-cols.cols-cases { grid-template-columns: 1fr 232px; }
.mega-inds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.mega-ind {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.mega-ind:hover { background: var(--bx-bg-warm); border-color: var(--bx-line); transform: translateY(-1px); }
.mega-ind .mi-ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bx-orange-tint);
  color: var(--bx-orange);
}
.mega-ind .mi-ico svg { width: 17px; height: 17px; }
.mega-ind .mi-txt { min-width: 0; }
.mega-ind b { display: block; font-size: 13.5px; color: var(--bx-ink); line-height: 1.3; margin-bottom: 2px; }
.mega-ind span span, .mega-ind .mi-txt > span { display: block; font-size: 11.5px; color: var(--bx-muted); line-height: 1.4; }

@media (max-width: 1023px) {
  .mega.mega-cases { width: auto; }
  .mega-cols.cols-cases { grid-template-columns: 1fr; }
  .mega-inds { grid-template-columns: 1fr; gap: 2px; }
  .mega-ind { padding: 9px 10px; }
}

/* --- Ilustraciones de industria (casos de uso) --- */
.illo-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--bx-shadow);
  position: relative;
}
.illo-card > svg { width: 100%; height: auto; display: block; }
.illo-chip {
  position: absolute;
  max-width: 62%;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 999px;
  padding: 7px 14px;
  background: #fff;
  color: var(--bx-ink);
  border: 1px solid var(--bx-line);
  box-shadow: 0 6px 18px rgba(43, 38, 32, .12);
}
.illo-chip.ok   { background: #e9f7ef; color: #2e9459; border-color: #d4eedd; }
.illo-chip.warn { background: #fdf4d6; color: #a37e08; border-color: #f2e4b4; }
.illo-chip-a { top: 6%; right: 4%; }
.illo-chip-b { bottom: 8%; left: 4%; }
@media (max-width: 560px) {
  .illo-card { padding: 16px; }
  .illo-chip { font-size: 11px; padding: 5px 11px; max-width: 70%; }
}

/* --- Carta lateral del mega de Casos de uso (deliberadamente distinta de la carta IA) --- */
.mega-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 20px;
  border-radius: var(--bx-radius);
  background: var(--bx-bg-warm);
  border: 1px dashed var(--bx-orange-tint-2);
  transition: background .18s ease, border-color .18s ease;
}
.mega-aside:hover { background: #fff; border-color: var(--bx-orange); }
.mega-aside b { font-size: 15px; color: var(--bx-ink); line-height: 1.3; }
.mega-aside p { font-size: 12.5px; line-height: 1.5; color: var(--bx-muted); }
.mega-aside .ma-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--bx-orange);
  margin-top: 2px;
}
.mega-aside .ma-cta .arr { transition: transform .18s ease; }
.mega-aside:hover .ma-cta .arr { transform: translateX(3px); }

/* --- Header compacto entre 1024 y 1200 px: el nav creció al sumar el mega de Casos de uso --- */
@media (min-width: 1024px) and (max-width: 1199px) {
  .header-inner { gap: 14px; padding: 0 16px; }
  .brand img { height: 30px; }
  .main-nav { gap: 0; }
  .nav-link { padding: 10px 9px; font-size: 14.5px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 9px 14px; font-size: 13.5px; }
}
.illo-card > img { width: 100%; height: auto; display: block; border-radius: 12px; }

.solo-mob { display: none; }

/* "Inicio" solo cuando el menú es desplegable (ahí no se ve el logo) */
.solo-nav-movil { display: none; }
@media (max-width: 1023px) { .solo-nav-movil { display: block; } }

/* --- Ajustes de celular: menos texto y bloques altos ocultos --- */
@media (max-width: 767px) {
  .mob-hide { display: none !important; }
  .li-tail { display: none; }
  .solo-desk { display: none; }
  .solo-mob { display: inline; }
  section { padding: 52px 0; }
  section.tight { padding: 36px 0; }
  .section-head { margin-bottom: 30px; }
  .hero { padding-top: 36px; }
  /* en columnas angostas la altura fija deformaba el logo */
  .footer-brand img { height: auto; width: 140px; }
}

/* --- CTA flotante de celular (aparece tras un rato navegando) --- */
.cta-flotante {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(43, 38, 32, .20);
  transform: translateY(160%);
  transition: transform .45s cubic-bezier(.22, .9, .3, 1);
}
.cta-flotante.visible { transform: none; }
.cta-flotante .cf-txt { flex: 1; min-width: 0; }
.cta-flotante .cf-txt b { display: block; font-size: 13.5px; color: var(--bx-ink); line-height: 1.25; }
.cta-flotante .cf-txt span { display: block; font-size: 11.5px; color: var(--bx-muted); line-height: 1.35; margin-top: 2px; }
.cta-flotante .btn { flex-shrink: 0; padding: 9px 15px; font-size: 13px; }
.cta-flotante .cf-close {
  position: absolute;
  top: -10px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--bx-line);
  color: var(--bx-muted);
  font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(43, 38, 32, .14);
  cursor: pointer;
  padding: 0;
}
.cta-flotante .cf-close:hover { color: var(--bx-ink); }
@media (min-width: 768px) { .cta-flotante { display: none; } }
@media (prefers-reduced-motion: reduce) { .cta-flotante { transition: none; } }

/* ============================================================
   Landings de campañas (landingA / landingB)
   ============================================================ */
.lp-hero { padding: 64px 0 76px; }
.lp-hero h1 { font-size: clamp(27px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.01em; margin-bottom: 18px; }
.lp-hero .eyebrow { margin-bottom: 10px; }
.lp-h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }

/* Popup de Calendly (landingA) */
.lp-popup {
  position: fixed; inset: 0;
  background: rgba(43, 38, 32, .55);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.lp-popup.visible { opacity: 1; visibility: visible; }
.lp-popup-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(43, 38, 32, .3);
  padding: 36px 40px 32px;
  max-width: 430px;
  text-align: center;
  font-size: 19px;
  line-height: 1.45;
  color: var(--bx-ink);
  transform: translateY(14px);
  transition: transform .3s ease;
}
.lp-popup.visible .lp-popup-card { transform: none; }
.lp-popup-card b { font-weight: 800; }
.lp-popup-card .btn { margin-top: 22px; min-width: 210px; font-size: 16px; cursor: pointer; }
.lp-popup-close {
  position: absolute; top: 12px; right: 14px;
  width: 30px; height: 30px;
  border: none; background: var(--bx-bg-warm);
  border-radius: 50%;
  color: var(--bx-muted);
  font-size: 18px; line-height: 1;
  cursor: pointer;
}
.lp-popup-close:hover { color: var(--bx-ink); }

/* Overlay de video (landingB) */
.lp-video {
  position: fixed; inset: 0;
  background: rgba(20, 17, 14, .85);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.lp-video.visible { opacity: 1; visibility: visible; }
.lp-video-box { text-align: center; }
.lp-video-box iframe { max-width: 100%; border-radius: 14px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lp-video-close { margin-top: 18px; }

/* Teléfono clickeable que abre el video */
.lp-phone-video { position: relative; cursor: pointer; }
.lp-phone-video .lp-play {
  position: absolute; left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--bx-orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(43, 38, 32, .35);
  transition: transform .2s ease;
}
.lp-phone-video:hover .lp-play { transform: translate(-50%, -50%) scale(1.08); }
.lp-phone-video .lp-play svg { margin-left: 3px; }
.lp-phone-video .lp-play-hint {
  position: absolute; left: 50%; bottom: -6px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px; font-weight: 700;
  color: var(--bx-ink);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(43, 38, 32, .12);
}

/* Grilla de 6 features en 3 columnas */
.modules-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) { .modules-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules-grid.cols-3 { grid-template-columns: 1fr; } }

/* Listas largas de funciones: carrusel horizontal */
.lp-lists {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}
.lp-list {
  background: #fff;
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  padding: 20px 20px 12px;
  box-shadow: var(--bx-shadow-soft);
}
.lp-list h3 { font-size: 16.5px; margin-bottom: 12px; }
.lp-list ul {
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}
.lp-list li {
  position: relative;
  padding: 0 0 9px 20px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bx-body);
}
.lp-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--bx-orange);
  font-weight: 700;
}
@media (max-width: 560px) { .lp-lists { grid-auto-columns: 260px; } }

/* Pared de logos de clientes */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
}
.logo-wall img { height: 44px; width: auto; max-width: 150px; object-fit: contain; opacity: .8; }

/* CTA del video en landingB: más visible que un chip normal */
.lp-video-chip {
  cursor: pointer;
  font-size: 15px;
  padding: 14px 20px;
  border: 2px solid var(--bx-orange);
  box-shadow: 0 14px 34px rgba(198, 99, 0, .25);
  animation: floaty 3s ease-in-out infinite;
}
.lp-video-chip small { font-size: 12px; }
.lp-video-chip:hover { border-color: #a35200; }
