* {
    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;
}





/* Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px;
    gap: 6px;
    margin-bottom: 70px;
    overflow-x: auto;
    /* adiciona scroll horizontal */
    max-width: 100%;
    /* não deixa passar da tela */
    scrollbar-width: thin;
    /* Firefox */
}

.pagination::-webkit-scrollbar {
    height: 6px;
    /* scroll fininho */
}

/* Links normais */
.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ddd;
}

/* Hover */
.pagination .page-link:hover {
    background: rgb(140, 203, 228);
    color: white;
    border-color: rgb(140, 203, 228);
}

/* Página ativa */
.pagination .active .page-link {
    background: rgb(0, 183, 255);
    color: white;
    border-color: rgb(0, 183, 255);
    font-weight: bold;
}

/* Desabilitado */
.pagination .disabled .page-link {
    background: #eaeaea;
    color: #aaa;
    pointer-events: none;
    border-color: #ddd;
}


.text-muted {
    text-align: center;
    color: rgb(156, 156, 156);
    font-size: 14px;
}









.hidden {
    opacity: 0;
}

.show {
    opacity: 1;
}




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

main .title {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

main .container-main {
    min-height: 200px;
    width: 100%;
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.collection {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.collection::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;
}


.collection:hover {
    transform: scale(1.02);
}


.collection .img-collection img {
    width: 300px;
}

.collection .title-collection {
    text-align: center;
    position: relative;
    z-index: 100;
    bottom: 60px;
}


.collection .button {
    position: relative;
    z-index: 100;
    text-align: center;
    bottom: 20px;
}

.collection .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);
}

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



.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-main-loja {
    min-height: calc(100dvh - 100px);
}


.title-loja {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-size: 10px;
}




.conainter-cards {
    width: 100%;
    max-width: 530px;
    flex-wrap: wrap;
    margin: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}




.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, 73, 94);
}


.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);
}



















.container-tipos {
    width: 93%;
    max-width: 800px;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.container-tipos a {
    text-decoration: none;
    color: rgb(119, 119, 119);
    transition: all 0.4s;
    padding: 3px;
    border-bottom: 1px solid rgb(119, 119, 119);
}

.container-tipos a:hover {
    color: white;
    background-color: rgb(65, 65, 65);
}

.tipo-titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 40px;
}

.tipo-titulo h4 {
    border-bottom: 1px solid white;
    width: 90px;
    text-align: center;
}




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









.contatos-main-pag h4 {
    text-align: center;
    padding-top: 10px;
}

.contatos-main-pag .btn {
    margin: auto;
    width: 150px;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

.contatos-main-pag .btn a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.contatos-main-pag .whatsapp {
    background-color: rgb(255, 255, 255);
}

.contatos-main-pag .instagram {
    background-color: rgb(255, 255, 255);
}





.sobre-main-pag {
    text-align: center;
    padding-top: 30px;
}

.sobre-main-pag p {
    width: 80%;
    max-width: 400px;
    font-size: 14px;
    margin: auto;
    padding-top: 50px;
    color: rgb(172, 172, 172);
}








@media(max-width: 670px) {

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

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



    main .title {
        height: 130px;
        padding-top: 50px;
    }





}



@media(max-width: 380px) {
    .collection .img-collection img {
        width: 250px;
    }
}