.contenedor-logo-menu{
    position: fixed;
    height: 5.5vw;
    width: 100%;
    border-bottom: solid 0.2vw #B6A79E;
    z-index: 999;
    background-color: #090909;
}
.logo{
    position: absolute;
    top: 0.3vw;
    left: 5vw;
    width: 4.5%;
}
.logo_ig{
    position: relative;
    top: -0.9vw;
    right: 0vw;
    width: 3vw;
    transition: transform .2s;
}
.menu {
    position: absolute; 
    top: 1.7vw;
    right: 8vw;
    justify-content: space-between;
    width: 50vw;
    z-index: 1;
}
.boton-menu {
    font: 400 1.1vw 'crimson', sans-serif;
    text-decoration: none;
    color: var(--color-dorado);
    transition: transform .2s;
    cursor: pointer; 
}
.boton-menu-resaltado {
    font: 700 1.1vw 'crimson', sans-serif;
    text-decoration: none;
    color: var(--color-dorado);
    transition: transform .2s;
    cursor: pointer; 
}

@media only screen and (max-width: 768px) {

    .contenedor-logo-menu{
        position: fixed;
        height: 20vw;
        width: 100%;
        border-bottom: solid 0.2vw #B6A79E;
        z-index: 999;
    }
    .logo{
        position: absolute;
        top: 1vw;
        left: 1vw;
        width: 18vw;
    }
    .logo_ig{
        position: relative;
        top: 0vw;
        left: 0vw;
        width: 10vw;
    }
    .boton-hamburguesa{
        position: relative;
        top: 0vw;
        right: 0vw;
        height: 15vw;
        width: 15vw;
    }
    .hamburguesa{
        color: var(--color-dorado)!important;
        font: 600 10vw 'Montserrat', sans-serif;
    }
    .menu {
        position: absolute; 
        top: 20vw;
        left: 0vw;
        width: 100%;
        background-color: var(--color-primary);
        text-align: center;
        border: 0.1vw solid var(--color-dorado);
    }
    .boton-menu {
        font: 400 5vw 'Crimson', sans-serif;
        text-decoration: none;
        color: var(--color-tiza);
        width: 31%;
        margin: 0 auto;
        margin-top: 5vw;
        padding-bottom: 5vw;
        border-bottom: 0.1vw solid var(--color-dorado);
    }
    .boton-menu:last-of-type {
        border-bottom: none;
    }
    .boton-menu-resaltado {
        font: 600 5vw 'Montserrat', sans-serif;
        text-decoration: none;
        color: var(--color-tiza);
        width: 31%;
        margin: 0 auto;
        margin-top: 5vw;
        padding-bottom: 5vw;
        border-bottom: 0.1vw solid var(--color-dorado);
    }

}