* {
    box-sizing:border-box;
    padding:0;
    margin:0;
}

header {
    width:100vw;
    height:650px;
    aspect-ratio:16/9;
    position:relative;

    #versão1 {

        a {
            width:100%;
            height:40px;
            position:fixed;
            z-index:4;
            font-size:1.5rem;

            #logo {
                display:flex;
                justify-content:center;
                align-items:center;
                width:100%;
                height:40px;
                position:fixed;
                z-index:4;
                font-size:1.5rem;
                text-align:center;
            }
        }

        #img_header {
            height:650px;
            width:100%;
            position:absolute;
            margin-bottom:0;
        }
    }

    #versão2 {
        display:none;
        justify-content:space-between;
        height:40px;
        z-index:7;

        #logo_ {
            display:flex;
            justify-content:center;
            align-items:center;
            width:40%;
            height:100%;
            position:static;
            left:0%;
            transform:translateX(0%);
            z-index:4;
            cursor:pointer;
            text-decoration:none;

            #logo {
                color:#000000;
            }
        }

        #container_categoria {
            display:flex;
            justify-content:end;
            align-items:center;
            column-gap:15%;
            width:60%;
            margin-right:7%;

            #_brinco,#_cordão,#_relógio, #_óculos {
                cursor:pointer;
                font-weight:bold;
            }
        }
    }
}


@media (min-width:700px) {
    header {
        width:100vw;
        height:60px;
        position:fixed;
        z-index:5;
        background-color:#ffffff;

        #versão1 {
            display:none;
        }

        #versão2 {
            display:flex;
        }
    }
}