
/*Nav*/
header {
    width: 100%;
    z-index: var(--ziN);
    position: fixed;
    display: grid;
    grid-template-columns: var(--grid0);
    column-gap: var(--gap);
  }
  
  /* barras */
  .nv0,
  .nv1 {
    display: flex;
    transition: var(--AnM0);
  }
  
  .nv0 {
    grid-column: var(--cl00);
    justify-content: space-between;
    height: var(--nv0m);
  }
  
  .nv1 {
    box-shadow: var(--saN2);
    position: fixed;
    height: calc(100vh - var(--nv0m));
    top: var(--nv0m);
    flex-direction: column;
    overflow-y: auto;
    z-index: -1;
    justify-content: flex-start;
  }
  
  .nv1>*:last-child {
    margin-top: auto;
  }
  
  .nv0>*,
  .nv1>* {
    display: flex;
    align-items: center;
  }
  
  .nv1>* {
    flex-direction: column;
  }
  
  .nv0 i,
  .nv1 i {
    width: var(--wdIco);
    text-align: center;
  }
  
  /* Botones */
  header button,
  header a {
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: var(--wdIco);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Solo icono - mutar icono a icono+texto */
  [class*="nvI"] {
    overflow: hidden;
    width: var(--wdIco);
    flex-shrink: 0;
  }
  
  [class*="nvI"] i {
    min-width: var(--wdIco);
  }
  
  
  
  
  /* Hamburguesa - Menú lateral*/
  .📌:after {
    font-family: ftI;
    width: var(--wdIco);
  }
  
  /* NAV */
  nav {
    width: 100%;
    padding-bottom: var(--eo5);
  
  }
  
  nav ul {
    display: flex;
    flex-flow: column;
  }
  
  /* nav li{
    outline: chartreuse solid;
  } */
  nav li,
  nav li * {
    position: relative;
    justify-content: center;
  }
  
  nav i {
    position: absolute;
  }
  
  nav i:first-child {
    left: 0;
  }
  
  nav i:last-child {
    right: 0;
  }
  
  nav li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  /* Sub menú */
  .nvSm+* {
    display: none;
    z-index: 1;
  }
  

  
  .rrss {
    display: flex;
  }
  
  .📧 {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
  }
  
  
  
  /* Arriba */
  .debajo {
    position: fixed;
    right: var(--eo1);
  
    width: auto;
    height: auto;
    display: flex;
    flex-flow: column;
  }
  
  .debajo i {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  /* Logo */
  .❤ {
    overflow: hidden;
  }
  