.header {
    position: sticky;
    top: 0;
    display: flex;

    justify-content: center;
    width: 100%;

    background-color: white;
    border-bottom: 1px solid var(--border-gray);

    z-index: 1000;
}

.header__wrapper {
    display: flex;
    align-items: center;

    width: 100%;
    min-width: fit-content;
    gap: 3rem;

    padding: .5rem;
}

.header__wrapper > .btn-special {
    margin-left: auto;
}

.header__logo {
    min-width: 6rem;
    max-width: 6rem;
}

.header__links {
    display: flex;

    gap: 1.25rem;
}

.header__links > a {
    min-width: max-content;
    font-weight: 600;

    transition-duration: var(--anim-dur);
}

.header__links > a:active, .header__links > a.hidden:active {
    opacity: 30%;
}

.header__links > a.hidden {
    opacity: 50%;
}

.header__links > a.hidden:hover {
    opacity: 100%;
}

.header__socials {
    display: flex;
    gap: .75rem;
    margin-left: auto;
}

.header__socials img {
    width: 1.5rem;
}

@media screen and (max-width: 836px) {
    .header__fake {
        position: sticky;
        top: -2px;
        left: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
        padding: .5rem;
        height: min-content;
        gap: 1rem;
    }
    .header__fake > .title-2 {
        font-weight: 800;
        font-size: 1.5rem;
        letter-spacing: .1rem;
        margin-top: .25rem;
    }
    .header__fake > a > img, .header__fake > button {
        width: 4rem !important;
    }
    .header__fake > button {
        text-align: right;
    }
    .header__fake > button > img {
        width: 2.5rem;
    }
    .header {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;

        background-color: rgba(0,0,0, 50%);

        justify-content: flex-end;
        padding: 0;
    }

    .header.active {
        display: flex;
    }

    .header__wrapper {
        width: min-content;
        flex-direction: column;
        align-items: flex-end;

        background-color: white;

        padding: 2rem 1rem;
        padding-bottom: 1rem;

        min-width: 70%;
        gap: .5rem;
    }

    .header__links {
        margin-top: 1rem;
        padding-top: 1rem;
        flex-direction: column;
        align-items: flex-end;
        font-size: 1.5rem;

        border-top: 1px solid var(--border-gray);
        width: 100%;
    }

    .header__socials {
        margin-top: auto;
        width: 100%;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .header__socials > a, .header__socials img {
        width: 100%;
    }
}