/* NCCM 58.13 — Instalar App solo dentro del menú ☰ (móvil/app) */
@media (max-width:760px){
  /* Ocultar el botón suelto del header */
  html body .header .nav > .install-app-btn,
  html body .nav > .install-app-btn,
  html body header .install-app-btn:not(.nav-links .install-app-btn){
    display:none!important;
  }

  /* Mostrar Instalar App DENTRO del menú de tres rayitas */
  html body .nav-links .install-app-btn,
  html body .nav-links [data-install-app]{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    width:100%!important;
    margin-top:6px!important;
    padding:13px 14px!important;
    border-radius:14px!important;
    border:1px solid rgba(225,184,121,.35)!important;
    background:linear-gradient(135deg,#c7975e,#e5c28c)!important;
    color:#23160d!important;
    font-size:16px!important;
    font-weight:950!important;
    cursor:pointer!important;
    box-shadow:none!important;
  }
  html body .nav-links .install-app-btn.installed,
  html body .nav-links [data-install-app].installed{
    opacity:.72!important;
    filter:grayscale(.15)!important;
  }
}

/* Desktop: el botón del header sigue visible; el del menú no hace falta duplicar */
@media (min-width:761px){
  html body .nav-links .install-app-btn{
    display:none!important;
  }
}
