  .lh-bar{
    --lh-bg:#0a0a0a;
    --lh-bg-panel:#121210;
    --lh-ivory:#ece6d8;
    --lh-muted:#9c968650;
    --lh-muted-solid:#8a8475;
    --lh-gold:#c79a3f;
    --lh-gold-soft:rgba(199,154,63,.12);
    --lh-line:rgba(236,230,216,.1);
    font-family:'Inter',sans-serif;
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(10,10,10,.88);
    backdrop-filter:blur(10px) saturate(140%);
    -webkit-backdrop-filter:blur(10px) saturate(140%);
    border-bottom:1px solid var(--lh-line);
    color:var(--lh-ivory);
  }
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
  .lh-bar *{box-sizing:border-box;}
  .lh-row{
    max-width:1320px;
    margin:0 auto;
    padding:0 6vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:74px;
  }

  /* ---------- Brand ---------- */
  .lh-brand{
    display:flex;align-items:center;
    text-decoration:none;
    flex-shrink:0;
    transition:opacity .2s ease;
  }
  .lh-brand:hover{opacity:.8;}
  .lh-brand-img{height:34px;width:auto;display:block;}

  /* ---------- Nav (desktop) ---------- */
  .lh-nav{
    display:flex;
    align-items:center;
    gap:.4rem;
  }
  .lh-link{
    position:relative;
    color:var(--lh-ivory);
    text-decoration:none;
    font-size:.83rem;
    font-weight:500;
    letter-spacing:.02em;
    padding:.6rem .85rem;
    border-radius:6px;
    white-space:nowrap;
    transition:color .2s ease, background .2s ease;
  }
  .lh-link::after{
    content:'';
    position:absolute;
    left:.85rem;right:.85rem;bottom:.35rem;
    height:1px;
    background:var(--lh-gold);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
  }
  .lh-link:hover{background:rgba(255,255,255,.04);}
  .lh-link:hover::after{transform:scaleX(1);}

  /* ---------- Dropdown (desktop) ---------- */
  .lh-drop{position:relative;}
  .lh-drop-trigger{
    display:flex;align-items:center;gap:.35rem;
    color:var(--lh-ivory);
    font-size:.83rem;font-weight:500;letter-spacing:.02em;
    padding:.6rem .85rem;
    border-radius:6px;
    cursor:pointer;
    list-style:none;
    user-select:none;
    transition:color .2s ease, background .2s ease;
  }
  .lh-drop-trigger::-webkit-details-marker{display:none;}
  .lh-drop-trigger:hover{background:rgba(255,255,255,.04);}
  .lh-drop-caret{
    width:9px;height:9px;
    border-right:1.4px solid var(--lh-muted-solid);
    border-bottom:1.4px solid var(--lh-muted-solid);
    transform:rotate(45deg);
    transition:transform .25s ease, border-color .25s ease;
    margin-top:-3px;
  }
  .lh-drop[open] > .lh-drop-trigger .lh-drop-caret{
    transform:rotate(225deg);
    margin-top:3px;
    border-color:var(--lh-gold);
  }
  .lh-drop[open] > .lh-drop-trigger{color:var(--lh-gold);}

  .lh-panel{
    position:absolute;
    top:calc(100% + 12px);
    left:50%;
    transform:translate(-50%,-6px);
    min-width:260px;
    background:var(--lh-bg-panel);
    border:1px solid var(--lh-line);
    border-radius:10px;
    padding:.5rem;
    box-shadow:0 18px 40px rgba(0,0,0,.45);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .lh-drop[open] > .lh-panel{
    opacity:1;
    pointer-events:auto;
    transform:translate(-50%,0);
    animation:lh-panel-in .22s ease;
  }
  @keyframes lh-panel-in{
    from{opacity:0;transform:translate(-50%,-6px);}
    to{opacity:1;transform:translate(-50%,0);}
  }

  .lh-panel-link{
    display:flex;
    align-items:center;
    color:var(--lh-ivory);
    text-decoration:none;
    font-size:.84rem;
    padding:.65rem .8rem;
    border-radius:7px;
    transition:background .18s ease, padding-left .18s ease, color .18s ease;
  }
  .lh-panel-link:hover{
    background:var(--lh-gold-soft);
    color:var(--lh-gold);
    padding-left:1.05rem;
  }

  /* ---------- Nested dropdown (Certificación) ---------- */
.lh-sub{position:relative;}

.lh-sub-trigger{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
  color:var(--lh-ivory);
  font-size:.84rem;
  padding:.65rem .8rem;
  border-radius:7px;
  cursor:pointer;
  list-style:none;
  user-select:none;
  transition:background .18s ease, color .18s ease;
}

.lh-sub-trigger::-webkit-details-marker{
  display:none;
}

.lh-sub-trigger:hover{
  background:var(--lh-gold-soft);
  color:var(--lh-gold);
}

.lh-sub-caret{
  width:7px;
  height:7px;
  flex-shrink:0;
  border-right:1.3px solid var(--lh-muted-solid);
  border-bottom:1.3px solid var(--lh-muted-solid);
  transform:rotate(-45deg);
  transition:transform .2s ease;
}

.lh-sub[open] > .lh-sub-trigger .lh-sub-caret{
  transform:rotate(45deg);
}

/* Submenú lateral */
.lh-sub-list{
  position:absolute;
  top:0;
  left:calc(100% + 8px);

  padding:.5rem;

  display:flex;
  flex-direction:column;

  min-width:260px;

  background:var(--lh-bg-panel);
  border:1px solid var(--lh-line);
  border-radius:10px;

  box-shadow:0 18px 40px rgba(0,0,0,.45);

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:opacity .2s ease;
}

.lh-sub[open] > .lh-sub-list{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

  /* ---------- External / utility link ---------- */
  .lh-link-ext{display:inline-flex;align-items:center;gap:.3rem;}
  .lh-link-ext svg{width:11px;height:11px;opacity:.6;flex-shrink:0;}

  /* ---------- Pulse dot on CTA ---------- */
  .lh-cta{
    display:flex;align-items:center;gap:.55rem;
    background:var(--lh-gold);
    color:var(--lh-bg);
    font-size:.78rem;font-weight:600;letter-spacing:.03em;
    padding:.6rem 1.1rem;
    border-radius:7px;
    text-decoration:none;
    transition:background .2s ease, transform .2s ease;
    flex-shrink:0;
  }
  .lh-cta:hover{background:#dcb35a;transform:translateY(-1px);}
  .lh-cta-dot{
    width:6px;height:6px;border-radius:50%;
    background:var(--lh-bg);
    animation:lh-dot 2s infinite;
  }
  @keyframes lh-dot{
    0%,100%{opacity:1;}
    50%{opacity:.25;}
  }

  /* ---------- Mobile toggle ---------- */
  .lh-burger{
    display:none;
    width:42px;height:42px;
    border:1px solid var(--lh-line);
    border-radius:8px;
    background:transparent;
    cursor:pointer;
    flex-shrink:0;
    position:relative;
    padding:0;
  }
  .lh-burger span{
    position:absolute;left:11px;right:11px;height:1.5px;
    background:var(--lh-ivory);
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease, top .3s ease;
  }
  .lh-burger span:nth-child(1){top:15px;}
  .lh-burger span:nth-child(2){top:20.5px;}
  .lh-burger span:nth-child(3){top:26px;}
  .lh-bar.lh-open .lh-burger span:nth-child(1){top:20.5px;transform:rotate(45deg);}
  .lh-bar.lh-open .lh-burger span:nth-child(2){opacity:0;}
  .lh-bar.lh-open .lh-burger span:nth-child(3){top:20.5px;transform:rotate(-45deg);}

  /* ---------- Mobile nav panel ---------- */
  .lh-mobile{
    display:none;
    max-height:0;
    overflow:hidden;
    background:var(--lh-bg);
    border-top:1px solid var(--lh-line);
    transition:max-height .35s ease;
  }
  .lh-bar.lh-open .lh-mobile{max-height:82vh;overflow-y:auto;}
  .lh-mobile-inner{padding:.75rem 6vw 2rem;}
  .lh-mobile-link{
    display:block;
    color:var(--lh-ivory);
    text-decoration:none;
    font-size:.95rem;font-weight:500;
    padding:.9rem .2rem;
    border-bottom:1px solid var(--lh-line);
  }
  .lh-mobile-link:active{color:var(--lh-gold);}

  .lh-mobile-group{border-bottom:1px solid var(--lh-line);}
  .lh-mobile-trigger{
    display:flex;align-items:center;justify-content:space-between;
    width:100%;
    background:none;border:none;
    color:var(--lh-ivory);
    font-family:inherit;
    font-size:.95rem;font-weight:500;
    padding:.9rem .2rem;
    cursor:pointer;
    list-style:none;
  }
  .lh-mobile-trigger::-webkit-details-marker{display:none;}
  .lh-mobile-caret{
    width:8px;height:8px;
    border-right:1.4px solid var(--lh-muted-solid);
    border-bottom:1.4px solid var(--lh-muted-solid);
    transform:rotate(45deg);
    transition:transform .25s ease;
  }
  .lh-mobile-group[open] .lh-mobile-caret{transform:rotate(225deg);}
  .lh-mobile-sub{
    padding:0 0 .6rem 1rem;
    display:flex;flex-direction:column;
  }
  .lh-mobile-sub a{
    color:var(--lh-muted-solid);
    text-decoration:none;
    font-size:.86rem;
    padding:.55rem .2rem;
  }
  .lh-mobile-sub a:active{color:var(--lh-gold);}
  .lh-mobile-nested summary{
    color:var(--lh-ivory);
    font-size:.88rem;font-weight:500;
    padding:.6rem .2rem;
    cursor:pointer;
    list-style:none;
  }
  .lh-mobile-nested summary::-webkit-details-marker{display:none;}
  .lh-mobile-nested .lh-mobile-sub{padding-left:1rem;}

  @media (prefers-reduced-motion:reduce){
    .lh-bar,.lh-link,.lh-panel,.lh-cta,.lh-cta-dot,.lh-burger span{transition:none;animation:none;}
  }

  /* ---------- Responsive breakpoints ---------- */
  @media (max-width:1080px){
    .lh-nav .lh-link, .lh-nav .lh-drop{display:none;}
    .lh-nav .lh-cta{display:none;}
    .lh-burger{display:block;}
    .lh-mobile{display:block;}
  }
  @media (min-width:1081px){
    .lh-mobile{display:none !important;}
  }
  @media (max-width:480px){
    .lh-row{padding:0 5vw;height:64px;}
    .lh-brand-img{height:28px;}
  }
.lh-link-platform {
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--lh-gold, #d4af37);
  color: var(--lh-gold, #d4af37) !important;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lh-link-platform:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

.lh-link-platform svg {
  width: 14px;
  height: 14px;
}

/* versión mobile */
.lh-mobile-link.lh-link-platform {
  display: inline-block;
  width: fit-content;
  border-radius: 8px;
}
/* ===================================================================
   LOT INTERNACIONAL — MODAL DE ACREDITACIÓN
   Clases con prefijo "lh-acc-" para no chocar con nada del header.
=================================================================== */

/* ---- Botón disparador (header) ---- */
.lh-acc-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.lh-acc-trigger svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--lh-gold, #d9b45c);
}

.lh-acc-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.lh-acc-trigger:active { transform: translateY(0); }

/* Variante para el menú mobile */
.lh-mobile-link.lh-acc-trigger-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.lh-mobile-link.lh-acc-trigger-mobile svg {
  width: 16px;
  height: 16px;
  color: var(--lh-gold, #d9b45c);
}

/* ---- Overlay ---- */
.lh-acc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 10, 20, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.lh-acc-overlay.lh-acc-open {
  opacity: 1;
  visibility: visible;
}

/* ---- Modal ---- */
.lh-acc-modal {
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}

.lh-acc-overlay.lh-acc-open .lh-acc-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ---- Header del modal ---- */
.lh-acc-head {
  position: relative;
  padding: 34px 40px 30px;
  background:
    linear-gradient(120deg, rgba(8, 16, 34, .92), rgba(10, 26, 51, .88)),
    radial-gradient(circle at 85% 20%, rgba(217, 180, 92, .15), transparent 60%);
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.lh-acc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lh-acc-badge svg { width: 14px; height: 14px; color: var(--lh-gold, #d9b45c); }

.lh-acc-head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .2px;
  max-width: 720px;
}

.lh-acc-head p {
  margin: 0;
  max-width: 620px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.lh-acc-inacal {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #fff;
  opacity: .9;
}

.lh-acc-inacal svg { width: 64px; height: 64px; }

.lh-acc-inacal .lh-acc-inacal-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
}

.lh-acc-inacal .lh-acc-inacal-sub {
  font-size: 10.5px;
  line-height: 1.35;
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
}

.lh-acc-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lh-acc-close:hover { background: rgba(255, 255, 255, 0.22); transform: rotate(90deg); }
.lh-acc-close svg { width: 16px; height: 16px; }

/* ---- Body / tabla ---- */
.lh-acc-body {
  padding: 26px 40px 8px;
  overflow-y: auto;
}

.lh-acc-table {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef0f4;
}

.lh-acc-table-head {
  display: flex;
  padding: 16px 22px;
  background: #0a1a33;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lh-acc-col-norm { flex: 1; }
.lh-acc-col-estado { width: 260px; text-align: left; }

.lh-acc-rows { background: #fff; }

.lh-acc-row {
  display: flex;
  align-items: center;
  padding: 18px 22px 20px;
  border-top: 1px solid #f0f1f5;
  opacity: 0;
  transform: translateY(8px);
  animation: lh-acc-row-in .4s ease forwards;
}

@keyframes lh-acc-row-in {
  to { opacity: 1; transform: translateY(0); }
}

.lh-acc-col-norm {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lh-acc-seal {
  --seal-color: #0a1a33;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--seal-color), color-mix(in srgb, var(--seal-color) 65%, #000));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--seal-color) 45%, transparent),
              inset 0 0 0 3px rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lh-acc-seal svg,
.lh-acc-seal img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lh-acc-seal img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.lh-acc-seal em {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff;
  background: var(--seal-color);
  padding: 1px 6px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--seal-color) 55%, transparent);
}

.lh-acc-row:hover .lh-acc-seal {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--seal-color) 55%, transparent),
              inset 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.lh-acc-norm-name {
  font-size: 15.5px;
  font-weight: 700;
  color: #0a1a33;
}

.lh-acc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #1054c9;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.lh-acc-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1054c9;
  flex-shrink: 0;
}

.lh-acc-pill:hover {
  background: #1054c9;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 84, 201, .28);
}

.lh-acc-pill:hover::before { background: #fff; }

/* ---- Footer nota ---- */
.lh-acc-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 30px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f4f7fc;
  border: 1px solid #e6ecf7;
}

.lh-acc-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #1054c9;
}

.lh-acc-note p {
  margin: 0;
  font-size: 13.2px;
  line-height: 1.55;
  color: #3b475c;
}

/* ---- Scrollbar ---- */
.lh-acc-body::-webkit-scrollbar { width: 8px; }
.lh-acc-body::-webkit-scrollbar-thumb {
  background: #d7dce6;
  border-radius: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .lh-acc-head { padding: 28px 22px 24px; }
  .lh-acc-inacal { display: none; }
  .lh-acc-body { padding: 20px 18px 4px; }
  .lh-acc-table-head { padding: 12px 14px; }
  .lh-acc-row { padding: 14px; flex-wrap: wrap; gap: 10px; }
  .lh-acc-col-estado { width: auto; margin-left: 62px; }
  .lh-acc-pill { padding: 8px 14px; font-size: 11.5px; }
}