#header{
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding-left: 2vw;
    padding-right: 2vw;
    background-color: var(--light-card);
    transition: all 0.2s ease;
}

#logo, #botones-iz, #botones-de{
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

#header-logo{
    display: flex;
    gap: 20px;
}

#botones-iz, #botones-de{
    display: none;
}

#logo {
    background-image: url('/img/Logo_Mini.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

#menu{
    width: 100px;
    height: 100%;
    background-image: url('/img/menu.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

#header.º {
  background-color: var(--light-card);
}

@media screen and (min-width: 1082px) {
    #header a{
        transition: all 0.2s ease;
    }
    
    #header a:hover{
        font-weight: 900;
    }

}

@media screen and (min-width: 1023px) {
    #logo{
        width: 150px;
        height: 150px;
    }

    #menu {
        width: 150px;
        height: 150px;
    }

    #header{
        height: 150px;
    }

}

@media screen and (min-width: 1082px) {
    #header{
        height: 70px;

    }

    #logo, #menu {
        width: 70px;
        height: 70px;
    }
    
    #boton-menu{
        display: none;
    }
    
    #botones-de {
        gap: 200px;
        color: var(--secondary-color);
        padding-left: 4vw;
        font-size: 1.5rem;
    }

    #botones-iz, #botones-de{
        display: flex;
        width: auto;
        box-sizing: border-box;
        padding: 0 1vw 0 1vw;
        font-size: 1.5rem;
        font-weight: 700;
        gap: 40px;
    }

    #botones-iz {
        color: var(--secondary-color);
    }

    #botones-de {
        gap: 20px;
        color: var(--secondary-color);
        padding-left: 4vw;
        font-size: 1.5rem;
    }
}