* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
    justify-content: center;
    justify-content: inherit;
}
.body {
    /*background: #F6F9FF;*/
    background: #f7f7f7d1;
    
   /* height: 100vh;*/
    width: 100%;

   /* display: flex;*/
    justify-content: center;
    align-items: center;

    color: #434343;
    line-height: 1.5;  }
body {
    line-height: 1.5;
}
#carrinho {
    display: none;
    position: fixed;
    top: 20%;
    right: 0;
    background-color: #f1f1f1;
    width: 500px;
    padding: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}
#carrinho h2{
    font-size: 21px;
    font-family: 'Lato-Lighter';
}
#carrinho .fechar {
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #f1f1f1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
#carrinho .fechar:hover {
    transform: scale(1.2);
}
#carrinho .fechar::before {
    content: "X";
    font-size: 18px;
}
#carrinho .fechar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #959595;
    background-color: #d3d3d35c;
}
#itens-carrinho {
    list-style-type: none;
    padding: 0;
    list-style-type: none;
    /* padding: 0; */
    /* border-width: 0.1px; */
    /* border-style: solid; */
    border-top: black;
    border-top: solid;
    border-top-width: 1px;
}
#itens-carrinho li {
    margin-bottom: 10px;
}
#itens-carrinho tr:last-child {
    border-top: 1px solid #ccc;
}
.produto {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #f1f1f1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.produto img {
    max-width: 100%;
    height: auto;
}
.produto h3 {
    margin-top: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}
.produto h4 {
    margin-bottom: 5px;
    font-family: 'Poiret One', cursive;
}
.produto button {
    display: block;
    margin: 10px auto 0;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(5px);
}
.imagem-produto img {
    width: 75px;
    height: 75px;
}
#carrinho {
    display: none;
    position: fixed;
    top: 20%;
    right: 0;
    background-color: #f1f1f1;
    width: 600px;
    padding: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}

#carrinho .fechar {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #f1f1f1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#carrinho .fechar:hover {
    transform: scale(1.2);
}

#carrinho .fechar::before {
    content: "X";
    font-size: 18px;
}

#carrinho .fechar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid black;
}

#itens-carrinho {
    max-height: 300px;
    overflow-y: auto;
    list-style-type: none;
    padding: 0;
}

#itens-carrinho li {
    margin-bottom: 10px;
}

#itens-carrinho tr:last-child {
    border-top: 1px solid #ccc;
}

.produto {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #f1f1f1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.produto img {
    max-width: 100%;
    height: auto;
}

.produto h3 {
    margin-top: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.produto h4 {
    margin-bottom: 5px;
    font-family: 'Poiret One', cursive;
}

.produto button {
    display: block;
    margin: 10px auto 0;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.imagem-produto img {
    width: 75px;
    height: 75px;
}

.quantidade {
    display: flex;
    align-items: center;
}

.quantidade button {
    padding: 5px;
    background-color: #9daf4c;
    color: white;
    border: none;
    /* border-radius: 50%; */
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    border-style: solid;
    /* border-color: black; */
    border-width: 1px;
    /* width: 20px; */
    padding: 0px 7px;
    border-radius: 3px;
    height: 15px;
    top: 5px;
    /* margin-top: 5px; */
    padding-bottom: 4px;
    padding-top: 0px;
    line-height: 5px;
}
.excluir-produto{
    border-style: solid;
    border-color: black;
    border-width: 1px;
    /* width: 20px; */
    padding: 0px 7px;
    border-radius: 3px;
    height: 15px;
    top: 5px;
    /* margin-top: 5px; */
    padding-bottom: 4px;
    padding-top: 0px;
    line-height: 5px;
}
#btn-calcular{
    border-style: solid;
    border-color: black;
    border-width: 1px;
    /* width: 20px; */
    padding: 0px 7px;
    border-radius: 3px;
    height: 25px;
    top: 5px;
    /* margin-top: 5px; */
    padding-bottom: 4px;
    padding-top: 0px;
    line-height: 5px;
    transition: transform 0.3s ease;
}
#btn-calcular:hover{
    transform: scale(1.2);
}
.menu {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
}

.carrinho-menu {
  /*  margin-right: 40px;*/
    position: relative;
    cursor: pointer;
}

.carrinho-menu i {
    font-size: 24px;
}

.carrinho-menu span {
    position: relative;
    top: -45px;
    right: -2px;
    background-color: #ffd835;
    background-color: #faf7eb;
    color: #fc0c0c;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 500;
    border-color:    #5f9ea054;
      border-width: 2px;
    border-style: inset;

}
.card{
    width: 290px;
    /*height: 330px;*/
    transition: all 0.3s ease-out;
    margin-right: 5px;
    margin-bottom: 20px;
    margin-left: 4px;
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
}
.card a{
    color:black
}
.card a:hover{
    color:rgb(165, 148, 148)
}
.card span{
    font-family: Lato-Lighter;
		font-style: normal;
		font-weight: lighter;
}
.clo{
    font-family: Lato-Lighter;
		font-style: normal;
		font-weight: lighter;
        height: 48px;
        margin-top: 10px;
        font-size: 12px;
        flex-basis: content;
        margin-bottom: 10px;
}
.card:hover {
    transform: translateY(-5px);
    cursor: pointer;
  }
.cards a{
    display: contents;
    text-decoration: none!important;
}
main.cards {
    display: flex;
    /*padding: 32px;*/
    flex-wrap: wrap;
   
}
.card .icon{
    width: 290px;
    height: 280px;
   /* border-color: #efe9e9;
    border-color: white;
    border-width: 0.1px;
    border-style: solid;
    border-radius: 7px;*/
}

.preco {
    height: 50px;
    padding-top: 8px;
}
.preco1{
    float: left;
    padding-right: 4px;
    font-family: 'Josefin Sans';
    font-size: 11px;
    margin-top: 3px;
    letter-spacing: 1.4px;
    margin-top: 6.9px;
}

.preco2{float:left;        font-family: 'Josefin Sans';font-size: 14px;	margin-top: 3px; margin-right:1px; letter-spacing:1.5px}
.preco3{
    float:left;    font-size: 13px;font-family: emoji;    letter-spacing: .8px;	padding-left: 2px;

}

main.cards section.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    max-height: 468px;
   /* margin-left: 32px;
   width: 270px;*/
   color: #434343;
}

main.cards section.card:first-child {
  /*  margin-left: 0;*/
}

main.cards section.card .icon {
  /*  width: 64px;
    height: 64px;*/
}

main.cards section.card img {
   /* width: 100%;
    width: 255px;*/
    border-radius: 5px;
    height: 288px;
    /*padding-bottom: 5px;*/
}

main.cards section.card h3 {
    font-size: 100%;
    margin: 16px 0;
    /*height: 38px; aqui tambien saque esto para abajo no ficar muito espaçoso, 
    mas depois vou ter que colocar se nao ficar retinho*/
    font-family: 'Reem Kufi Fun';
    letter-spacing: 0.05rem;
    font-size: 13px;
    word-spacing: 5px;
    font-weight: 400;
}

main.cards section.card span {
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
 
}
main.cards section.card span p{
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
 
}
main.cards section.card button {
    padding: 0.2rem 0.3rem;
    /*text-transform: uppercase;*/
    border-radius: 5px;
    border: 0;
    cursor: pointer;
   /* font-size: 80%;*/
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px 0;
    font-size: 14px;
}

main.cards section.card.contact button {
   /* background: linear-gradient(to right, #437d50, #77e790);*/
    background-color: #22a153;
}
main.cards section.card.shop button {
   /* background: linear-gradient(to right, #437d50, #77e790);*/
    background-color: #22a153;
}
main.cards section.card.about button {
      /* background: linear-gradient(to right, #437d50, #77e790);*/
    background-color: #22a153;
}

main.cards section.card.contact {
   /* box-shadow: 20px 20px 50px -30px #DBC4FF;*/
    box-shadow: 20px 20px 50px -30px  #8d8a93;
    box-shadow: 4px 10px 13px 0px #d2d2d2b0;

   
}
main.cards section.card.shop {
    /* box-shadow: 20px 20px 50px -30px #DBC4FF;*/
    box-shadow: 20px 20px 50px -30px  #8d8a93;
}
main.cards section.card.about {
     /* box-shadow: 20px 20px 50px -30px #DBC4FF;*/
     box-shadow: 20px 20px 50px -30px  #8d8a93;
}

@media screen and (max-width: 720px) {
    main.cards {
        flex-direction: column;
        gap: 30px;
    }

    main.cards section.card {
       /* margin-left: 0;*/
        margin-bottom: 32px;
    }

    main.cards section.card:last-child {
        margin-bottom: 0;
    }

    main.cards section.card button {
        /*font-size: 70%;*/
    }
    .card {
        margin-right: 0px;
        margin: 0 auto;
    }
    .card  {
        width: 100%;
    }
    .card .icon{
        width: 100%;
    }

    main.cards section.card .icon {
       height: 200px;
      }
      
      main.cards section.card img {
        height: 200px;
      }
    .clo {
    font-size: medium;
    padding: 0px 10px 0 10px;
    }

    .cards section.card h3 {
    font-size: medium!important;
    width: 100%;
    padding: 0px 10px 0 10px;
   /* white-space: pre-line;*/
    }
    button {
        font-size: inherit;
    }
    main.cards section.card {
        gap:15px;
    }
}

/*AQUI TROCAMOS O BOTAO DOS PRODUTOS NA FICHA PARA BOTAO MAIS MODERNO*/
.div4{
    
   /* all: unset!important ; */
justify-content: normal;
width: 107%!important;
/* bottom: 10px!important; */
position: relative;
margin-top: 34px;
}
main.cards section.card.contact button {
    /* background: linear-gradient(to right, #437d50, #77e790); */
    background-color: #22a153;
    background-color: #000000;
}
main.cards section.card button {
     /* padding: 0.2rem 0.3rem; */
    /* text-transform: uppercase; */
    /* border-radius: 5px; */
    border: 0;
    cursor: pointer;
    /* font-size: 80%; */
    font-weight: 500;
    color: #fff;
    /*margin-bottom: 16px;*/
    font-size: 10px;
    width: 106%;
    height: 35px;
    margin-left: 0px!important;
    margin-right: 0px!important;
    padding: 0px;
    border-radius: unset;
    font-family: 'Lato';
    border-radius: 0px 0px 0px 5px;
}

main.cards section.card span {
    /* font-weight: 300; */
    max-width: 240px;
    font-size: 80%;
    /* margin-bottom: 16px; */
    position: absolute;
    margin: 7px 15px 7px -2px;
}


main.cards section.card:first-child {
    /* margin-left: 0; */
}

main.cards section.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 0.5rem 0.5rem 0rem 0.5rem;
    border-radius: 3px;
    max-height: 468px;
    color: #434343;
   /* border-color: #41e76e;
    border-width: 1px;
    border-style: solid;*/
}


.botao22 {
    /* margin-left: 10px; */
    background-color: #E2E21A!important;
    color: #707070!important;
    border-radius: 0px 0px 5px 0px!important;
    background-color: #edede8!important;
}
.div4 span{
    display: none;
}
@media(min-width:0) and (max-width:1050px){
    main.cards section.card button {
        font-size: 18px;
    }
    .div4{
        width: 105%!important;
    }
}
@media(min-width:1400px){
    main.cards {
              zoom: 120%; /*AMPLIA A FICHA DO PRODUTO*/
    }
}
#btnProsseguir {
    padding: 10px 20px;
    background-color: #007bff;
	background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	width: 100%;
	text-align: center;
}

#btnProsseguir:hover {
    background-color: #535050;
}
.destino{
	width: 100px;
}
#resultado{
	padding-right: 50px;
}
.adicionar{
	font-size: 14px!important;
	height: 45px!important;
}
@media only screen and (max-width: 600px) {
      /* Estilos para dispositivos móveis */
      #carrinho {
        padding: 10px!important;
		width: 100%!important;
		/*font-size: 10px;*/
		width: 94%!important;
    /* font-size: 10px; */
    margin: 10px!important;
    position: absolute!important;
      }
      #itens-carrinho table {
        width: 100%;
      }
      #itens-carrinho th,
      #itens-carrinho td {
        text-align: center;
      }
      #total,
      #resultado,
      #ValorTotal {
        margin-right: 10px;
      }
      #botaoprosseguir {
        text-align: center;
		margin-right: 0px!important;
		margin-top: 20px;
      }
	  .destino{
		width: 80px;
		padding-right: 0;
	  }
	  #carrinho h2{
		font-size: 16px;
	  }
	  #total {
		margin-right: 0!important;
	  }
/*RETIREI A SEGUNDA COLUNA DA VISAO*/
	  #itens-carrinho th, #itens-carrinho td:nth-child(2){
		display: none;
	  }
	.quantidade{
		flex-direction: column-reverse;
	}
	#resultado{
	padding-right: 0px;
}
    }	
	@media only screen and (max-width: 900px){
  table > tr > td:nth-child(2) {
    display: none;
 						 }
			}

	

	