header {
    position: fixed;
    z-index: 10000;
    width: 100%;
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--bg-border);
    padding: 12px 50px;
    display: flex;
    align-items: center;
}
header .logo h1 {
    font-family: var(--texto-logo);
    font-size: 30px;
    font-weight: 400;
    color: var(--texto-white);
}
header .logo span {
    letter-spacing: -1px;
}
header .logo small {
    font-size: 20px;
    margin-left: 4px;
}
header .menu {
    display: flex;
    flex-grow: 1;
    justify-content: end;
}
header .menu-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
header .menu-list li {
  list-style: none;
}
header .menu-list a {
    font-family: var(--texto-comum);
    font-size: 14px;
    letter-spacing: 1.4px;
    text-decoration: none;
    color: var(--texto-muted-foreground);
    transition: color 0.3s ease;
}
header .menu-list a:hover {
    color: var(--red-primary);
}
header .insta a {
    display: flex;
    gap: 7px;
}
header .insta-item {
    display: flex;
}
header .insta-item svg {
    width: 22px;
    height: 22px;
}
header .insta-user {
    display: none;
}
header #navbar {
    display: none;
}
header #navbar .bar {
    display: block;
    width: 23px;
    height: 3px;
    border-radius: 3px;
    background: var(--texto-foreground);
    margin: 5px auto;
    transition: all 0.3s;
}