    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: #ffffff;
      color: #49566A;
      font-family: 'Inter', system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      font-size: 16px;
      line-height: 1.5;
    }

    /* ══ Sistema tipográfico de 3 niveles (sans-serif, Inter en todo el sitio) ══
       Títulos (Inter 800/700) se definen en .hero-h1/.s-h2/etc.
       Subtítulos y etiquetas (Inter 600) — todo lo que antes heredaba Inter
       en mayúsculas/negrita ahora usa un peso propio, distinto del
       texto normal. Texto normal sigue en Inter (regla de body arriba). */
    .header-tagline,
    .hero-label,
    .s-eyebrow,
    .svc-title,
    .info-title,
    .modal-eyebrow,
    .logo-ticker-label,
    .fleet-card-title,
    .testi-name,
    .chat-agent-name {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
    }

    :root {
      --blue:       #0E2A72;
      --blue-dark:  #0A2058;
      --blue-deep:  #0E2A72;
      --blue-pale:  #EDF0F7;
      --green:      #2E8B57;
      --green-pale: #EAF5EF;
      --gray-50:    #F8FAFC;
      --gray-100:   #F1F5F9;
      --gray-200:   #E5E7EB;
      --gray-400:   #94A3B8;
      --gray-500:   #6B7280;
      --gray-700:   #334155;
      --gray-900:   #374151;
      --gold:       #F5A623;
      --gold-dark:  #A66A0E;
      --gold-pale:  #FDF3E0;
    }

    /* ── Top bar ── */

    /* ── Header ── */
    .site-header {
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      padding: 1rem 1.5rem;
      position: sticky;
      top: 0;
      z-index: 100;
      transition: padding 0.3s ease, box-shadow 0.3s ease;
    }
    .site-header.is-scrolled {
      padding: 0.6rem 1.5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .header-inner {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      position: relative;
    }
    button.header-cta { display: none; }
    .logo-img { height: 60px; width: auto; object-fit: contain; display: block; transition: height 0.3s ease; }
    .site-header.is-scrolled .logo-img { height: 46px; }
    .logo-link { display: inline-flex; align-items: center; transition: opacity 0.15s; }
    .logo-link:hover { opacity: 0.82; }
    /* El logo ya incluye el texto "Transporte y Turismo de Lujo SAS" —
       este bloque duplicaba esa información y en móvil competía por
       espacio con el botón de menú, así que queda oculto siempre. */
    .header-divider, .header-meta { display: none; }
    .header-tagline {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .header-legal { font-size: 0.6rem; color: var(--gray-400); letter-spacing: 0.05em; }

    /* ── Nav integrada al header ──
       Móvil/tablet: panel desplegable fijo bajo el header, con entrada
       suave (fade + slide). Escritorio (1024px+): fila de enlaces junto
       al logo, sin animación de apertura. */
    .header-nav {
      position: fixed;
      top: var(--header-h, 82px);
      left: 0; right: 0;
      display: flex;
      flex-direction: column;
      max-height: calc(100vh - var(--header-h, 82px));
      overflow-y: auto;
      background: #fff;
      border-top: 1px solid var(--gray-200);
      box-shadow: 0 16px 32px rgba(15,23,42,0.12);
      padding: 0.5rem 1.5rem 1rem;
      z-index: 95;
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .header-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .header-nav-link {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--gray-500);
      text-decoration: none;
      padding: 0.4rem 0.1rem;
      position: relative;
      transition: color 0.2s ease;
    }
    .header-nav-link::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }
    .header-nav-link:hover { color: var(--blue-deep); }
    .header-nav-link.active { color: var(--blue); font-weight: 700; }
    .header-nav-link.active::after { transform: scaleX(1); }

    /* Botón de menú (hamburguesa) — solo visible antes de 1024px */
    .header-menu-btn {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      margin-left: auto;
      background: transparent;
      border: 1px solid var(--gray-200);
      border-radius: 8px;
      color: var(--blue-deep);
      cursor: pointer;
      flex-shrink: 0;
    }
    .header-menu-btn svg { width: 20px; height: 20px; }
    .header-menu-btn .icon-close { display: none; }
    .header-menu-btn.open .icon-menu { display: none; }
    .header-menu-btn.open .icon-close { display: block; }

    .header-nav.open .header-nav-link {
      padding: 0.9rem 0.25rem;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.95rem;
    }
    .header-nav.open .header-nav-link::after { display: none; }
    .header-nav.open .header-nav-link:last-child { border-bottom: none; }

    /* Submenú "Servicios" — móvil: se despliega en línea (mismo patrón de
       acordeón que el footer); escritorio: panel flotante por clic. */
    .nav-dropdown-btn {
      display: flex; align-items: center; gap: 0.35rem;
      width: 100%;
      background: none; border: none; font: inherit; text-align: left; cursor: pointer;
    }
    .nav-dropdown-caret { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.25s ease; }
    .nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
    .nav-dropdown-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
    .nav-dropdown.open .nav-dropdown-panel { grid-template-rows: 1fr; }
    .nav-dropdown-panel-inner { overflow: hidden; min-height: 0; }
    .nav-dropdown-link {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: var(--gray-500);
      text-decoration: none;
      padding: 0.7rem 0.25rem 0.7rem 1rem;
      border-bottom: 1px solid var(--gray-100);
    }
    .nav-dropdown-link:last-child { border-bottom: none; }
    .nav-dropdown-link:hover, .nav-dropdown-link.active { color: var(--blue); }

    /* ── Hero ──
       Foto real de la flota como <img> de fondo completo (no CSS
       background-image — en este entorno file:// la imagen no cargaba
       como sub-recurso de CSS aunque abriera bien directamente) +
       degradado azul marino oscuro encima para legibilidad. La foto cubre
       todo el bloque (título, párrafo, iconos de confianza y botones van
       superpuestos encima) tanto en móvil (banner-celular.png, vertical)
       como en escritorio (hero-flota-real.jpg, horizontal, vía <picture>
       en el HTML) — la altura del héroe la define el propio contenido de
       .hero-inner, la imagen solo se estira para cubrirla (position:
       absolute + inset:0). */
    .hero {
      position: relative;
      min-height: 600px;
      padding: 0;
      background: var(--blue-deep);
      overflow: hidden;
    }
    .hero-slides { position: absolute; inset: 0; z-index: 0; }
    .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
    .hero-slide.active { opacity: 1; z-index: 1; }
    .hero-slide > picture { display: contents; }
    .hero-bg-img {
      display: block;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      z-index: 0;
    }
    @media (min-width: 1024px) {
      .hero-bg-img { object-position: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-slide { transition: none; }
    }
    /* Puntos indicadores del carrusel de fondo */
    .hero-dots {
      position: absolute;
      bottom: 1rem; left: 0; right: 0;
      z-index: 3;
      display: flex;
      justify-content: center;
      gap: 0.5rem;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .hero-dot.active { background: #fff; transform: scale(1.3); }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        transparent 0%,
        transparent 55%,
        rgba(8,15,41,0.55) 68%,
        rgba(8,15,41,0.9) 100%
      );
      z-index: 1;
      pointer-events: none;
    }
    @media (min-width: 1024px) {
      .hero {
        display: flex;
        align-items: center;
      }
      .hero::before {
        background: linear-gradient(100deg,
          rgba(10,25,47,0.94) 0%,
          rgba(10,25,47,0.80) 30%,
          rgba(10,25,47,0.45) 55%,
          rgba(10,25,47,0.15) 75%,
          rgba(10,25,47,0.05) 100%
        );
      }
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 640px;
      display: flex;
      flex-direction: column;
      padding: 21rem 1.5rem 2.5rem;
    }
    @media (min-width: 1024px) {
      .hero-inner { padding: 0; }
    }

    /* Entrada del hero: la foto aparece primero, deslizándose y con un
       leve zoom; el texto va apareciendo después, en cascada de izquierda
       a derecha (etiqueta → título → párrafo → confianza → botones). Son
       animaciones CSS puras (no JS): se disparan solas al cargar la
       página, y también cada vez que el carrusel cambia de diapositiva
       (ya que el texto se muestra/oculta con display, lo que las
       reinicia) — efecto coherente en ambos casos. */
    @keyframes heroImgIn {
      from { opacity: 0; transform: scale(1.08) translateX(-3%); }
      to { opacity: 1; transform: scale(1) translateX(0); }
    }
    .hero-slide.active .hero-bg-img { animation: heroImgIn 1.1s ease-out both; }

    @keyframes heroTextIn {
      from { opacity: 0; transform: translateX(-26px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .hero-label { animation: heroTextIn 0.6s ease-out 0.3s both; }
    .hero-h1    { animation: heroTextIn 0.6s ease-out 0.45s both; }
    .hero-p     { animation: heroTextIn 0.6s ease-out 0.6s both; }
    .trust-row  { animation: heroTextIn 0.6s ease-out 0.75s both; }
    .hero-cta   { animation: heroTextIn 0.6s ease-out 0.9s both; }
    @media (prefers-reduced-motion: reduce) {
      .hero-slide.active .hero-bg-img,
      .hero-label, .hero-h1, .hero-p, .trust-row, .hero-cta {
        animation: none;
      }
    }

    .hero-label {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.28rem 0.8rem;
      border-radius: 3px;
      margin-bottom: 1.1rem;
    }
    .hero-h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.9rem, 4vw, 2.75rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    }
    @media (min-width: 1024px) {
      .hero-h1 { text-shadow: none; }
    }
    .hero-p {
      font-size: clamp(0.9rem, 0.6rem + 1vw, 1.125rem);
      color: rgba(255,255,255,0.82);
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 1.75rem;
    }
    .hero-p strong { color: #fff; font-weight: 600; }

    /* ── Trust row ── */
    .trust-row {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.92);
      font-weight: 500;
    }
    .trust-icon {
      width: 32px; height: 32px;
      border-radius: 6px;
      background: var(--blue-pale);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .trust-icon svg { width: 15px; height: 15px; color: var(--blue); }
    .trust-icon.green-ico { background: var(--green-pale); }
    .trust-icon.green-ico svg { color: var(--green); }
    /* Naranja: acento puntual solo en este bloque del hero, no forma
       parte de la paleta global del sitio. */
    .trust-icon.orange-ico { background: #FCEED8; }
    .trust-icon.orange-ico svg { color: #F5A623; }

    /* ── CTA buttons ── */
    .hero-cta { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
    @media (min-width: 460px) { .hero-cta { flex-direction: row; } }

    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 56px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; padding: 1.125rem 2.125rem; border-radius: 14px; border: none; cursor: pointer; letter-spacing: 0.01em; text-decoration: none; transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.12s ease; white-space: nowrap; }
    /* Retroalimentación al tocar — en móvil no existe :hover, así que esto
       es lo único que confirma visualmente que el toque se registró. */
    .btn:active { transform: scale(0.97); }
    .btn-blue { background: var(--blue); color: #fff; }
    .btn-blue:hover { background: var(--blue-dark); }
    .btn-outlined { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
    .btn-outlined:hover { background: var(--blue-pale); }
    .btn-outlined-white { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
    .btn-outlined-white:hover { background: rgba(255,255,255,0.18); }
    .btn-green { background: var(--green); color: #fff; }
    .btn-green:hover { background: #256B44; }
    .btn-full { width: 100%; }

    /* ── Visor 360° del vehículo ── */
    .viewer360 { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding-bottom: 1rem; }
    .viewer360-stage {
      perspective: 900px;
      width: 240px; height: 155px;
      display: flex; align-items: flex-end; justify-content: center;
      cursor: grab;
      touch-action: pan-y;
      user-select: none;
    }
    .viewer360-stage:active { cursor: grabbing; }
    .viewer360-shadow {
      position: absolute;
      bottom: 4px;
      width: 140px; height: 18px;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.4), transparent 70%);
      border-radius: 50%;
    }
    .viewer360-object {
      position: relative;
      width: 205px; height: 135px;
      transform-style: preserve-3d;
      transform: rotateY(20deg);
      will-change: transform;
    }
    .viewer360-object svg { width: 100%; height: 100%; color: var(--blue-deep); filter: drop-shadow(0 6px 10px rgba(15,23,42,0.18)); }
    .viewer360-object .v360-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: contain; display: block;
      filter: drop-shadow(0 8px 12px rgba(15,23,42,0.25));
      transition: opacity 0.35s ease;
    }
    .viewer360-hint { font-size: 0.62rem; color: var(--gray-400); letter-spacing: 0.03em; }

    /* ── Vitrina de flota (descripción + 360° grande + flechas + WhatsApp) ── */
    .vshow { background: #fff; padding: 3rem 1.5rem; }
    .vshow-info { max-width: 560px; margin: 0 auto 2rem; text-align: center; }
    .vshow-info .s-rule { margin-left: auto; margin-right: auto; }
    .vshow-info .s-desc { margin-bottom: 1.5rem; }
    /* width:100% evita que el texto sin ajuste de línea (white-space:nowrap
       del .btn base) empuje el botón fuera del viewport en móvil. */
    .vshow-info-btn { display: inline-flex; width: 100%; }

    .vshow-stagewrap { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
    .vshow-card {
      flex: 1 1 auto; max-width: 420px; min-width: 0;
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 1.25rem 0.75rem;
      display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    }
    .vshow-arrow {
      flex-shrink: 0;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid var(--gray-200);
      background: #fff;
      color: var(--blue-deep);
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.15s ease;
    }
    .vshow-arrow:active { transform: scale(0.9); }
    .vshow-arrow:hover { background: var(--blue-pale); border-color: var(--blue); }

    .viewer360-stage--lg { width: 100%; max-width: 190px; height: 125px; }
    .viewer360-object--lg { width: 100%; max-width: 165px; height: 110px; }

    /* ── Stats: 4 datos clave debajo del hero, en tarjetas con ícono ── */
    .stats-v2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 1180px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem;
    }
    @media (min-width: 640px) { .stats-v2 { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .stats-v2 { grid-template-columns: repeat(4, 1fr); padding: 3rem 2rem; } }
    .stats-v2-item {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      padding: 1.1rem 1.25rem;
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
    }
    .stats-v2-icon {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-200);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .stats-v2-icon svg { width: 22px; height: 22px; color: var(--blue); }
    .stats-v2-num { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--blue); line-height: 1; letter-spacing: -0.02em; }
    .stats-v2-num.green { color: var(--green); }
    .stats-v2-label {
      font-size: 0.72rem;
      color: var(--gray-500);
      line-height: 1.4;
      margin-top: 0.35rem;
      font-weight: 500;
      position: relative;
      padding-bottom: 0.45rem;
    }
    .stats-v2-label::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 22px; height: 2px;
      background: var(--green);
    }

    /* ── Así funciona: proceso en pasos ── */
    .process { background: var(--blue-deep); padding: 3.5rem 1.5rem; }
    .process-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
    .process-eyebrow {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.6rem;
    }
    .process-h2 {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: #fff;
      margin-bottom: 2.5rem;
    }
    .process-steps { display: flex; flex-direction: column; gap: 1.75rem; }
    .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; position: relative; }
    /* Conector vertical entre pasos en móvil (en escritorio se reemplaza
       por la línea horizontal animada de más abajo) — sin esto los
       círculos quedaban flotando sueltos, sin sensación de "proceso". */
    .process-step:not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: -1.75rem; left: 50%;
      width: 2px; height: 1.75rem;
      background-image: repeating-linear-gradient(180deg, rgba(46,139,87,0.75) 0 8px, transparent 8px 16px);
      background-size: 2px 32px;
      animation: processFlowV 1.4s linear infinite;
      transform: translateX(-50%);
      z-index: 0;
    }
    @keyframes processFlowV {
      from { background-position-y: 0; }
      to { background-position-y: 32px; }
    }
    .process-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--blue-deep);
      border: 1.5px solid rgba(255,255,255,0.28);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    }
    .process-icon svg { width: 24px; height: 24px; color: #fff; transition: color 0.3s ease; }
    .process-step:hover .process-icon {
      border-color: var(--green);
      background: rgba(46,139,87,0.16);
      transform: scale(1.06);
    }
    .process-num { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--green); }
    .process-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9375rem; color: #fff; }
    .process-desc { font-size: 0.8rem; color: #C5D0DE; line-height: 1.6; max-width: 220px; }

    /* Entrada escalonada: cada paso aparece un poco después que el anterior */
    .process-step.reveal:nth-child(1) { transition-delay: 0ms; }
    .process-step.reveal:nth-child(2) { transition-delay: 90ms; }
    .process-step.reveal:nth-child(3) { transition-delay: 180ms; }
    .process-step.reveal:nth-child(4) { transition-delay: 270ms; }
    .process-step.reveal:nth-child(5) { transition-delay: 360ms; }
    .process-step.reveal:nth-child(6) { transition-delay: 450ms; }

    @media (min-width: 1024px) {
      .process { padding: 5rem 2rem; }
      .process-steps { flex-direction: row; align-items: flex-start; gap: 0; position: relative; }
      .process-steps::before {
        content: '';
        position: absolute;
        top: 27px;
        left: calc(100% / 12);
        right: calc(100% / 12);
        height: 2px;
        background-image: repeating-linear-gradient(90deg, rgba(46,139,87,0.75) 0 8px, transparent 8px 16px);
        background-size: 32px 2px;
        animation: processFlow 1.4s linear infinite;
        z-index: 0;
      }
      .process-step { flex: 1; position: relative; padding: 0 0.5rem; }
      /* El conector vertical es solo para móvil; en escritorio la línea
         horizontal de .process-steps::before ya conecta los pasos. */
      .process-step:not(:last-child)::after { content: none; }
    }

    @keyframes processFlow {
      from { background-position-x: 0; }
      to { background-position-x: 32px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .process-steps::before, .process-step::after { animation: none; }
    }

    /* ── Panels ── */
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
    .panel-body { max-width: 640px; margin: 0 auto; padding: 2.75rem 1.5rem; }

    /* ── Section headers ── */
    .s-eyebrow {
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .s-h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.6rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--blue);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .s-rule {
      width: 40px; height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      margin-bottom: 1.1rem;
    }
    .s-desc { font-size: clamp(0.9rem, 0.6rem + 1vw, 1.125rem); color: var(--gray-500); line-height: 1.8; margin-bottom: 1.5rem; }
    .s-desc strong { color: var(--gray-900); font-weight: 600; }

    /* ── Documento legal (Términos, Privacidad, etc.) ── */
    .legal-doc { max-width: 720px; margin: 0 auto; }
    .legal-updated { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--gray-500); font-style: italic; margin-bottom: 2rem; }
    .legal-doc h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--blue); margin: 2rem 0 0.75rem; scroll-margin-top: calc(var(--header-h, 82px) + 64px); }
    .legal-doc h3:first-of-type { margin-top: 0; }
    .legal-doc p { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
    .legal-doc ul, .legal-doc ol { margin: 0 0 1rem 1.25rem; }
    .legal-doc li { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 0.45rem; }
    .legal-doc strong { color: var(--gray-900); font-weight: 600; }

    /* ── Service cards ── */
    .svc-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
    .svc-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      padding: 1.5rem 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.12s ease;
    }
    .svc-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
    .svc-card:active { transform: scale(0.98); border-color: var(--blue); }
    .svc-mark {
      width: 3px;
      min-height: 44px;
      align-self: stretch;
      border-radius: 2px;
      flex-shrink: 0;
    }
    .mark-blue { background: var(--blue); }
    .mark-green { background: var(--green); }
    .svc-title { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 600; color: var(--blue); margin-bottom: 0.4rem; }
    .svc-desc { font-size: clamp(0.85rem, 0.55rem + 0.9vw, 1.05rem); color: var(--gray-500); line-height: 1.8; }

    /* ── Info box ── */
    .info-box {
      border-radius: 16px;
      padding: 1.1rem 1.25rem;
      margin-bottom: 1.5rem;
      border: 1px solid;
    }
    .info-blue { background: var(--blue-pale); border-color: rgba(14,42,114,0.18); }
    .info-green { background: var(--green-pale); border-color: rgba(46,139,87,0.18); }
    .info-title {
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .info-blue .info-title { color: var(--blue-dark); }
    .info-green .info-title { color: var(--green); }

    .feat-list { list-style: none; }
    .feat-list li {
      font-size: 0.78rem;
      color: var(--gray-700);
      padding: 0.22rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      line-height: 1.55;
    }
    .feat-list li::before {
      content: '—';
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
      font-size: 0.8rem;
      margin-top: 0.05rem;
    }
    .feat-list.g li::before { color: var(--green); }

    .check-list { list-style: none; }
    .check-list li {
      font-size: 0.78rem;
      color: var(--gray-700);
      padding: 0.22rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      line-height: 1.55;
    }
    .check-list li::before {
      content: '';
      width: 14px; height: 14px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      margin-top: 0.1rem;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='white'%3E%3Cpath d='M2 6l3 3 5-5'  stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
      background-size: 10px;
      background-repeat: no-repeat;
      background-position: center;
    }

    .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
    .g2-item { font-size: 0.775rem; color: var(--gray-700); display: flex; align-items: center; gap: 0.5rem; padding: 0.15rem 0; }
    .g2-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

    /* ── Form ── */
    .form-wrap {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 1.35rem;
      margin-bottom: 1rem;
    }
    .form-group { margin-bottom: 1rem; }
    .form-label {
      display: block;
      font-size: 0.73rem;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 0.35rem;
      letter-spacing: 0.01em;
    }
    .form-input {
      width: 100%;
      padding: 0.85rem 0.9rem;
      border: 1.5px solid var(--gray-200);
      border-radius: 12px;
      /* 16px mínimo: por debajo de eso, Safari en iPhone hace zoom
         automático al enfocar el campo — muy molesto en móvil. */
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      color: var(--gray-900);
      background: #fff;
      transition: border-color 0.18s, box-shadow 0.18s;
      outline: none;
      -webkit-appearance: none;
    }
    .form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,42,114,0.1); }
    textarea.form-input { resize: vertical; min-height: 80px; line-height: 1.5; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    /* ── Contact strip ── */
    .contact-strip {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 1.1rem 1.25rem;
    }
    .contact-item {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.8rem; color: var(--gray-700);
      text-decoration: none;
      padding: 0.35rem 0;
      transition: color 0.15s;
    }
    .contact-item:hover { color: var(--blue); }
    .c-icon {
      width: 32px; height: 32px; border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .c-icon svg { width: 15px; height: 15px; }

    /* ── Modal ── */
    .modal-bg {
      position: fixed; inset: 0; z-index: 100;
      background: rgba(15,23,42,0.6);
      backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      padding: 1rem;
      opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .modal-bg.open { opacity: 1; pointer-events: auto; }
    .modal-card {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 490px;
      max-height: 92vh;
      overflow-y: auto;
      box-shadow: 0 12px 40px rgba(15,23,42,0.16);
      transform: translateY(20px) scale(0.97);
      transition: transform 0.3s cubic-bezier(0.34,1.5,0.64,1);
    }
    .modal-bg.open .modal-card { transform: translateY(0) scale(1); }
    .modal-card::-webkit-scrollbar { width: 3px; }
    .modal-card::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }
    .modal-head {
      padding: 1.35rem 1.35rem 1rem;
      border-bottom: 1px solid var(--gray-200);
      display: flex; align-items: flex-start; justify-content: space-between;
    }
    .modal-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.3rem; }
    .modal-h { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--blue-deep); }
    .modal-close {
      width: 30px; height: 30px; border-radius: 50%;
      border: 1px solid var(--gray-200); background: var(--gray-100);
      color: var(--gray-500); font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all 0.15s; flex-shrink: 0; line-height: 1;
    }
    .modal-close:hover { background: var(--blue-pale); color: var(--blue-deep); border-color: var(--blue); }
    .modal-body { padding: 1.35rem; }
    .modal-note { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 1.25rem; line-height: 1.6; }

    /* ── Alert toast ── */
    .alert-toast {
      position: fixed; top: 1rem; left: 50%;
      transform: translateX(-50%) translateY(-140%);
      z-index: 200;
      background: #991B1B;
      color: #fff;
      border-radius: 6px;
      padding: 0.85rem 1.4rem;
      font-weight: 600; font-size: 0.8rem;
      box-shadow: 0 8px 30px rgba(153,27,27,0.35);
      max-width: 88vw; text-align: center; line-height: 1.5;
      transition: transform 0.38s cubic-bezier(0.34,1.3,0.64,1);
    }
    .alert-toast.show { transform: translateX(-50%) translateY(0); }
    .alert-toast.success { background: var(--green); box-shadow: 0 8px 30px rgba(46,139,87,0.35); }

    /* ── CTA final "Estamos listos para movilizar su empresa" ── */
    .final-cta { background: #081B4B; padding: 3.5rem 1.5rem; }
    .final-cta-inner {
      max-width: 1400px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 2rem;
      text-align: center; align-items: center;
    }
    .final-cta-eyebrow {
      font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.8125rem;
      letter-spacing: 2px; text-transform: uppercase; color: var(--green);
      margin-bottom: 0.75rem;
    }
    .final-cta-h2 {
      font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700;
      font-size: 2.125rem; color: #fff; line-height: 1.1; margin-bottom: 1rem;
    }
    .final-cta-p { font-family: 'Inter', sans-serif; font-size: 1.125rem; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 560px; }
    .final-cta-actions { display: flex; flex-direction: column; gap: 0.875rem; width: 100%; max-width: 420px; }
    .final-cta-actions .btn { width: 100%; }
    .final-cta-actions .btn svg { width: 18px; height: 18px; }
    .btn-final-secondary {
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
      transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
    .btn-final-secondary:hover { background: #fff; color: var(--blue); border-color: #fff; }
    @media (min-width: 1024px) {
      .final-cta { padding: 90px 3rem; }
      .final-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; gap: 3rem; }
      .final-cta-text { flex: 1 1 auto; }
      .final-cta-h2 { font-size: 3.5rem; }
      .final-cta-actions { flex-direction: row; width: auto; max-width: none; flex-shrink: 0; }
      .final-cta-actions .btn { width: auto; white-space: nowrap; }
    }

    /* ── Footer ── */
    .site-footer { background: #081B4B; color: #fff; border-top: 1px solid rgba(255,255,255,0.1); }
    .footer-inner {
      max-width: 1400px; margin: 0 auto; padding: 3.75rem 1.5rem 8.5rem;
      display: flex; flex-direction: column; gap: 2.5rem;
    }
    .footer-brand-col { text-align: center; }
    .footer-logo-row { display: flex; justify-content: center; margin-bottom: 1.25rem; }
    .footer-logo-img { height: 54px; width: auto; }
    .footer-desc { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 420px; margin: 0 auto 1.25rem; }
    .footer-legal { font-family: 'Inter', sans-serif; font-size: 0.8125rem; color: rgba(255,255,255,0.6); line-height: 1.9; }
    .footer-legal a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s ease; }
    .footer-legal a:hover { color: #fff; }

    .footer-links { display: flex; flex-direction: column; }
    .footer-item { border-top: 1px solid rgba(255,255,255,0.12); }
    #footer-contacto { scroll-margin-top: var(--header-h, 82px); }
    .footer-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .footer-trigger {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      background: none; border: none; cursor: pointer;
      padding: 1.1rem 0.25rem;
      font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9375rem; color: #fff;
    }
    .footer-chevron { width: 16px; height: 16px; color: rgba(255,255,255,0.6); transition: transform 0.3s ease; flex-shrink: 0; }
    .footer-item.open .footer-chevron { transform: rotate(180deg); }
    .footer-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
    .footer-item.open .footer-panel { grid-template-rows: 1fr; }
    .footer-panel-inner { overflow: hidden; min-height: 0; }
    .footer-panel-inner-pad { display: flex; flex-direction: column; padding: 0 0.25rem 1.1rem; }
    .footer-panel-inner-pad a, .footer-address {
      font-family: 'Inter', sans-serif; font-size: 0.9375rem; font-weight: 400;
      color: rgba(255,255,255,0.75); text-decoration: none;
      padding: 0.4rem 0; transition: color 0.2s ease;
    }
    .footer-panel-inner-pad a:hover { color: #fff; }
    .footer-address { line-height: 1.6; padding-bottom: 0.3rem; }

    @media (min-width: 1024px) {
      .footer-inner { padding: 60px 3rem 40px; gap: 3.5rem; flex-direction: row; align-items: flex-start; }
      .footer-brand-col { text-align: left; flex: 1.3 1 0; }
      .footer-logo-row { justify-content: flex-start; }
      .footer-desc { margin: 0 0 1.25rem; }
      .footer-links { flex-direction: row; flex: 2 1 0; gap: 2.5rem; }
      .footer-item { border-top: none; flex: 1 1 0; }
      .footer-item:last-child { border-bottom: none; }
      .footer-trigger { cursor: default; padding: 0 0 1rem; pointer-events: none; }
      .footer-chevron { display: none; }
      .footer-panel { grid-template-rows: 1fr; }
      .footer-panel-inner-pad { padding: 0; }
    }

    /* ── Reveal ── */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal[data-split] { opacity: 1; transform: none; }

    .mt-1 { margin-top: 0.25rem; }
    .mb-0 { margin-bottom: 0 !important; }

    /* ── Franja de logos de clientes: cinta que se desliza sola ── */
    .logo-ticker {
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      padding: 1.5rem 0;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
      mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
    }
    .logo-ticker-label {
      text-align: center;
      font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gray-400); margin-bottom: 1rem;
    }
    .logo-ticker-track {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      width: max-content;
      will-change: transform;
      cursor: grab;
      touch-action: pan-y;
    }
    .logo-ticker-track.dragging { cursor: grabbing; }
    .logo-ticker-chip { flex: 0 0 auto; height: 46px; display: flex; align-items: center; }
    .logo-ticker-chip img {
      height: 100%; width: auto; max-width: 150px; object-fit: contain;
      -webkit-user-drag: none; user-select: none; pointer-events: none;
    }

    /* ══ Galería de flota (pestaña Flota) — tarjetas premium: foto
       protagonista, jerarquía clara, mucho aire, sin recargar. ══ */
    .fleet-gallery { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.5rem; }
    .fleet-card {
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 8px rgba(15,23,42,0.05);
    }
    .fleet-card-img {
      height: 210px;
      background: var(--gray-50);
      border-bottom: 1px solid var(--gray-200);
      display: flex; align-items: center; justify-content: center;
    }
    .fleet-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; }
    .fleet-card-body { padding: 1.5rem; }
    .fleet-card-title { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
    .fleet-card-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.25rem; }
    .fleet-divider { height: 1px; background: var(--gray-100); margin-bottom: 1.25rem; }
    .fleet-spec-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
    .fleet-spec-row { display: flex; align-items: flex-start; gap: 0.7rem; }
    .fleet-spec-row svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 0.2rem; }
    .fleet-spec-label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.1rem; }
    .fleet-spec-value { font-size: 0.83rem; color: var(--gray-900); font-weight: 500; line-height: 1.5; }

    /* Etiquetas elegantes ("usos recomendados" en las páginas de vehículo) */
    .tag-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
    .tag-pill {
      display: inline-flex; align-items: center;
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      background: var(--blue-pale);
      color: var(--blue-dark);
      font-size: 0.76rem;
      font-weight: 600;
    }

    /* ══ Página de detalle por vehículo (van/bus/camioneta/suv.html) ══ */
    .spec-section-title { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1rem; }
    .spec-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; margin-bottom: 2.5rem; }
    .spec-card {
      display: flex; align-items: flex-start; gap: 0.75rem;
      padding: 1rem 1.1rem;
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      background: #fff;
    }
    .spec-card svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }
    .spec-card-label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.2rem; }
    .spec-card-value { font-size: 0.9rem; color: var(--gray-900); font-weight: 600; line-height: 1.4; }

    .disclaimer-note {
      font-size: 0.72rem; color: var(--gray-400); line-height: 1.65;
      padding-top: 1.25rem; margin-top: 0.5rem;
      border-top: 1px solid var(--gray-100);
    }

    /* Botón fijo de cotización — solo en las páginas de vehículo */
    .sticky-cta {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
      background: rgba(255,255,255,0.97);
      border-top: 1px solid var(--gray-200);
      box-shadow: 0 -4px 16px rgba(15,23,42,0.06);
      padding: 0.85rem 1.25rem;
      padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    }
    .sticky-cta .btn { width: 100%; }
    body.has-sticky-cta .chat-fab { bottom: calc(1.5rem + 68px); }
    @media (min-width: 1024px) {
      .spec-grid { grid-template-columns: 1fr 1fr; }
      .sticky-cta-inner { max-width: 460px; margin: 0 auto; }
    }

    /* ══ Testimonios: carril real que se desliza — las tarjetas se ven
       pasando unas por otras (no un salto de contenido) ══ */
    .testimonials { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 3rem 1.5rem; }
    .testi-head { max-width: 560px; margin: 0 auto 1.5rem; text-align: center; }
    .testi-head .s-rule { margin-left: auto; margin-right: auto; }

    .testi-carousel { display: flex; align-items: center; gap: 0.25rem; max-width: 1180px; margin: 0 auto; }
    /* El desplazamiento y el "centrado" los maneja el scroll-snap nativo del
       navegador (no JS calculando píxeles) — más confiable en celular,
       sobre todo si la conexión/carga es lenta. */
    .testi-stage-wrap {
      flex: 1 1 auto; min-width: 0; height: 220px;
      display: flex;
      align-items: center;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 10px calc(50% - 100px);
    }
    .testi-stage-wrap::-webkit-scrollbar { display: none; }
    .testi-slide {
      flex: 0 0 200px;
      scroll-snap-align: center;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .testi-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 18px; padding: 1.5rem 1.5rem; box-shadow: 0 2px 12px rgba(15,23,42,0.05); }
    .testi-quote-icon { font-size: 1.6rem; color: var(--blue-pale); font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1; margin-bottom: 0.35rem; }
    .testi-text { font-size: clamp(0.85rem, 0.55rem + 0.9vw, 1.05rem); color: var(--gray-700); font-style: italic; line-height: 1.8; margin-bottom: 0.75rem; }
    .testi-name { font-size: 0.74rem; font-weight: 700; color: var(--blue-deep); }
    .testi-role { font-size: clamp(0.7rem, 0.55rem + 0.4vw, 0.85rem); color: var(--gray-400); }
    .testi-counter { text-align: center; margin-top: 1rem; font-size: 0.68rem; color: var(--gray-400); letter-spacing: 0.05em; }

    /* ══════════════════════════════════════════════
       DESKTOP LAYOUT — breakpoints agregados encima
       del diseño mobile-first existente. No modifican
       ninguna regla de abajo de 768px.
       ══════════════════════════════════════════════ */

    @media (min-width: 768px) {
      .svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .fleet-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .testi-stage-wrap { height: 250px; padding: 10px calc(50% - 130px); }
      .testi-slide { flex-basis: 260px; }
      .vshow-stagewrap { gap: 0.75rem; }
      .vshow-card { padding: 1.5rem 1.25rem; }
      .viewer360-stage--lg { max-width: 250px; height: 165px; }
      .viewer360-object--lg { max-width: 220px; height: 145px; }
    }

    @media (min-width: 1024px) {
      /* Header */
      .header-inner { max-width: 1600px; margin: 0 auto; }
      .header-nav {
        position: static; flex-direction: row; align-items: center; gap: 1.6rem; margin-left: 0.5rem;
        max-height: none; overflow: visible; background: none; border-top: none; box-shadow: none; padding: 0;
        opacity: 1; transform: none; pointer-events: auto;
      }
      .header-menu-btn { display: none; }
      button.header-cta { display: inline-flex; margin-left: auto; }

      .nav-dropdown { position: relative; }
      .nav-dropdown-btn { width: auto; }
      .nav-dropdown-panel {
        display: block;
        position: absolute; top: 100%; left: 50%;
        transform: translate(-50%, 8px);
        min-width: 200px;
        background: #fff;
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(15,23,42,0.1);
        padding: 0.5rem;
        opacity: 0; pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 50;
      }
      .nav-dropdown.open .nav-dropdown-panel { opacity: 1; transform: translate(-50%, 4px); pointer-events: auto; }
      .nav-dropdown-panel-inner { overflow: visible; }
      .nav-dropdown-link { padding: 0.6rem 0.9rem; border-bottom: none; border-radius: 8px; }
      .nav-dropdown-link:hover { background: var(--blue-pale); color: var(--blue-deep); }

      /* Hero */
      .hero { min-height: 640px; padding: 7rem 3rem 5rem; }
      .viewer360-stage { width: 320px; height: 210px; }
      .viewer360-shadow { width: 190px; height: 24px; }
      .viewer360-object { width: 280px; height: 190px; }
      .stats-v2-num { font-size: 1.75rem; }

      /* Service panels */
      .panel-body { max-width: 980px; padding: 8rem 2rem; }
      .s-desc { max-width: 640px; }
      .vshow { padding: 8rem 1.5rem; }
      .testimonials { padding: 8rem 1.5rem; }
      .logo-ticker-track { gap: 4rem; }
      .logo-ticker-chip { height: 54px; }
      .logo-ticker {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
        mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
      }

      /* Testimonios */
      .testi-stage-wrap { height: 280px; padding: 10px calc(50% - 150px); gap: 24px; }
      .testi-slide { flex-basis: 300px; }

      /* Vitrina de flota */
      .vshow-inner {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        align-items: center;
        gap: 3rem;
        max-width: 1180px;
        margin: 0 auto;
      }
      .vshow-info { max-width: none; margin: 0; text-align: left; }
      .vshow-info .s-rule { margin-left: 0; margin-right: 0; }
      .vshow-info-btn { width: auto; }
      .vshow-card { max-width: 480px; padding: 2rem; }
      .vshow-arrow { font-size: 1.4rem; }
      .viewer360-stage--lg { max-width: 320px; height: 210px; }
      .viewer360-object--lg { max-width: 280px; height: 190px; }
    }

    /* ── Chat widget ── */
    /* FAB */
    .chat-fab {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
      width: 54px; height: 54px; border-radius: 50%;
      background: #25D366; color: #fff; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 10px rgba(37,211,102,0.3);
      transition: box-shadow 0.3s ease;
    }
    .chat-fab:hover { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    .chat-fab svg { width: 26px; height: 26px; }

    /* Notification dot */
    .chat-fab-dot {
      position: absolute; top: 3px; right: 3px;
      width: 10px; height: 10px; border-radius: 50%;
      background: #FF3B30; border: 2px solid #fff;
    }

    /* Window */
    .chat-win {
      position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 59;
      width: 320px; max-width: calc(100vw - 2rem);
      background: #fff; border-radius: 16px;
      box-shadow: 0 12px 50px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
      display: flex; flex-direction: column;
      overflow: hidden;
      transform: scale(0.85) translateY(20px);
      transform-origin: bottom right;
      opacity: 0; pointer-events: none;
      transition: opacity 0.22s ease, transform 0.25s cubic-bezier(0.34,1.5,0.64,1);
    }
    .chat-win.open { opacity: 1; pointer-events: auto; transform: scale(1) translateY(0); }

    /* Header */
    .chat-header {
      background: #25D366;
      padding: 0.85rem 1rem;
      display: flex; align-items: center; gap: 0.65rem;
    }
    .chat-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1.2rem;
    }
    .chat-header-info { flex: 1; }
    .chat-agent-name { font-size: 0.825rem; font-weight: 700; color: #fff; }
    .chat-agent-role { font-size: 0.65rem; color: rgba(255,255,255,0.8); }
    .chat-status { display: flex; align-items: center; gap: 0.3rem; margin-top: 0.15rem; }
    .chat-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
    .chat-close-btn {
      background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.85);
      padding: 0.2rem; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; transition: background 0.15s;
    }
    .chat-close-btn:hover { background: rgba(0,0,0,0.1); }
    .chat-close-btn svg { width: 18px; height: 18px; }

    /* Messages area */
    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 1rem;
      background: #ECE5DD;
      display: flex; flex-direction: column; gap: 0.6rem;
      min-height: 220px; max-height: 300px;
    }
    .chat-messages::-webkit-scrollbar { width: 3px; }
    .chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

    /* Bubbles */
    .bubble {
      max-width: 85%;
      padding: 0.55rem 0.8rem;
      border-radius: 10px;
      font-size: 0.78rem;
      line-height: 1.55;
      position: relative;
      word-break: break-word;
    }
    .bubble-agent {
      background: #fff;
      color: #1E293B;
      align-self: flex-start;
      border-top-left-radius: 3px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .bubble-user {
      background: #DCF8C6;
      color: #1E293B;
      align-self: flex-end;
      border-top-right-radius: 3px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .bubble-time {
      font-size: 0.58rem;
      color: #94A3B8;
      margin-top: 0.2rem;
      text-align: right;
    }

    /* FAQ chips */
    .faq-chips {
      display: flex; flex-direction: column; gap: 0.4rem;
      margin-top: 0.25rem;
    }
    .faq-chip {
      background: #fff;
      border: 1.5px solid #25D366;
      color: #1B5E20;
      border-radius: 20px;
      padding: 0.45rem 0.85rem;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      text-align: left;
      transition: background 0.15s, color 0.15s;
      font-family: 'Inter', sans-serif;
    }
    .faq-chip:hover { background: #25D366; color: #fff; }
    .faq-chip:disabled { opacity: 0.45; cursor: default; pointer-events: none; }

    /* Input area */
    .chat-input-area {
      padding: 0.65rem 0.75rem;
      background: #F0F0F0;
      display: flex; align-items: center; gap: 0.5rem;
      border-top: 1px solid #E2E8F0;
    }
    .chat-input {
      flex: 1;
      border: none;
      border-radius: 20px;
      padding: 0.55rem 0.9rem;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      background: #fff;
      outline: none;
      color: #1E293B;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    .chat-send-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: #25D366; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: background 0.3s ease;
    }
    .chat-send-btn:hover { background: #1EBE5E; }
    .chat-send-btn svg { width: 17px; height: 17px; color: #fff; }

    /* Typing indicator */
    .typing { display: flex; gap: 4px; align-items: center; padding: 0.5rem 0.75rem; }
    .typing span {
      width: 7px; height: 7px; border-radius: 50%; background: #94A3B8;
      animation: typingDot 1.2s infinite ease-in-out;
    }
    .typing span:nth-child(2) { animation-delay: 0.2s; }
    .typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes typingDot {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
      30% { transform: translateY(-5px); opacity: 1; }
    }

    /* ══ Página de Políticas — tabs Habeas Data / Términos + índice ══ */
    .legal-tabs {
      position: sticky;
      top: var(--header-h, 82px);
      z-index: 15;
      display: flex;
      gap: 0.5rem;
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      padding: 0.75rem 1.5rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .legal-tabs::-webkit-scrollbar { display: none; }
    .legal-tab-btn {
      flex-shrink: 0;
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.65rem 1.1rem;
      border-radius: 999px;
      border: 1.5px solid var(--gray-200);
      background: #fff;
      color: var(--gray-500);
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }
    .legal-tab-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
    .legal-tab-btn:hover { border-color: var(--blue); color: var(--blue); }
    .legal-tab-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

    .legal-tab-panel { display: none; }
    .legal-tab-panel.active { display: block; }

    /* Índice / tabla de contenido de cada pestaña */
    .legal-toc {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 1.25rem 1.4rem;
      margin-bottom: 2rem;
    }
    .legal-toc-title {
      font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gray-400); margin-bottom: 0.85rem;
    }
    .legal-toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .legal-toc-list a {
      display: flex; align-items: baseline; gap: 0.5rem;
      font-size: 0.83rem; color: var(--gray-700); text-decoration: none;
      line-height: 1.5;
    }
    .legal-toc-list a:hover { color: var(--blue); }
    .legal-toc-num { color: var(--blue); font-weight: 700; flex-shrink: 0; }

    /* Tabla de identificación del Responsable del Tratamiento */
    .legal-id-table { border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; margin-bottom: 1.5rem; }
    .legal-id-row { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--gray-200); }
    .legal-id-row:last-child { border-bottom: none; }
    .legal-id-label {
      flex: 0 0 160px;
      background: var(--blue);
      color: #fff;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
      padding: 0.7rem 1rem;
      display: flex; align-items: center;
    }
    .legal-id-value {
      flex: 1 1 200px;
      padding: 0.7rem 1rem;
      font-size: 0.85rem; color: var(--gray-900);
      display: flex; align-items: center;
      word-break: break-word;
    }
    .legal-id-value a { color: var(--blue); }

    /* Cajas de cláusula destacada (derechos, plazos, prohibiciones, etc.) */
    .legal-box {
      border-radius: 16px;
      padding: 1.25rem 1.4rem;
      margin-bottom: 1.5rem;
      border: 1.5px solid;
    }
    .legal-box-title {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 0.65rem;
    }
    .legal-box-title svg { width: 15px; height: 15px; flex-shrink: 0; }
    .legal-box p, .legal-box li { font-size: 0.875rem; line-height: 1.7; color: var(--gray-700); }
    .legal-box ul { margin: 0; padding-left: 1.1rem; }
    .legal-box p:last-child, .legal-box ul:last-child { margin-bottom: 0; }
    .legal-box.box-blue { background: var(--blue-pale); border-color: rgba(14,42,114,0.18); }
    .legal-box.box-blue .legal-box-title { color: var(--blue-dark); }
    .legal-box.box-green { background: var(--green-pale); border-color: rgba(46,139,87,0.22); }
    .legal-box.box-green .legal-box-title { color: var(--green); }
    .legal-box.box-gold { background: var(--gold-pale); border-color: rgba(245,166,35,0.4); }
    .legal-box.box-gold .legal-box-title { color: var(--gold-dark); }

    /* Comparación de política de cancelación (Términos) */
    .legal-split { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
    .legal-split .legal-box { margin-bottom: 0; }
    .legal-split-term {
      display: block; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }
    .box-green .legal-split-term { color: var(--green); }
    .box-gold .legal-split-term { color: var(--gold-dark); }

    /* Banner CTA final propio de la página de políticas */
    .legal-cta-banner {
      max-width: 900px;
      margin: 0 auto 2.5rem;
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
      border-radius: 22px;
      padding: 2.25rem 1.75rem;
      text-align: center;
    }
    .legal-cta-banner-eyebrow { color: #FFD98A; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem; }
    .legal-cta-banner h3 { font-family: 'Inter', sans-serif; font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
    .legal-cta-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }

    .btn-gold { background: var(--gold); color: #3A2504; }
    .btn-gold:hover { background: #E09515; }

    @media (min-width: 768px) {
      .legal-split { grid-template-columns: 1fr 1fr; }
      .legal-id-label { flex: 0 0 220px; }
    }

    /* ══ Página Nosotros — hero estático + secciones institucionales ══ */
    .about-hero {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: var(--blue-deep);
    }
    .about-hero > picture { display: contents; }
    .about-hero-img {
      position: absolute; inset: 0;
      z-index: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    /* Mismo difuminado del banner principal (.hero::before) — transparente
       sobre la camioneta, oscuro abajo donde va el texto. Igual en celular
       y en computador. z-index explícito: sin esto, la foto (que va después
       en el DOM) se pintaba encima del degradado y lo tapaba por completo. */
    .about-hero::before {
      content: '';
      position: absolute; inset: 0;
      z-index: 1;
      background: linear-gradient(to bottom,
        transparent 0%,
        transparent 50%,
        rgba(8,15,41,0.6) 68%,
        rgba(8,15,41,0.94) 100%
      );
    }
    .about-hero-inner {
      position: relative; z-index: 2;
      max-width: 720px;
      padding: 3.5rem 1.5rem 2.5rem;
    }
    @media (min-width: 1024px) {
      .about-hero { min-height: 640px; }
      .about-hero-inner { padding: 0 3rem 3.5rem; }
      /* En computador se suma el difuminado diagonal del banner principal
         (oscuro donde está el texto, abajo a la izquierda, aclarando hacia
         la camioneta) al degradado vertical de abajo. */
      .about-hero::before {
        background:
          linear-gradient(100deg, rgba(8,15,41,0.85) 0%, rgba(8,15,41,0.55) 28%, rgba(8,15,41,0.2) 50%, rgba(8,15,41,0) 70%),
          linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(8,15,41,0.6) 68%, rgba(8,15,41,0.94) 100%);
      }
    }
    /* Misma animación de entrada del banner principal: la foto aparece con
       un leve zoom, el texto en cascada de izquierda a derecha. */
    .about-hero-img { animation: heroImgIn 1.1s ease-out both; }
    .about-hero-eyebrow { animation: heroTextIn 0.6s ease-out 0.3s both; }
    .about-hero-h1 { animation: heroTextIn 0.6s ease-out 0.45s both; }
    .about-hero-p { animation: heroTextIn 0.6s ease-out 0.6s both; }
    @media (prefers-reduced-motion: reduce) {
      .about-hero-img, .about-hero-eyebrow, .about-hero-h1, .about-hero-p { animation: none; }
    }
    .about-hero-eyebrow {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
      padding: 0.28rem 0.8rem; border-radius: 3px; margin-bottom: 1.1rem;
    }
    .about-hero-h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.75rem, 4.5vw, 3rem);
      font-weight: 800; color: #fff; line-height: 1.18; margin-bottom: 1.25rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .about-hero-p { font-size: clamp(0.9rem, 0.6rem + 1vw, 1.05rem); color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 580px; }

    /* Sección "Quiénes somos" — texto junto a imagen */
    .about-split { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2rem; }
    .about-split-media { border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-200); }
    .about-split-media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
    @media (min-width: 1024px) {
      .about-split { flex-direction: row; align-items: center; gap: 3.5rem; }
      .about-split-text { flex: 1 1 50%; }
      .about-split-media { flex: 1 1 50%; }
    }

    /* Grid Misión / Visión / Valores */
    .mv-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 3rem; }
    @media (min-width: 900px) { .mv-grid { grid-template-columns: repeat(3, 1fr); } }
    .mv-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 20px;
      padding: 1.75rem 1.6rem;
      box-shadow: 0 2px 12px rgba(15,23,42,0.05);
    }
    .mv-card-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--blue-pale);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.1rem;
    }
    .mv-card-icon svg { width: 24px; height: 24px; color: var(--blue); }
    .mv-card.mv-green .mv-card-icon { background: var(--green-pale); }
    .mv-card.mv-green .mv-card-icon svg { color: var(--green); }
    .mv-card-title { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.85rem; }
    .mv-card.mv-green .mv-card-title { color: var(--green); }
    .mv-card-text { font-size: 0.875rem; color: var(--gray-700); line-height: 1.75; }

    /* Grid de pilares del servicio */
    .pillar-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-bottom: 3rem; }
    @media (min-width: 700px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
    .pillar-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      padding: 1.5rem 1.5rem;
      box-shadow: 0 2px 10px rgba(15,23,42,0.04);
    }
    .pillar-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
    }
    .pillar-icon svg { width: 20px; height: 20px; color: var(--green); }
    .pillar-title { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; }
    .pillar-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.7; }

    /* ══ Página Contacto — hero + grid 2 columnas + formulario CRO ══ */
    .contact-hero { background: var(--blue-deep); padding: 3.25rem 1.5rem; text-align: center; }
    .contact-hero-inner { max-width: 720px; margin: 0 auto; }
    .contact-hero-h1 { font-family: 'Inter', sans-serif; font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.22; margin-bottom: 1rem; }
    .contact-hero-p { font-size: clamp(0.875rem, 0.6rem + 0.9vw, 1.05rem); color: rgba(255,255,255,0.8); line-height: 1.75; }

    /* minmax(0, 1fr) en vez de 1fr: sin el 0 explícito, el botón de
       WhatsApp (white-space:nowrap del .btn base) empuja la columna —y con
       ella la página entera— más ancha que el viewport en móvil. */
    .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
    @media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: start; gap: 2.5rem; } }

    .contact-info-card, .contact-form-card {
      min-width: 0;
      border-radius: 20px;
      padding: 1.75rem 1.6rem;
      border: 1px solid var(--gray-200);
    }
    .contact-info-card { background: var(--gray-50); }
    .contact-form-card { background: #fff; box-shadow: 0 2px 16px rgba(15,23,42,0.06); }
    /* El texto del botón de WhatsApp es largo — permite que se parta en
       dos líneas en vez de forzar el nowrap del .btn base, y lo hace más
       compacto (el .btn base trae padding e ícono pensados para CTAs
       grandes, no para este botón secundario dentro de la tarjeta). */
    .contact-info-card .btn {
      white-space: normal;
      text-align: center;
      line-height: 1.3;
      padding: 0.75rem 1.25rem;
      min-height: auto;
      font-size: 0.85rem;
    }
    .contact-info-card .btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .contact-card-eyebrow { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; }

    .contact-detail-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.5rem; }
    .contact-detail-row { display: flex; align-items: flex-start; gap: 0.85rem; min-width: 0; }
    .contact-detail-row > div:last-child { flex: 1 1 auto; min-width: 0; }
    .contact-detail-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: var(--blue-pale);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail-icon svg { width: 18px; height: 18px; color: var(--blue); }
    .contact-detail-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.2rem; }
    .contact-detail-value { font-size: 0.9rem; color: var(--gray-900); font-weight: 500; line-height: 1.55; overflow-wrap: break-word; }
    .contact-detail-value a { color: inherit; text-decoration: none; }
    .contact-detail-value a:hover { color: var(--blue); }

    .contact-form-title { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--blue); margin-bottom: 0.35rem; }
    .contact-form-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.6; }

    /* Horario preferido — radios como "pills" grandes, más fáciles de tocar en móvil */
    .radio-pill-group { display: flex; flex-direction: column; gap: 0.6rem; }
    .radio-pill {
      display: flex; align-items: center; gap: 0.65rem;
      padding: 0.75rem 0.9rem;
      border: 1.5px solid var(--gray-200);
      border-radius: 12px;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s, color 0.15s;
      font-size: 0.85rem;
      color: var(--gray-700);
    }
    .radio-pill input[type="radio"] { accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
    .radio-pill:has(input:checked) { border-color: var(--blue); background: var(--blue-pale); color: var(--blue-dark); font-weight: 600; }

    /* Checkbox de Habeas Data */
    .contact-checkbox-row { display: flex; align-items: flex-start; gap: 0.65rem; margin: 1.15rem 0 1.35rem; transition: color 0.15s; }
    .contact-checkbox-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 0.1rem; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
    .contact-checkbox-row label { font-size: 0.78rem; color: var(--gray-500); line-height: 1.6; cursor: pointer; }
    .contact-checkbox-row a { color: var(--blue); }

    /* ── Redes sociales (footer) ── */
    .footer-social { display: flex; gap: 0.65rem; margin: 1rem 0 1.1rem; }
    .footer-social a {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--gray-100);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-500);
      transition: background 0.2s ease, color 0.2s ease;
      flex-shrink: 0;
    }
    .footer-social a:hover { background: var(--blue); color: #fff; }
    .footer-social svg { width: 18px; height: 18px; }

    /* ══ Blog — hub (blog/index.html) ══ */
    .blog-hero { background: var(--blue-deep); padding: 3rem 1.5rem; text-align: center; }
    .blog-hero-inner { max-width: 760px; margin: 0 auto; }
    .blog-hero-eyebrow { color: var(--green); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .blog-hero-h1 { font-family: 'Inter', sans-serif; font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 0.9rem; }
    .blog-hero-p { font-size: clamp(0.875rem, 0.6rem + 0.9vw, 1.05rem); color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 620px; margin: 0 auto; }

    /* Barra de búsqueda + filtros de categoría */
    .blog-toolbar { position: sticky; top: var(--header-h, 82px); z-index: 15; background: #fff; border-bottom: 1px solid var(--gray-200); padding: 1rem 1.5rem; }
    .blog-toolbar-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
    .blog-search { position: relative; }
    .blog-search svg { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--gray-400); pointer-events: none; }
    .blog-search-input {
      width: 100%;
      padding: 0.7rem 0.9rem 0.7rem 2.5rem;
      border: 1.5px solid var(--gray-200);
      border-radius: 999px;
      font-size: 0.9rem;
      font-family: 'Inter', sans-serif;
      color: var(--gray-900);
      background: var(--gray-50);
      outline: none;
      transition: border-color 0.18s, box-shadow 0.18s;
    }
    .blog-search-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,42,114,0.1); background: #fff; }
    .blog-cat-filters { display: flex; gap: 0.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.1rem; }
    .blog-cat-filters::-webkit-scrollbar { display: none; }
    .blog-cat-btn {
      flex-shrink: 0;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      border: 1.5px solid var(--gray-200);
      background: #fff;
      color: var(--gray-500);
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.18s, color 0.18s, border-color 0.18s;
    }
    .blog-cat-btn:hover { border-color: var(--blue); color: var(--blue); }
    .blog-cat-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
    @media (min-width: 768px) {
      .blog-toolbar-inner { flex-direction: row; align-items: center; justify-content: space-between; }
      .blog-search { flex: 0 0 320px; }
    }

    /* Artículo destacado */
    .blog-featured {
      display: flex; flex-direction: column;
      border: 1px solid var(--gray-200);
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 20px rgba(15,23,42,0.06);
      margin-bottom: 2.5rem;
      text-decoration: none;
      transition: box-shadow 0.25s ease, transform 0.2s ease;
    }
    .blog-featured:hover { box-shadow: 0 10px 30px rgba(15,23,42,0.1); }
    .blog-featured-img { background: var(--gray-50); aspect-ratio: 16/10; overflow: hidden; }
    .blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
    .blog-featured-body { padding: 1.75rem 1.6rem; }
    .blog-featured-meta-row { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
    .blog-badge {
      display: inline-flex; align-items: center;
      padding: 0.32rem 0.75rem;
      border-radius: 999px;
      background: var(--blue-pale);
      color: var(--blue-dark);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    }
    .blog-badge.featured { background: var(--gold-pale); color: var(--gold-dark); }
    .blog-readtime { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: var(--gray-400); }
    .blog-readtime svg { width: 13px; height: 13px; }
    .blog-featured-title { font-family: 'Inter', sans-serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--blue-deep); line-height: 1.28; margin-bottom: 0.75rem; }
    .blog-featured-excerpt { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 1.25rem; }
    .blog-featured-cta { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--blue); font-weight: 700; font-size: 0.85rem; }
    .blog-featured-cta svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
    .blog-featured:hover .blog-featured-cta svg { transform: translateX(3px); }
    @media (min-width: 768px) {
      .blog-featured { flex-direction: row; }
      .blog-featured-img { flex: 0 0 46%; aspect-ratio: auto; }
      .blog-featured-body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; }
    }

    /* Grid de artículos */
    .blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1rem; }
    @media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
    .blog-card {
      display: flex; flex-direction: column;
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      text-decoration: none;
      box-shadow: 0 2px 10px rgba(15,23,42,0.04);
      transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
    }
    .blog-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.09); border-color: var(--gray-200); transform: translateY(-2px); }
    .blog-card-img { aspect-ratio: 16/10; background: var(--gray-50); overflow: hidden; }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .blog-card:hover .blog-card-img img { transform: scale(1.05); }
    .blog-card-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
    .blog-card-meta-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; flex-wrap: wrap; }
    .blog-card-date { font-size: 0.72rem; color: var(--gray-400); }
    .blog-card-title { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--blue-deep); line-height: 1.35; margin-bottom: 0.5rem; }
    .blog-card-excerpt { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

    .blog-empty-state { display: none; text-align: center; padding: 3rem 1.5rem; color: var(--gray-400); font-size: 0.9rem; }
    .blog-empty-state.show { display: block; }

    /* Caja de conversión (CTA) del blog */
    .blog-cta-box {
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
      border-radius: 22px;
      padding: 2.25rem 1.75rem;
      text-align: center;
      max-width: 900px;
      margin: 1rem auto 0;
    }
    .blog-cta-box-title { font-family: 'Inter', sans-serif; font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 800; color: #fff; margin-bottom: 0.65rem; }
    .blog-cta-box-p { font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
    .blog-cta-box-actions { display: flex; flex-direction: column; gap: 0.7rem; max-width: 280px; margin: 0 auto; }
    .blog-cta-box-actions .btn { width: 100%; min-height: auto; padding: 0.7rem 1.5rem; font-size: 0.8125rem; border-radius: 12px; }
    .blog-cta-box-actions .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    @media (min-width: 560px) {
      .blog-cta-box-actions { flex-direction: row; max-width: none; justify-content: center; }
      .blog-cta-box-actions .btn { width: auto; }
    }

    /* ══ Blog — plantilla de artículo individual ══ */
    .article-breadcrumb { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 1.5rem; }
    .article-breadcrumb a { color: var(--gray-400); text-decoration: none; }
    .article-breadcrumb a:hover { color: var(--blue); }
    .article-header { max-width: 760px; margin: 0 auto 2rem; }
    .article-meta-row { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
    .article-h1 { font-family: 'Inter', sans-serif; font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; color: var(--blue-deep); line-height: 1.22; margin-bottom: 1rem; }
    .article-dek { font-size: clamp(0.9rem, 0.6rem + 0.9vw, 1.1rem); color: var(--gray-500); line-height: 1.75; }
    .article-hero-img { max-width: 900px; margin: 0 auto 2.5rem; border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; background: var(--gray-50); }
    .article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

    .article-body { max-width: 720px; margin: 0 auto; }
    .article-body h2 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--blue-deep); margin: 2.25rem 0 1rem; scroll-margin-top: calc(var(--header-h, 82px) + 20px); }
    .article-body h2:first-child { margin-top: 0; }
    .article-body p { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 1.15rem; }
    .article-body ul { margin: 0 0 1.25rem 1.25rem; }
    .article-body li { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 0.55rem; }
    .article-body strong { color: var(--gray-900); font-weight: 700; }
    .article-body a { color: var(--blue); font-weight: 600; }

    .article-inline-cta {
      background: var(--blue-pale);
      border: 1px solid rgba(14,42,114,0.15);
      border-radius: 16px;
      padding: 1.5rem 1.6rem;
      margin: 2.5rem 0;
      text-align: center;
    }
    .article-inline-cta p { color: var(--blue-dark); font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }

    .article-related { max-width: 900px; margin: 3rem auto 0; padding-top: 2.5rem; border-top: 1px solid var(--gray-200); }
    .article-related-title { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.25rem; text-align: center; }
