nav{
    position: fixed;  
    left: 0;
    width:100vw;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding-right: 20px;
}
nav#menu{
    top:0;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav#pie{
    bottom:0;
    box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width:100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.separador{
  border: 1px solid var(--azul);  
}

nav li{
    height: 50px;
}
nav li a{
    height:100%;
    padding: 0 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--azul);
    font-weight: bold;
}
nav li a:hover{
    background-color: #f0f0f0;
    color: var(--azul);
}

nav#menu li:first-child{
    width: auto;
    margin-right: auto;
    display: flex;
}

.sidebar{
    position: fixed;
    top:0;
    right:0;
    height:100vh;
    width:250px;
    z-index: 999;    
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.7);
    box-shadow: -10px 0 10px rgba(255,255,255,0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li
{
    width:100%;
}

.sidebar a{
    width:100%;
}

.menu-button{
   display: none;  
}

svg path {
  fill: var(--azul); 
}

@media(max-width: 1240px){
   .hideOn1K{
      display: none!important;
   }
}

@media(max-width: 800px){
   .hideOnMobile{
      display: none!important;
   }
   .onlyOnMobile{
      display: flex!important;
      flex-wrap: wrap;
      justify-content: center;
   }
   #address{
      display: none!important;
   }
   #icons-mobile{
      gap: 6px;
      width: 100%;
      padding: 6px 10px;
   }
   #icons-mobile .icon{
      width: 23%;
      min-width: 72px;
      padding: 4px;
      line-height: 1.15;
      font-size: 0.62em;
   }
   #icons-mobile .icon img{
      width: 28px!important;
      height: 28px!important;
   }
   .bloque.textonormal,
   .bloque.texto12padding,
   p.textonormal,
   p.texto12padding,
   .intro{
      width: 92%!important;
      max-width: 92%!important;
      padding-left: 0!important;
      padding-right: 0!important;
      margin-left: auto;
      margin-right: auto;
   }
   .caja{
      width: 92%;
   }
   .w20,
   .w25,
   .w33,
   .w50,
   .w66,
   .w75,
   .w80{
      width: 92%!important;
      max-width: 92%!important;
      margin-left: auto!important;
      margin-right: auto!important;
   }
   .caja .textoduo,
   .caja .textonormal,
   .caja .texto12padding,
   .caja img,
   .bloque_proceso,
   #contacto,
   #formulario,
   #mapa{
      width: 92%!important;
      max-width: 92%!important;
      margin-left: auto!important;
      margin-right: auto!important;
      padding-left: 0!important;
      padding-right: 0!important;
   }
    #pie div {width:100%}
    .menu-button{
        display: block;
    }
    .mizq {
      padding-left: 0px!important;   
    }
    .mder {
       padding-right: 0px!important;   
    }
    .fotoduo
    {
      width: 96%;
    }
    .cuadro
    {
      font-size:1em;
    }
}

@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}

.activo {background-color: var(--azul); color: #fff}
.activo a {color: #fff}