/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}*/

body {
    background-color: #17162b;
    margin-top: 70px;
}

.menu {
    background-color: #17162b;

    width: 20%;
    min-width: 250px;
    max-width: 350px;

    height: 100%;
    position: fixed;
    top: 0;
    right: -500px;
    overflow-y: auto;
    transition: 0.5s ease;
    transition-property: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    z-index: 999;



}



.navegacion::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

header {
    background-color: #17162b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
    align-items: center;
    padding-top: 10%;
    overflow: visible;
    width: 100%;
}

header img {
    width: 80px;
    height: auto;
    border-radius: 10px;

}



header h1 {
    text-align: center;
    font-size: 1.5em;
    color: #F8F8FF;
    font-weight: 500;
    font-family: 'TASA Orbiter', sans-serif;
    width: 85%;
    margin-bottom: 15px;

}

.navegacion {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 7px;

    overflow: auto;
    padding-top: 10%;
    padding-bottom: 10%;



}

.navegacion .item a {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px;
    border-radius: 10px;
    color: #F8F8FF;
    padding-left: 10%;
    padding-right: 10%;
    font-family: 'TASA Orbiter', sans-serif;
    transition: color 0.25s ease;

}

@media (max-width: 768px) {
  .navegacion .item a {
    font-size: 1.45em !important;
  }
}

.navegacion .item a i.dropdown {
    transition: 0.3s ease;
}

.navegacion .item .sub-lista {
    background-color: #151427;

    display: none;
    width: 100%;
    border-radius: 20px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;



}

.navegacion .item .sub-item {
    padding-left: 20%;
}



.menu.activo {
    right: 0;
}

/*.menu.activo body {
    transform: translateX(20%);
}*/

.rotado {
    transform: rotate(180deg);
}


.cabecera {
    position: fixed;
    width: 100%;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    display: flex;
    gap: 20px;
    align-items: center;
    top: 0;
    left: 0;
    justify-content: space-between;
    background-color: #17162b;
    z-index: 998;
}

.cabecera a img {
    border-radius: 4px;
    padding-top: 3px;
    padding-bottom: 3px;
    height: 100%;
    width: auto;
    cursor: pointer;


}

.cabecera a {

    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;

}

.hamburguesa {

    cursor: pointer;
    font-size: 1.8em;
    margin: auto;
    transition: opacity 0.5s ease, transform 0.2s ease, color 0.2s ease;
    color: #F0F8FF;
}

.hamburguesa:hover {

    color: #d3ddfa;
}

.boton-atras {
    cursor: pointer;
    font-size: 1.6em;
    margin: auto;
    color: #F0F8FF;
    transition: opacity 0.5s ease, transform 0.2s ease, color 0.2s ease;
}

.boton-atras:hover {

    color: #d3ddfa;
}

header .boton-cerrar {

    position: absolute;
    top: 2.3%;
    left: -50px;
    font-size: 1.7em;
    cursor: pointer;
    color: #F0F8FF;
    transition: opacity 0.11s ease-in 0.05s, color 0.2s ease;

}

header .boton-cerrar:hover {
    color: #d3ddfa;
}

header .boton-atrasmenu {

    position: absolute;
    top: 2.3%;
    left: -100px;
    font-size: 1.7em;
    cursor: pointer;
    color: #fff0f8;
    transition: opacity 0.11s ease-in 0.05s, color 0.2s ease;
    z-index: 999;
}

header .boton-atrasmenu:hover {
    color: #d3ddfa;
}








/*.hamburguesa.activa {
    opacity: 0;

}

.botonera.escondida {
    opacity: 0;
}*/


.boton-cerrar.desaparece {
    opacity: 0;
    transition: opacity 0.11s ease-out 0.05s;
}

.boton-atrasmenu.desaparece {
    opacity: 0;
    transition: opacity 0.11s ease-out 0.01s;
}



.botonera {
    display: flex;
    padding-right: 20px;
    gap: 20px;
    transition: opacity 0.5s ease;

}

.item .sub-lista .dato-contacto {
    width: auto;
    font-family: 'TASA Orbiter', sans-serif;
    font-size: 0.9em;
    color: #D1D1D1;
    text-align: left;
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    padding-left: 20%;

}

.dato-contacto.mail {
    cursor: pointer;
}

.dato-contacto.tel {
    cursor: default;
}

a.dato-contacto.mail:hover {
    color: #8ECCE6 !important;
    text-decoration: underline;
}

a.dato-contacto.tel:hover {
    color: #D1D1D1 !important;
}

.pie-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    width: 100%;
    height: 100%;

}

.item a.boton-sub {
    cursor: pointer;
    border-radius: 20px;
    transition: border-radius 0.45s ease 0.23s;
}




.navegacion .item a:hover {
    color: #eecc6f;
    transform: scale(1.02);
    background-color: #151427;
    border-radius: 20px;
}

.item .boton-sub:hover {
    background-color: #151427;
    border-radius: 20px;
}

.item a.boton-sub.seleccionado {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #151427;
    transition: border-radius 0.5s ease;
}

.item a.boton-sub.activo {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #151427;
    transition: border-radius 0.5s ease;
}

/*.item a.boton-sub.activo,
.item a.boton-sub.seleccionado.activo{
    background-color: red;
}*/

.item a.boton-sub.instant {
    transition: none;
}

hr {
    color: #D1D1D1;
    width: 80%;
    border-bottom: 1px;


}

.navegacion .item .sub-lista .sub-item {
    color: #cfcfcf;
}

.navegacion .item .sub-lista .sub-item:hover {
    color: #eecc6f;
}

.item a.boton-sub:hover {
    color: #eecc6f;


}


#main-header {
    height: 0 !important;           
    min-height: 0 !important;          
    padding: 0 !important;             
}

.navegacion .item a.activo{
    color: #eecc6f; 
    font-weight: bold;
}

.navegacion .item .nuncaActivo.activo{
    color: #F8F8FF;
    font-weight: normal;
}


.navegacion .item .sub-lista .sub-item.activo {
    color:#eecc6f !important;
}

@media (max-width: 420px) {
    header .boton-atrasmenu {
        display: none;
    }
    
    body {
        margin-top: -10px;
        padding-top: 0px;
    }
    
    header .boton-cerrar {
        font-size: 2em !important;
    }
    
    cabecera .hamburguesa {
        font-size: 2em !important;
    }
    
    header img {
    width: 60px;
    height: auto;
    border-radius: 10px;

    }
    
    .cabecera{
        margin-bottom: 0px;
    }
    
    
}

.capa-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    z-index: 500;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.capa-fondo.activa {

   
   opacity: 1;
   transition: opacity 0.3s ease;
   pointer-events: auto;
  
}




 
 



  



