:root{
  --bg-top:#141414;
  --bg-header:#e7e7e7;
  --text:#0b0f12;
  --muted:#6b7280;
  --white:#ffffff;
  --brand:#f59e0b;
  --brand-dark:#c77700;
  --btn-secondary:rgba(255,255,255,.14);
  --shadow:0 12px 30px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

.container{
  width:min(1180px,92%);
  margin:0 auto;
}

.topbar{
  background:var(--bg-top);
  color:rgba(255,255,255,.9);
  font-size:13px;
}

.topbar__inner{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.topbar__left{display:flex; align-items:center; gap:10px}
.topbar__right{display:flex; align-items:center; gap:18px; flex-wrap:wrap}

.topbar__icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:rgba(255,255,255,.85);
  text-decoration:none;
  transition:background .2s ease, color .2s ease;
}

.topbar__icon:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
}

.topbar__icon svg{
  width:16px;
  height:16px;
  fill:currentColor;
}

.topbar__item{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.9);
  text-decoration:none;
  white-space:nowrap;
}

.topbar__item svg{
  width:16px;
  height:16px;
  fill:rgba(245,158,11,.95);
}

.header{
  background:var(--bg-header);
  border-bottom:1px solid rgba(0,0,0,.06);
  position:sticky;
  top:0;
  z-index:1000;
}

.header__inner{
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:360px;
  flex-shrink:0;
}

.brand__logo{
  display:block;
  height:160px;
  width:auto;
  max-width:none;
  object-fit:contain;
  transition:transform .2s ease;
}

.brand__logo:hover{
  transform:scale(1.05);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex:1;
}

.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  border-radius:12px;
}

.nav__toggle span{
  display:block;
  height:2px;
  width:22px;
  background:#1f2937;
  margin:5px auto;
  border-radius:999px;
}

.nav__list{
  list-style:none;
  display:flex;
  gap:40px;
  padding:0;
  margin:0;
  align-items:center;
}

.nav__link{
  font-size:15px;
  letter-spacing:.06em;
  font-weight:700;
  color:#111827;
  text-decoration:none;
  padding:10px 6px;
  opacity:.9;
  transition:opacity .2s ease, transform .2s ease;
  white-space:nowrap;
}

.nav__link:hover{
  opacity:1;
  transform:translateY(-1px);
}

.hero{
  position:relative;
  min-height:calc(100vh - 34px - 128px);
  display:grid;
  align-items:center;
  overflow:hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  transition:opacity 900ms ease, transform 1200ms ease;
  opacity:1;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.42));
}

.hero__content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:84px 0 70px;
}

.hero__title{
  color:#fff;
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.04;
  margin:0 0 16px;
  font-size:clamp(2.2rem, 5vw, 4.3rem);
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.hero__subtitle{
  margin:0 auto 22px;
  width:min(720px, 96%);
  color:rgba(255,255,255,.92);
  font-weight:600;
  font-size:clamp(1rem, 1.6vw, 1.2rem);
  line-height:1.55;
  text-shadow:0 10px 28px rgba(0,0,0,.30);
}

.hero__actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.04em;
  font-size:12px;
  transition:transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  user-select:none;
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.btn--primary{
  background:var(--brand);
  color:#111827;
  box-shadow:0 14px 34px rgba(245,158,11,.25);
}

.btn--primary:hover{
  background:var(--brand-dark);
}

.btn--secondary{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(6px);
}

.btn--secondary:hover{
  background:#f59e0b;
  border-color:rgba(245,158,11,.75);
  color:#111827;
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.hero.is-changing .hero__title,
.hero.is-changing .hero__subtitle,
.hero.is-changing .hero__actions{
  opacity:0;
  transform:translateY(10px);
}

.hero__title,
.hero__subtitle,
.hero__actions{
  transition:opacity 420ms ease, transform 420ms ease;
}

.hero__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:50px;
  height:50px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  backdrop-filter:blur(8px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero__nav svg{
  width:22px;
  height:22px;
  fill:#fff;
}

.hero__nav:hover{
  transform:translateY(-50%) scale(1.04);
  background:rgba(0,0,0,.30);
  border-color:rgba(255,255,255,.35);
}

.hero__nav--prev{left:18px}
.hero__nav--next{right:18px}

.hero__dots{
  position:absolute;
  bottom:18px;
  right:20px;
  z-index:3;
  display:flex;
  gap:8px;
  align-items:center;
}

.hero__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  transition:width .2s ease, background .2s ease;
}

.hero__dot.is-active{
  width:26px;
  background:rgba(255,255,255,.92);
}

.scrolltop{
  position:fixed;
  right:18px;
  bottom:86px;
  width:46px;
  height:46px;
  border-radius:999px;
  border:0;
  background:rgba(17,24,39,.92);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:var(--shadow);
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, background .2s ease;
  z-index:50;
}

.scrolltop svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.scrolltop.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.scrolltop:hover{
  background:#0b1220;
}

.spacer{
  height:900px;
}

.section{
  padding:84px 0;
  background:#fff;
}

.section--mv{
  background:linear-gradient(180deg, #f4f4f4, #ffffff);
}

.section--obj{
  background:#0f1115;
  color:#fff;
}

.eyebrow{
  display:inline-block;
  font-weight:800;
  letter-spacing:.14em;
  font-size:12px;
  color:rgba(17,24,39,.72);
  text-transform:uppercase;
  border-bottom:2px solid rgba(245,158,11,.65);
  padding-bottom:6px;
  margin-bottom:14px;
}

.section--obj .eyebrow{
  color:rgba(255,255,255,.72);
  border-bottom-color:rgba(245,158,11,.85);
}

.h2{
  margin:0 0 14px;
  font-size:clamp(1.8rem, 3.2vw, 2.6rem);
  line-height:1.1;
  letter-spacing:-.02em;
}

.h3{
  margin:0;
  font-size:1.2rem;
  letter-spacing:-.01em;
}

.lead{
  margin:0 0 14px;
  font-size:1.05rem;
  line-height:1.7;
  color:rgba(17,24,39,.78);
}

.section--obj .lead{
  color:rgba(255,255,255,.78);
}

.p{
  margin:0 0 14px;
  line-height:1.8;
  color:rgba(17,24,39,.72);
}

.section--obj .p{
  color:rgba(255,255,255,.72);
}

.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
}

.about-media{
  position:relative;
  min-height:520px;
}

.about-photo{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  transform:translateZ(0);
}

.about-photo img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
}

.about-accent{
  position:absolute;
  left:-18px;
  top:28px;
  width:120px;
  height:78%;
  background:linear-gradient(180deg, rgba(245,158,11,1), rgba(245,158,11,.55));
  border-radius:18px;
  z-index:-1;
  filter:drop-shadow(0 18px 30px rgba(245,158,11,.18));
}

.about-stats{
  position:absolute;
  right:-16px;
  top:54px;
  display:grid;
  gap:14px;
  width:220px;
}

.stat-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:18px 18px;
  box-shadow:0 18px 44px rgba(0,0,0,.10);
  backdrop-filter:blur(8px);
}

.stat-num{
  font-weight:900;
  font-size:40px;
  letter-spacing:-.03em;
  color:#0f1115;
}

.stat-label{
  margin-top:4px;
  color:rgba(17,24,39,.72);
  font-weight:700;
  font-size:13px;
}

.pill-row{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  background:rgba(245,158,11,.12);
  color:#111827;
  border:1px solid rgba(245,158,11,.28);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.04em;
}

.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.mv-card{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.06);
  padding:26px 24px;
  box-shadow:0 18px 50px rgba(0,0,0,.10);
  position:relative;
  overflow:hidden;
}

.mv-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(600px 220px at 20% 0%, rgba(245,158,11,.18), transparent 55%);
  pointer-events:none;
}

.mv-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.mv-icon{
  width:12px;
  height:12px;
  border-radius:4px;
  background:rgba(245,158,11,1);
  box-shadow:0 10px 22px rgba(245,158,11,.25);
}

.mv-icon--alt{
  background:#111827;
  box-shadow:0 10px 22px rgba(17,24,39,.22);
}

.obj-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:38px;
  align-items:start;
}

.obj-list{
  display:grid;
  gap:14px;
}

.obj-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px 16px;
}

.check{
  width:22px;
  height:22px;
  border-radius:8px;
  background:rgba(245,158,11,.92);
  box-shadow:0 14px 30px rgba(245,158,11,.18);
  flex:0 0 auto;
  position:relative;
}

.check::after{
  content:"";
  position:absolute;
  left:6px;
  top:7px;
  width:9px;
  height:5px;
  border-left:3px solid #111827;
  border-bottom:3px solid #111827;
  transform:rotate(-45deg);
}

.obj-text{
  color:rgba(255,255,255,.82);
  line-height:1.7;
  font-weight:600;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 700ms ease, transform 700ms ease;
}

.reveal.is-in{
  opacity:1;
  transform:translateY(0);
}

.footer{
  position:relative;
  background:#0b0d10;
  color:rgba(255,255,255,.82);
  overflow:hidden;
}

.footer__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 380px at 25% 10%, rgba(245,158,11,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75)),
    url("assets/img/footer/footer-bg.jpg");
  background-size:cover;
  background-position:center;
  opacity:.6;
}

.footer__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr 1.2fr .9fr;
  gap:34px;
  padding:70px 0 52px;
}

.footer__brand img{
  height:54px;
  width:auto;
  display:block;
  filter:drop-shadow(0 14px 30px rgba(0,0,0,.35));
}

.footer__title{
  margin:12px 0 14px;
  font-size:16px;
  letter-spacing:.02em;
  font-weight:900;
  color:#fff;
}

.footer__text{
  margin:0;
  line-height:1.7;
  color:rgba(255,255,255,.72);
  max-width:420px;
}

.footer__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer__icon{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(245,158,11,.14);
  border:1px solid rgba(245,158,11,.18);
  flex:0 0 auto;
}

.footer__icon svg{
  width:18px;
  height:18px;
  fill:rgba(245,158,11,.95);
}

.footer__label{
  font-weight:800;
  font-size:12px;
  letter-spacing:.08em;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  margin-bottom:4px;
}

.footer__value{
  color:rgba(255,255,255,.82);
}

.footer__links{
  display:grid;
  gap:10px;
  padding-top:6px;
}

.footer__link{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:700;
  transition:color .2s ease, transform .2s ease;
}

.footer__link:hover{
  color:#fff;
  transform:translateX(2px);
}

.footer__social{
  margin-top:18px;
  display:flex;
  gap:10px;
}

.social{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.social:hover{
  transform:translateY(-2px);
  background:rgba(245,158,11,.16);
  border-color:rgba(245,158,11,.22);
}

.social svg{
  width:18px;
  height:18px;
  fill:#fff;
}

.footer__bottom{
  position:relative;
  z-index:2;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.25);
}

.footer__bottomInner{
  padding:16px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.footer__copy{
  color:rgba(255,255,255,.62);
  font-weight:700;
  font-size:13px;
}

.pagehero{
  position:relative;
  min-height:44vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}

.pagehero__bg{
  position:absolute;
  inset:0;
  background:url("assets/img/hero/slider1.jpg") center/cover no-repeat;
  transform:scale(1.04);
}

.pagehero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.40));
}

.pagehero__content{
  position:relative;
  z-index:2;
  padding:64px 0 58px;
}

.pagehero__title{
  margin:0 0 12px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.05;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.pagehero__sub{
  margin:0;
  color:rgba(255,255,255,.82);
  font-weight:700;
  line-height:1.65;
  max-width:680px;
}

@media (max-width:1020px){
  .nav__list{gap:14px}
  .nav__link{font-size:11px}
  .about-grid{grid-template-columns:1fr; gap:28px}
  .about-media{min-height:auto}
  .about-stats{
    position:relative;
    right:auto;
    top:auto;
    width:100%;
    grid-template-columns:repeat(3,1fr);
  }
  .about-photo img{height:420px}
  .mv-grid{grid-template-columns:1fr}
  .obj-grid{grid-template-columns:1fr}
}

@media (max-width:980px){
  .footer__inner{grid-template-columns:1fr; padding:62px 0 42px}
  .footer__brand img{height:52px}
}

@media (max-width:860px){
  .topbar{
    position:relative;
    z-index:120;
  }

  .topbar__inner{
    height:auto;
    min-height:34px;
    padding:8px 0;
    align-items:flex-start;
  }

  .topbar__left,
  .topbar__right{
    flex-wrap:wrap;
  }

  .topbar__right{
    justify-content:flex-end;
    row-gap:8px;
    column-gap:10px;
    gap:12px;
  }

  .topbar__item{
    font-size:12px;
    line-height:1.25;
  }

  .header{
    position:relative;
    z-index:110;
  }

  .header__inner{
    min-height:92px;
    padding:8px 0;
  }

  .brand{
    min-width:auto;
  }

  .brand__logo{
    height:58px;
  }

  .nav{
    position:relative;
  }

  .nav__toggle{
    display:block;
  }

  .nav__list{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    left:auto;
    width:min(320px, calc(100vw - 32px));
    background:rgba(231,231,231,.98);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px 18px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
    z-index:999;
    opacity:0;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease;
  }

  .nav__list.is-open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .nav__link{
    display:block;
    width:100%;
    padding:12px 0;
  }

  .hero{
    min-height:calc(100vh - 34px - 92px);
    z-index:1;
  }

  .hero__bg,
  .hero__overlay,
  .hero__content,
  .hero__dots{
    z-index:1;
  }

  .hero__nav{
    display:none;
  }
}

@media (max-width:640px){
  .topbar__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .topbar__left,
  .topbar__right{
    width:100%;
  }

  .topbar__right{
    justify-content:flex-start;
  }

  .topbar__item{
    width:100%;
    white-space:normal;
    word-break:break-word;
  }

  .brand__logo{
    height:50px;
  }

  .nav__toggle{
    width:48px;
    height:48px;
  }

  .nav__list{
    top:calc(100% + 8px);
    width:min(280px, calc(100vw - 24px));
  }

  .section{
    padding:70px 0;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .about-photo img{
    height:360px;
  }
}

@media (prefers-reduced-motion:reduce){
  *{
    transition:none !important;
    scroll-behavior:auto !important;
  }
}
/* ===== FORZAR TAMAÑO DEL LOGO EN HEADER ===== */
.header{
  min-height: 180px !important;
  display: block !important;
}

.header .container.header__inner{
  min-height: 180px !important;
  height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 0 !important;
}

.header .brand{
  display: flex !important;
  align-items: center !important;
  min-width: 360px !important;
  flex-shrink: 0 !important;
}

.header .brand__logo{
  display: block !important;
  height: 160px !important;
  max-height: none !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

@media (max-width: 860px){
  .header{
    min-height: 92px !important;
  }

  .header .container.header__inner{
    min-height: 92px !important;
    height: 92px !important;
  }

  .header .brand{
    min-width: auto !important;
  }

  .header .brand__logo{
    height: 58px !important;
  }
}
@media (max-width: 768px){
  .header .brand__logo{
    height: 60px !important;
    max-height: none !important;
  }
}
@media (max-width: 768px){
  .header .brand{
    height: auto !important;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px){
  .brand__logo{
    height: 65px !important;
  }
}

/* =========================================================
   AJUSTE SOLO PARA TELÉFONO:
   - Logo más grande en móvil
   - Barra blanca del logo/menú fija al bajar
   ========================================================= */
@media (max-width: 768px){
  header.header,
  .header{
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: var(--bg-header) !important;
  }

  .header .container.header__inner,
  .header__inner{
    min-height: 120px !important;
    height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .header .brand,
  .brand{
    min-width: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .header .brand__logo,
  .brand__logo{
    height: 78px !important;
    max-height: none !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
  }

  .nav__toggle{
    display: block !important;
  }
}


/* =========================================================
   FIX FINAL SOLO MÓVIL - HEADER BLANCO FIJO REAL
   Mantiene fija únicamente la franja blanca del logo y menú.
   No afecta escritorio.
   ========================================================= */
@media (max-width: 768px){
  .header,
  header.header{
    background: var(--bg-header) !important;
    min-height: 120px !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.vyrsa-mobile-header-fixed .header,
  body.vyrsa-mobile-header-fixed header.header{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    display: block !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.10) !important;
  }

  .header .container.header__inner,
  .header__inner{
    min-height: 120px !important;
    height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .header .brand,
  .brand{
    min-width: auto !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .header .brand__logo,
  .brand__logo{
    height: 100px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .nav__toggle{
    display: block !important;
  }

  .vyrsa-mobile-header-spacer{
    display: none;
    height: 120px !important;
  }

  body.vyrsa-mobile-header-fixed .vyrsa-mobile-header-spacer{
    display: block !important;
  }

  body.vyrsa-mobile-header-fixed .nav__list{
    position: fixed !important;
    top: 128px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 2147483647 !important;
  }
}
