.banner{
    width: 100%;
    min-height: 290px;
    padding-top: 115px;
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
    background-image: url(../imagens/produtos/bg1.png), url(../imagens/produtos/bg2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, left top;
    background-size: auto;
    justify-content: center;
}	
.banner .container{
    align-items: center;
    justify-content: space-between;
}

.carrinho-conteudo{
    width: 100%;
    padding: 50px 0;
}
.carrinho-conteudo .container{
    gap: 30px;
}
.carrinho-conteudo .titulo{
    width: 100%;
    border-bottom: 1px solid gray;
    padding: 0 50px 10px 100px;
    gap: 50px;
}
.carrinho-conteudo .titulo p:nth-child(1){
    width: 159px;
}
.carrinho-conteudo .titulo p:nth-child(2){
    width: fit-content;
}
.carrinho-conteudo .titulo p:nth-child(3){
    margin-left: auto;
}
.carrinho-conteudo .box-div{
    width: 100%;
    gap: 20px;
}
.carrinho-conteudo .box-div .box{
    width: 100%;
    gap: 50px;
    align-items: center;
}
.carrinho-conteudo .box-div .box .remover button i{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #00000033;
    border-radius: 50%;
}
.carrinho-conteudo .box-div .box .img{
    max-width: 159px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border: 1px solid #00000033;
    border-radius: 5px;
    margin-left: 15px;
}
.carrinho-conteudo .box-div .box .img img{
    max-width: 100%;
    max-height: 100%;
}
.carrinho-conteudo .box-div .box .info{
    gap: 10px;
    gap: 5px;
}
.carrinho-conteudo .box-div .box .qtd{
    width: 200px;
    margin-left: auto;
    gap: 5px;
}
.carrinho-conteudo .box-div .box .qtd label{
    color: gray;
}
.carrinho-conteudo .box-div .box .qtd .controle{
    align-items: center;
}
.carrinho-conteudo .box-div .box .qtd .controle button{
    width: 47px;
    height: 47px;
    border: 1px solid #00000033;
}
.carrinho-conteudo .box-div .box .qtd .controle input{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 47px;
    height: 47px;
    border-top: 1px solid #00000033;
    border-bottom: 1px solid #00000033;
}
.carrinho-conteudo .box-div .box .qtd .controle input[type="number"]::-webkit-inner-spin-button,
.carrinho-conteudo .box-div .box .qtd .controle input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.carrinho-conteudo .box-div .box .qtd .controle input[type="number"] {
    -moz-appearance: textfield;
}
.carrinho-conteudo .box-div .box .qtd .controle span{
    margin-left: 10px;
}
.carrinho-conteudo .vazio.ativo{
    display: flex;
    flex-direction: column;
}
.carrinho-conteudo .vazio{
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.carrinho-conteudo .vazio .btn{
    background-color: var(--cor-1);
    color: #fff;
}


.carrinho-form{
    width: 100%;
    padding:  0 0 50px;
}
.carrinho-form .container{
    gap: 30px;
}
.carrinho-form .form{
    width: 100%;
    gap: 30px;
}
.carrinho-form .form .inputs{
    width: 100%;
    gap: 10px;
}
.carrinho-form .form .inputs input{
    width: 100%;
    height: 49px;
    padding: 0 20px;
    border: 1px solid #00000033;
    border-radius: 5px;
    color: gray;
}
.carrinho-form .form .inputs input:nth-child(2),
.carrinho-form .form .inputs input:nth-child(3){
    width: calc(100% - 50% - 5px);
}
.carrinho-form .form .inputs input::placeholder{
    color: gray;
}
.carrinho-form .form .botoes{
    width: 100%;
    gap: 20px;
}
.carrinho-form .form .botoes .btn{
    width: 100%;
    color: #fff;
    background-color: var(--cor-1);
    justify-content: center;
    align-items: center;
    text-align: center;
}


.modal-email{
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal-email.opened{
    display: flex;
}
.modal-email .bg{
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: #00000060;
}
.modal-email .content{
    max-width: 500px;
    width: 100%;
    height: fit-content;
    background-color: #fff;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    align-items: center;
    text-align: center;
    gap: 5px;
}
.modal-email .content p{
    font-size: 18px;
}
.modal-email .content a{
    align-items: center;
    justify-content: center;
    min-width: 100px;
    margin-top: 15px;
    background-color: var(--cor-1);
    color: #fff;
}

		

/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1440px){

}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){

}

@media screen and (max-width: 1100px){

}

/* MOBILE */
@media screen and (max-width: 1000px){
    .banner .container{
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 800px){
    .carrinho-conteudo .titulo{
        display: none;
    }
    .carrinho-conteudo .box-div{
        gap: 50px;
    }
    .carrinho-conteudo .box-div .box{
        gap: 30px;
    }
    .carrinho-conteudo .box-div .box .qtd{
        margin-left: unset;
    }
}

@media screen and (max-width: 600px){
    .carrinho-conteudo .box-div .box{
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .carrinho-conteudo .box-div .box .img{
        max-width: 20vw;
        margin-left: 0;
    }
    .carrinho-conteudo .box-div .box .info{
        max-width: calc(100% - 55px - 20vw - 30px);
        width: 100%;
    }

    .carrinho-form .form .inputs input:nth-child(2), 
    .carrinho-form .form .inputs input:nth-child(3){
        width: 100%;
    }
    .carrinho-form .form .botoes{
        flex-direction: column;
    }
}

@media screen and (max-width: 480px){

}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}