/************************************* HEADER **************************************/
.header{
    padding: 0.5rem;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: var(--header-height);
    background-color: var(--negro-alpha);
}

.header > .container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo .small-logo {
    padding-top: 0.5rem;
}

.header .small-logo{
    fill: var(--blanco);
    width: 2.5rem;
}

@media screen and (min-width: 768px) {
    
}

@media screen and (min-width: 1024px) {
    .header{
        position: sticky;
        top: 0;
    }
}