*{
    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{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .nav{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.473);
    padding: 10px;
    border-radius: 10px;
}

header .nav a{
    text-decoration: none;
    font-weight: bold;
    color: var(--text-color);
}

header .img-header img{
    width: 100%;
    max-width: 600px;
}

.img-header{
    position: relative;
    display: none;
}

.img-header::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0), rgb(0, 0, 0), rgba(0, 0, 0, 0.699), rgba(0, 0, 0, 0.623),rgba(0, 0, 0, 0));
    position: absolute;
    bottom: 0px;
    left: 0px;
}


main{
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title{
    position: absolute;
    text-align: center;
    width: 100%;
    top: 100px;
    font-size: 13px;
}















.conainter-cards{
    position: absolute;
    padding-bottom: 100px;
    top: -50px;
    width: 100%;
    max-width: 530px;
    flex-wrap: wrap;
    margin: auto;
    padding-top: 200px;
    display: flex;
    gap: 10px;
    justify-content: center;
}




.product{
    width: 170px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgb(21, 22, 24);
    position: relative;
}

.esgot{
    width: 100px;
    height: 20px;
    background-color:darkgoldenrod;
    color: white;
    position: absolute;
    left: 0px;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    top: 20px;
}

.button-esgotado{
    width: 90%;
    text-align: center;
    background-color: rgb(0, 183, 255);
    border-radius: 10px;
    font-size: 13px;
    padding: 3px;
    margin-top: 10px;
}
.button-esgotado:hover{
    background-color: rgb(24, 119, 156);

}
.button-esgotado a{
    text-decoration: none;
    color: white;
}

.product-img img{
    width: 150px;
    margin-top: 10px;
}


.product-price{
    font-size: 14px;
    color: rgb(29, 219, 29);
}


.product-button{
    text-align: center;
    font-size: 13px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    background-color: rgb(0, 183, 255);
    color: white;
    cursor: pointer;
    border: none;
    transition: all 0.4s;
}

.product-button:hover{
    background-color: rgb(21, 113, 150);
}



.product .button{
    position: relative;
    z-index: 100;
    text-align: center;
    bottom: 20px;
    margin-top: 40px;
}

.product .button a{
    text-decoration: none;
    color: white;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    background-color: rgb(0, 183, 255);
}

.product .button a:hover{
    background-color: rgb(21, 73, 94);
}







.empty{
    font-size: 13px;
}











.hidden{
    opacity: 0;
}

.show{
    opacity: 1;
}







.confirm-remove{
    background-color: green;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}



.carrinho{
    position: absolute;
    right: 20px;
    z-index: 100;
    top: 20px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.507);
    padding: 10px;
    border-radius: 10px;
}

.carrinho a{
    color: white;
}






.desc{
    color: rgb(143, 143, 143);
    font-size: 13px;
    padding: 20px;
    text-align: center;
    min-width: 100%;
    max-width: 600px;
}





@media(max-width: 500px){
    .img-header{
        display: block;
    }

    .title{
        top: -200px;
    }

    .conainter-cards{
        padding-top: 0px;
        top: -110px;
    }
} 