*{
    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: 70px;
    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 .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;
}


.menu a{
    color: var(--text-color);
    font-size: 16px;
    padding: 10px;
}

.cart{
    font-size: 16px;
    padding: 10px;
}





.container-main{
    margin: auto;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    margin-bottom: 100px;
    display: flex;
}



.img-main img{
    border-radius: 5px;
    width: 350px;
    height: 400px;
    object-fit: cover;
    object-position: center;
}


.container-img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items:end;
    flex-direction: column;
}

.imgs-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    gap: 10px;
    padding-top: 10px;
}

.img{
    object-fit: cover;
    object-position: center;
    height: 70px;
    width: 70px;
    border-radius: 5px;
    transition: all 0.4s;
    cursor: pointer;
}

.img:hover{
    transform: scale(1.1);
}



.title{
    font-size: 30px;
}

.info{
    background-color: rgb(17, 17, 17);
    font-size: 15px;
}

.info h4{
    color: rgb(143, 215, 221);
}

.info p{
    color: rgb(143, 163, 165);
}

.preco h4{
    color: white;
}

.container-infos{
    width: 50%;
}

.box{
    padding-top: 70px;
    padding-left: 20px;
    width: 300px;
}

.info{
    padding: 20px 0px;
    border-radius: 5px;
    padding-left: 10px;
    margin-top: 10px; 
}

.preco{
    font-size: 30px;
    padding-top: 10px;
}

.preco p{
    color: rgb(39, 204, 39);
}

.product-button{
    border: none;
    width: 95%;
    background-color: rgb(0, 183, 255);
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 15px;
}
.product-button:hover{
    background-color: rgb(16, 134, 180);
}

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


.botao a{
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    padding: 20px;
}

.img-main{
    position: relative;
}

.esgot{
    width: 150px;
    height: 30px;
    background-color: darkorange;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 0px;
    border-radius: 0px 20px 20px 0px;
}

.form-contato{
    display: flex;
    flex-direction: column;
}

.form-contato h4{
    color: rgb(17, 147, 207);
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid rgb(17, 147, 207);
    width: 95%;
}

.form-contato p{
    background-color: rgb(17, 17, 17);
    width: 95%;
    padding-top: 5px;
    padding-bottom: 5px;
    color: rgb(90, 134, 155);
}

.form-contato input{
    width: 95%;
    font-size: 14px;
    padding-left: 10px;
    margin-top: 20px;
    height: 40px;
    border: none;
    outline: none;
    background-color: rgb(22, 22, 22);
    color: rgb(182, 182, 182);
}


.form-contato button{
    background-color: rgb(17, 147, 207);
}

.avisos{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

.aviso{
    height: 30px;
    padding-left: 10px;
    width: 95%;
    background-color: rgb(34, 22, 8);
    border-left: 2px solid darkorange;
    display: flex;
    align-items: center;
    color: rgb(218, 181, 136);
}




@media(max-width: 730px) {
    .container-main{
        flex-direction: column;
    }
    .container-img {
        width: 100%;
        padding-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: auto;
    }
    .box{
        padding-top: 30px;
        padding-left: 20px;
        width: 100%;
    }
    .info{
        padding: 20px 0px;
        border-radius: 5px;
        padding-left: 0px;
        margin-top: 10px; 
        margin-right: 20px;
    }
    .container-infos{
        width: 100%;
    }
}



@media(max-width: 370px){
    .img-main img{
        border-radius: 5px;
        width: 270px;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
}
