*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}


:root{
    --primary-color: rgb(0, 0, 0);
    --secondary-color: rgb(5, 5, 5);
    --card-color: rgb(29, 29, 29);
    --text-color: rgb(255, 255, 255);
}

body{
    background-color: var(--primary-color);
    color: var(--text-color);
}

header{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: var(--primary-color);
}

header .main-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}

header .main-header .nav a, header .main-header .cart a{
    color: var(--text-color);
    text-decoration: none;
}

header .main-header .nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: bold;
}


header .main-header .menu{
    display: none;
}



header .main-header .cart{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}


header .main-header .logo {
    position: absolute;
    left: 50%; 
    transform: translateX(-50%); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-tx {
    line-height: 0.16;
    text-align: center;
    font-size: 30px;
}

.logo-tx h1{
    font-weight: normal;
    font-family: serif;
}

.s{
    padding-right: 14px;
}


.hidden{
    opacity: 0;
}

.show{
    opacity: 1;
}




main{
    background-color: var(--secondary-color);
    min-height: calc(100vh - 100px);
}

main .titulo-colecoes{
    font-size: 10px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 50px;
}




.container-menu{
    height: 100vh;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    z-index: 110;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.container-menu .nav-menu{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    position: relative;
    align-items: center;
}

.container-menu .nav-menu a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.logo-menu{
    position: absolute;
    top: -105px;
}

.x-menu{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
}


.close{
    left: -100%;
}

.open{
    left: 0;
}





.container-colecao{
    width: 100%;
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 100px;
}

.colecao{
    width: 100%;
    height: 400px;
    background-color: rgb(0, 0, 0);
    display: flex;
    position: relative;
    overflow: hidden;
}

.triangulo{
    width: 40%; /* Largura do triângulo */
    height: 100%; /* Altura do triângulo */
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(255, 255, 255);
    position: relative;
    padding-left: 20px;
}

.imagem{
    top: 0px;
    right: 0px;
    position: absolute;
    width: 80%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 30% 100%); 
}

.imagem::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0.644), rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.329), rgba(0, 0, 0, 0));
}

.imagem img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}


.titulo-colecao{
    width: 150px;
    font-size: 14px;
    padding-top: 90px;
}

.button{
    margin-top: 14px;
}


.button a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 9px;
    border-radius: 3px;
    font-size: 20px;
    background-color: rgb(22, 130, 192);
    transition: all 0.4s;
}

.button a:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(22, 73, 102);
}




@media(max-width: 670px) {
    
    header .main-header .nav{
        display: none;
    }

    header .main-header .menu{
        display: block;
        font-size: 20px;
    }
    



}

@media(max-width: 680px){
    .colecao{
        height: 250px;
    }
    .imagem img{
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: center;
    }
    .titulo-colecao{
        width: 50px;
        font-size: 11px;
    }
    .triangulo{
        padding-left: 10px;
    }

    .button a{
        font-size: 14px;
    }
}


@media(max-width: 380px){
    
}
