/* Mundo Online - menú móvil único V5 */
.mo-site-mobile-header,
.mo-site-drawer{display:none}

@media (max-width:900px){
  body.mo-site-menu-ready > header.header,
  body.mo-site-menu-ready > header.topbar{
    display:none !important;
  }

  body.mo-site-menu-ready .mobile-menu,
  body.mo-site-menu-ready .drawer{
    display:none !important;
  }

  .mo-site-mobile-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    min-height:78px;
    padding:10px 18px;
    position:sticky;
    top:0;
    z-index:2147483000;
    background:#101116;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#fff;
  }
  .mo-site-mobile-brand{
    display:flex;
    align-items:center;
    min-width:0;
    height:58px;
  }
  .mo-site-mobile-brand img{
    display:block;
    width:auto;
    max-width:168px;
    max-height:54px;
    object-fit:contain;
    object-position:left center;
  }
  .mo-site-menu-button{
    flex:0 0 52px;
    width:52px;
    height:52px;
    border:1px solid #34353c;
    border-radius:15px;
    background:#202126;
    display:grid;
    place-items:center;
    padding:0;
    cursor:pointer;
  }
  .mo-site-menu-lines,
  .mo-site-menu-lines::before,
  .mo-site-menu-lines::after{
    content:"";
    display:block;
    width:23px;
    height:3px;
    border-radius:99px;
    background:#fff;
    position:relative;
  }
  .mo-site-menu-lines::before{position:absolute;top:-8px;left:0}
  .mo-site-menu-lines::after{position:absolute;top:8px;left:0}

  .mo-site-drawer{
    display:block;
    position:fixed;
    inset:0;
    z-index:2147483640;
    pointer-events:none;
    visibility:hidden;
  }
  .mo-site-drawer.is-open{
    pointer-events:auto;
    visibility:visible;
  }
  .mo-site-drawer-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.64);
    opacity:0;
    transition:opacity .2s ease;
  }
  .mo-site-drawer.is-open .mo-site-drawer-backdrop{opacity:1}
  .mo-site-drawer-panel{
    position:absolute;
    top:0;
    right:0;
    width:min(86vw,390px);
    height:100%;
    padding:24px 20px 28px;
    background:#15161a;
    color:#fff;
    box-shadow:-18px 0 46px rgba(0,0,0,.38);
    transform:translateX(102%);
    transition:transform .22s ease;
    display:flex;
    flex-direction:column;
  }
  .mo-site-drawer.is-open .mo-site-drawer-panel{transform:translateX(0)}
  .mo-site-drawer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    min-height:88px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.09);
  }
  .mo-site-drawer-logo{
    display:flex;
    align-items:center;
    min-width:0;
  }
  .mo-site-drawer-logo img{
    display:block;
    width:auto;
    max-width:172px;
    max-height:62px;
    object-fit:contain;
    object-position:left center;
  }
  .mo-site-drawer-close{
    flex:0 0 52px;
    width:52px;
    height:52px;
    border-radius:15px;
    border:1px solid #36373e;
    background:#222329;
    color:#fff;
    font-size:34px;
    line-height:1;
    font-weight:300;
    cursor:pointer;
  }
  .mo-site-drawer-nav{
    display:grid;
    padding-top:28px;
  }
  .mo-site-drawer-nav a{
    min-height:62px;
    display:flex;
    align-items:center;
    padding:0 12px;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#f2eff7;
    font-size:17px;
    line-height:1.2;
    font-weight:750;
    text-decoration:none;
  }
  .mo-site-drawer-nav a:first-child{border-top:0}
  .mo-site-drawer-nav a.is-active{color:#c46cff}
  .mo-site-drawer-bottom{
    margin-top:auto;
    padding-top:24px;
  }
  .mo-site-drawer-cta{
    min-height:56px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 18px;
    background:linear-gradient(135deg,#7c2cff,#bc3cff);
    color:#fff !important;
    font-size:17px;
    font-weight:850;
    text-decoration:none;
  }
  body.mo-site-menu-open{overflow:hidden !important}
}
