main{
	padding-top: 84px;
}	

.botoes{
	width: 100%;
	background-color: var(--bg);
	padding: 60px 0;
}
.botoes .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.botoes img{
	margin-right: 30px;
}
.botoes .carrinho-btn.ativo{
	color: var(--text-color4);
	cursor: pointer;
}
.botoes .carrinho-btn{
	color: var(--text-color6);
	font-size: 34px;
	font-weight: 600;
	background-color: unset;
	border: none;
	display: flex;
	align-items: center;
	cursor: text;
}	
.botoes .carrinho-btn:disabled,
.botoes .carrinho-btn.desativo{
	cursor: text;
	color: #7c7c7c;
}


.carrinho-vazio{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.carrinho-vazio h2{
	text-align: center;
}
.carrinho-vazio .produtoBtn{
	color: #fff;
	background-color: var(--cor-2);
	border: 1px solid var(--cor-2);
	border-radius: 5px;
	max-width: 250px;
	width: 100%;
	padding: 10px 0;
	text-align: center;
	transition: ease .3s;
}
.carrinho-vazio .produtoBtn:hover{
	background-color: var(--primaria);
	border: 1px solid var(--primaria);
	transition: ease .3s;
}

#orcamento{
	display: flex;
	background-color: var(--bg);
	padding-bottom: 100px;
}
#orcamento .container{
	display: flex;
	flex-direction: column;
	padding-top: 100px;
}
.carrinho{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.carrinho .carrinho-div{
	width: 100%;
	border: 1px solid #eee;
	border-radius: 5px;
}
.carrinho-box{
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 25px;
	border-top: 1px solid #eee;
	gap: 30px 0;
}
.carrinho-box:nth-child(1){
	border-top: none;
}
.box-img{
	width: 106px;
	margin-right: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.box-nome{
	width: 300px;
	margin-right: auto;
	gap: 10px;
	display: flex;
	flex-direction: column;
}
.box-nome h4{
	color: #42475E;
}
.box-nome p{
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	color: #42475E;
}
.box-nome p span{
	font-size: 14px;
	color: #42475E;
}
.box-input{
	width: 150px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.box-input .input{
	width: 100%;
	display: flex;
	border: 1px solid #eee;
	border-radius: 5px;
	background-color: #fafafa;
}
.box-input p{
	color: var(--cor-6);
}
.box-input .input input{
	width: 100%;
	border: none;
	background-color: unset;
	text-align: center;
	font-size: 28px;
	color: var(--text-color4);
}
.box-input .input .remover,
.box-input .input .adicionar{
	background-color: unset;
	padding: 10px;
	border: none;
	font-size: 30px;
	color: var(--text-color4);
	transition: ease .3s;
}
.box-input .input .remover:hover,
.box-input .input .adicionar:hover{
	color: var(--text-color);
	transition: ease .3s;
}
.remover-produto{
	color: var(--cor-1);
	font-weight: 600;
	background-color: unset;
	border: none;
	margin: auto;
}
.carrinho-box ~ .continuar{
	opacity: 1;
}
.continuar{
	max-width: 567px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	opacity: 1;
	padding-top: 40px;
	margin-left: auto;
}
.continuar .produtosBtn2{
	max-width: 276px;
	width: 100%;
	height: 67px;
    border: 1px solid #eee;
    border-radius: 5px;
    color: var(--primaria);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
}
.continuar .continuarBtn{
	max-width: 276px;
	width: 100%;
	height: 67px;
    border: 1px solid var(--cor-2);
    border-radius: 5px;
    color: var(--cor-2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
}







/* 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: 1270px){
    
}

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

}

/* MOBILE */
@media screen and (max-width: 1000px){
    
}

@media screen and (max-width: 800px){
    .botoes .carrinho-btn{
    	font-size: 28px;
    }
}

@media screen and (max-width: 640px){
	.botoes .container{
		flex-direction: column;
	}
    .carrinho-box{
    	flex-wrap: wrap;
    	gap: 30px 0;
    	justify-content: center;
    }
    .box-nome,
    .box-input{
    	margin-right: 0;
    	align-items: center;
    }
    .carrinho-box ~ .continuar a{
    	width: 100%;
    }
    .continuar a{
    	max-width: 100%!important;
    }
}

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

}

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

}