.menu-index{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    text-align: center;
    z-index: 4;
    padding: 0;
    box-sizing: border-box;
}

.menu-index2{
    position: relative;    
}

.menu{
    display: flex;
    margin: 0 2%;
}

.botones img{
    filter: invert(60%);
}

.botones img:hover{
    transform: scale(1.2);
    filter: invert(100%);
}

.bton-menu{
    padding: 0 5px;
}
.bton-menu img{
    width: 30px;
}


a{
    text-decoration: none;
}

.logo-unidos{
    width: 110px;
    margin-top: 10px;
}

.logo-unidos img{
    width: 100%;
    filter: brightness(100);
    transition: transform 100ms;
}

.logo-unidos img:hover{
    transform: scale(1.1);
}

/*******************************/

.menu-interno{
    position: fixed;
    top: 0;
    right: 0;
    height: 35px;
    display: flex;
    justify-content: end;
    width: fit-content;
    padding: 3px;
    background: whitesmoke;
    z-index: 3;
    
}
.menu-interno img{
    filter: invert(70%);
}

.menu-interno img:hover{
    transform: scale(1.2);
    filter: invert(40%);
}

/*********************/

.menu-nativo{
    background: none;
}


/*************************************/

@media screen and (max-width:1300px){
    .menu-index{
        position: relative;
    }
}