@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Sora:wght@100..800&display=swap');

*{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
 
}

:root {
  --green-color:#3cb815;
  --light-green-color:#47eb15;


  --orange-color:#ff7e00 ;
  --light-orange-color:#f77f1d;
  --text-color: #1a2428;
  --bg-color:#fff;
  --header-height: 80px; /* Altura do cabeçalho */
}

::-webkit-scrollbar{
  width: 0.5rem;
  background: var(--light-green-color);
 
}

::-webkit-scrollbar-thumb{
  width: 0.5rem;
  background: var(--green-color);
   border-radius: 5rem;
}

.cart-content .quantity-btn {
  background-color: #28a745; /* Cor verde */
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.cart-content .quantity-btn:hover {
  background-color: #218838; /* Cor verde mais escura */
}
.blur {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  background: linear-gradient(109deg, rgba(10, 12, 16, 0.9) 15%, rgba(10, 12 , 16, 0.7) 50%, rgba(10, 12 , 16, 0.99) 95%);
  z-index: 1002;
}
section{
  padding: 4.5rem 0 1.5rem;
  margin: 0 2rem;
}

#cart-icon{
  position: relative
  
;z-index: 199;

font-size: 1.8rem;
cursor: pointer;
}

#cart-icon[data-quantity="0"]::after{
  contain: "";
}

#cart-icon[data-quantity]::after{
  content:attr(data-quantity);
  position: absolute;
  top: 0;
  right: -12px;
  width: 20px;
  height: 20px;
  background:var(--light-green-color) ;
  border-radius: 50%;
  color: black;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.cart{
  position: fixed;
  top: 0;
  right: -200%;
  width: 360px;
  padding: 20px;
  background: var(--bg-color);
  box-shadow: -2px 0 4px hsl(0, 4%, 15% / 10%);
  border-radius: 20px ;
  transition: 0.3s cubic-bezier(0.075,0.82,0.165,1);
  z-index: 1003;
  max-height: 100%; /* Defina a altura máxima do carrinho */
  overflow-y: auto;  /* Adicione rolagem vertical */
  overflow-x: hidden;
}

.cart.active{
  right: 0;
  transition: 0.3s cubic-bezier(0.075,0.82,0.165,1);
}

.cart-title{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.total{
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  border-top: 1px solid var(--light-orange-color);
}

.total-title{
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
}
.total-price{
  font-size: 1.075rem;
  margin: 1rem 0 0 0.7rem;
}

.btn-buy{
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 0 auto;
  padding: 12px 20px;
  width: 50%;
  text-align: center;
  border: none;
  border-radius: 2rem;
  background: var(--green-color);
  font-size: 1rem;
 color: var(--bg-color);
 cursor: pointer;
}

#close-cart{
  position: absolute ;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  color: var(--green-color);
  cursor: pointer;
  margin-right: 13px;
  margin-top: 8px;
}

.cart-box{
  display: grid;
  grid-template-columns: 32% 50% 18%;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
 
  border-radius: 1rem;
}
.cart-img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding: 10px;
  object-position: center;
}

.detail-box{
  display: grid;
  row-gap: 0.5rem;
}
.cart-product-title{
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.cart-price{
  font-weight: 500;
}

.cart-quantity{
  border:1px solid var(--green-color) ;
  outline-color: var(--light-orange-color);
  width: 2.8rem;
  text-align: center;
  font-size: 1rem;
  border-radius: 4px;
}
.cart-remove{
  font-size: 24px;
  color: var(--orange-color);
  cursor: pointer;
  justify-content: flex-end;
 
}
img{
  width: 100%;
}
body{
  color: var(--text-color);
  
  
}
header{
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1003;
  display: flex;
  align-items: center;
  
 justify-content: space-between;
  background: var(--bg-color);
  box-shadow: 0 8px 11px rgb(14 55 54/ 15%);
  padding: 20px 100px ;
  transition: 0.5s;
}

.bg-box {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  
}

.bg-box img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta o vídeo sem distorções, preenchendo o container */
  position: fixed;
  top: 0;
  left: 0;
 
}  
.sc-container{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.sc-container img{
  width: 200px;
  margin: 2rem 0;
}

.sc-container h1{
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.sc-container p{
max-width: 600px;
font-size: 0.9rem;
text-align: center;
margin: 0.5rem 0;
}


.sc-btn{
  padding: 12px 20px ;
  border-radius: 2rem;
  background: var(--green-color);
  color: white;
  font-size:1rem ;
  font-weight: 500;
}
.masck {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  background: linear-gradient(109deg, rgba(10, 12, 16, 0.9) 15%, rgba(10, 12 , 16, 0.7) 50%, rgba(10, 12 , 16, 0.99) 95%);
}


.logo{
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color)
  ;
  column-gap: 0.5rem;

}

.logo .bx{
  font-size:  24px;
  color: var(--orange-color);
}
.navbar{
  display: flex;
  justify-content: center;
  column-gap: 0.5rem ;
}

.navbar a {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  padding:  0.5rem 1rem;
  justify-content: center;
}

.navbar a:hover, .navbar .home-active{
  background: var(--green-color);
  border-radius: 5rem;
  color: var(--bg-color);
  transition: background 0.5s ;
}
#menu-icon{
  font-size: 24px;
  cursor: pointer;
  display: none;
  z-index: 99;
}
.container{
  position: relative;
  width: 100%;
  min-height:55vh;
  display: flex;
  align-items: center;
  background: url('assets/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.container img{
  width: 400px;
  position: absolute;
  bottom: -500px;
  right: 30rem;
}
.container-prod{
  position: relative;
  width: 100%;
  min-height:70vh;
  display: flex;
  align-items: center;
  background: url(assets/Green\ Watercolour\ Opening\ Soon\ Banner\ \(1\).jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
 
  
  
  
}
.container-prod-fruit{
  position: relative;
  width: 100%;
  min-height:65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg , #d44a4a, #4d090e);
 
  
  
  
}
.container-verdu{
  position: relative;
  width: 100%;
  min-height:65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg , #c55a03, #183501 98%);
 
  
  
  
}
.container-verdu img{
  width:670px;
  height: 470px;
  position: absolute;
 bottom: 5em;
  
  z-index: 1;
}
.container-drinks{
  position: relative;
  width: 100%;
  min-height:65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg , #570d04 , #d39102 );
 
  
  
  
}
.container-drinks img{
  width: 600px;
  height: 640px;
  position: absolute;
  bottom: -1em;

  z-index: 1;
 
}
.container-legume{
  position: relative;
  width: 100%;
  min-height:65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg , #0b2401 , #055e1b );
 
  
  
  
}
.container-tempero{
  position: relative;
  width: 100%;
  min-height:65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg , #7e2603 , #492d02 );
 
  
  
  
}
.container-legume img{
  width: 750px;
  height: 400px;
  position: absolute;
  bottom: 5em;
  z-index: 1;
  
}
.container-tempero img{
  width: 650px;
  height: 470px;
  position: absolute;
  bottom: 3em;
  z-index: 1;
  margin-right: 40rem;
}
.container-prod img{
  width: 569px;
  height: 550px;
  position: absolute;
bottom: 1rem;
  right: 17rem;
}
.container-prod-fruit img{
  width: 1000px;
  height: 970px;
  position: absolute;
  bottom: -72%;
  
}


.home-text{
  padding: 0 150px;
  z-index: 2;
  margin-left: 12rem;
  
}

.home-text span{
  font-weight: 400;
  text-transform: uppercase ;
  color: var(--green-color);
  font-size: 1rem;
  justify-items: center;
  align-items: center;
}
.home-text h1{
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.btn{
  padding: 0.6rem 2rem ;
  background: var(--green-color);
  color: var(--bg-color);
  font-weight: 400;
  border-radius: 5rem;
  display: flex;

  justify-content: space-between;
  column-gap: 0.5rem;
  max-width: 360px;
  width: 267px;
  transition: 0.3s ease;
  font-size: 2rem;
}

.btn .bx{
  padding: 4px;
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 1rem;
  font-size: 20px;
  margin: auto;
}
.btn:hover{
  background: var(--light-orange-color);
  transition: 0.3s ease;
  transform: scale(1.08);

}
.swiper-button-next{
  background: url(assets/right-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  margin-right: 20px;
}
.swiper-button-next::after{
  display: none;
}
.swiper-button-prev{
  background: url(assets/left-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  margin-left: 20px;
}
.swiper-button-prev::after{
  display: none;
}

/* - */
#products-heading{
  margin-top: 10rem;


}

.first{
  margin-top: 5rem;
}

.heading, .headingg {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heading h1, .headingg h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.heading span, .headingg span {
  color: var(--green-color);
}

.categorias{
  max-width: 1000px;
  margin: 0 auto;
}

.categorias-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,auto));
  gap: 1rem;
  margin-top:2rem ;
}

.categorias-container a {
color: #1a2428;

align-items: center;
justify-content: center;
}
.categorias-container .box{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 0.5rem;
  transition: 0.4s;
  cursor: pointer;
  z-index: 1;
}
.categorias-container .box a {
  margin-left: -40px;
  display: block;
}
.categorias .active{
 margin-bottom: 1rem;
 scale: 1.1;
 cursor: auto;
}
.categorias-container .box:hover{
  transform: translateY(-10px);
  transition: 0.4s;
}

.categorias-container .box img{
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.categorias-container .box h2{
  font-size: 1.8rem;
  font-weight: 600;
}

.categorias-container .box span{
  font-size: 1rem;
  font-weight: 400;
 margin-bottom: 1rem; 
}

.categorias-container .box .bx{
  padding: 10px;
  background: var(--green-color);
  color: var(--bg-color) ;
  border-radius: 5rem;
  margin-top: 2rem;
  position: absolute;
  bottom: -8%;
  display: none;
  transition: 0.2s all linear;z-index: 1222;
 

}

.categorias-container .box .bx:hover{
  background: var(--orange-color);
  transition: 0.2s all linear;transform: scale(1.2);
}

.categorias-container .box:hover .bx{
  display: block;
  transition: 0.3s all linear;
  

}

.box1{
  background:#fef4ea ;
}
.box2{
  background:#e9f4e3 ;
}
.box3{
  background:#faeaea ;
}
.box4{
  background:#eeeef9 ;
}
.box5{
  background:#f7f6d7;
}
.box6{
  background:#bb232327;
}
 
/* - */

.produtos{
  max-width: 1000px;
   margin-left: auto;
   margin-right: auto;
 
   background-size: cover;
  
}


.produtos-container{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 1.5rem;
  margin-top:2.5rem ;
}

.produtos-container .box{
  padding: 20px 10px;
  box-shadow: 1px 2px 11px 4px rgb(14 55 54/ 15%);
  border-radius: 0.5rem;
  position: relative ;
  transition: 0.3s ;
  background: white;
 
  
}

.produtos-container .box:hover{
  transform: scale(1.05);
  transition: 0.3s ;
}

.produtos-container .box img{
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
}

.produtos-container .box span{
  font-weight: 500;
  font-size: 0.9rem;
}

.produtos-container .box h2{
  font-weight: 600;
  font-size: 1.5rem;
 
}
.produtos-container .box .price{
  font-size: 1.5rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--light-orange-color);
}

.produtos-container .box .price span{
  color: var(--text-color);
}

.produtos-container .box .bx-cart-alt{
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: var(--green-color);
  font-size: 20px;
  border-radius: 0.5rem 0 0.5rem 0;
  color: var(--bg-color);
  cursor: pointer;
  transition: 0.2s all linear;
  
}

.produtos-container .box .bx-cart-alt:hover{
  background: var(--orange-color);
  transition: 0.2s all linear;
  transform: scale(1.15);
}



.produtos-container .box .desconto{
  position: absolute;
  top: 1rem;
  left: 0;
  background: var(--light-orange-color);
  color: var(--bg-color);
  padding: 4px 18px ;
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}

/* - */

.sobre{
  max-width: 1000px;
 
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(21rem,auto)) ;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  background: rgb(241, 241, 241);padding: 2rem;
  margin-top: 6rem;border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.about{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(21rem,auto)) ;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  background: rgb(241, 241, 241);padding: 2rem;
  margin-top: 6rem;border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
 padding-bottom: 0;
}

.about-text span{
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green-color);
  font-size: 2.7rem;
 

}

.hort{
  border-radius: 1rem 1rem 1rem 1rem;
}


.bxs-hot::before{
  color: #f77f1d;

}

.about-text p{
  margin: 0.5rem 0 1rem;
  font-size: 1.3rem;
  
}
.about img{
  margin-top: 2rem;
  margin-bottom: 6rem;
}


/* - */
.clientes{
  max-width: 968px;
  margin-left:auto ;
  margin-right: auto;

}

.clientes h2{
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
}

.clientes-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,auto));
  gap: 1.5rem;
  margin-top:2rem ;
}

.clientes-container .box{
  padding: 20px;
  box-shadow: 1px 2px 11px rgb(14 55 54/ 15%);
  border-bottom: 7px solid var(--green-color);
  transition: 0.3s linear all;
}

.clientes-container .box:hover{
  transform: translateY(-20px) scale(1.05);
  transition: 0.3s linear all;
}

.clientes-container .box .bx{
  font-size: 2rem;
  color: var(--green-color);
}

.clientes-container .box .stars .bx{
  font-size: 2rem;
  color: var(--orange-color);
}
.clientes-container .box p{
  font-size: 1rem;
}

.review-profile{
  display: flex;
  align-items: center;
  margin-top: 1rem;
  column-gap: 0.5rem;

}

.review-profile img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.review-profile h3{
  font-size: 1rem ;
  font-weight: 600;
}

/* - */

.footer{
  
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,auto));
  gap: 1.5rem;
  margin-top: 3rem;
  background: #fef4ea;
  border-radius:  0.5rem 0.5rem 0 0;
  padding: 20px;
  
}

.footer-box{
  display: flex;
  flex-direction: column;
}
.footer-box p{
  font-size: 1.5rem;
  margin: 0.5rem  0 1rem;
}
.social{
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.social .bx{
  padding: 10px;
  background: var(--bg-color);
  color: var(--green-color);
  border-radius: 5rem;
  font-size: 1.2rem;
  transition: 0.3s all linear ;
}

.social .bx:hover{
  background:  var(--green-color);
  color: var(--bg-color);
 
  animation: translateY 0.8s infinite alternate; ;

}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-10px) scale(1.15);
  }
}

.footer-box h2{
  font-size:1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-box a {
  color: #868a92;
  margin-bottom: 1rem;
}

.footer-box a:hover{
  color: var(--light-orange-color);
}

.footer-box form{
  border-bottom: 1px solid var(--text-color);
  padding: 10px;
  display: flex;
  align-items: center;
  width: 200px;
  column-gap: 0.5rem
}
.footer-box form input{
  border: none;
  background: transparent;
  outline: none;
 
}

.footer-box form .bx{
  font-size: 20px;
  color: var(--orange-color);
  
}

.footer-box form .bx-arrow-back,.bx-rotate-180 {
  cursor: pointer;
  
}

.footer-box form .bx-envelope {
  color: var(--green-color);
}

.copyright
{
  text-align: center;
  background-color: #ebebeb;
  padding: 20px;
}
@media  (max-width: 1440px){

  .home-text {
    margin-left: 5rem;
  }
  .home-text h1{
    font-size: 3rem;
    
  }
  .categorias{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
  }

  .container img{
  margin-right: -15rem;
  }
  .container-prod-fruit img{
    width: 800px;
    height: 870px;
    position: absolute;
   bottom: -24.7rem;
    right: -22rem;
    z-index: 1;
    margin-right:20rem;
  }
  .container-verdu img{
    width: 380px;
    height: 434px;
    position: absolute;
   bottom: 3rem;
    right: -9rem;
    z-index: 1;
   
  }
  .container-drinks img{
    width: 380px;
    height: 504px;
    position: absolute;
   bottom: 3rem;
    right: -9rem;
    z-index: 1;
   
  }
  .container-legume img{
    width: 580px;
    height: 404px;
    position: absolute;
   bottom: 3rem;
    right: -26rem;
    z-index: 1;
   
  }
  .container-tempero img{
    width: 480px;
    height: 404px;
    position: absolute;
   bottom: 3rem;
    right: -36rem;
    z-index: 1;
   
  }

  .container{
    margin-top: 4rem;
  }
  .container-prod{
    margin-top: 4rem;
   
  }
  .heading h1{
    font-size: 1.9rem;
  }

  .headingg h1{
    font-size: 1.9rem;
  }
  .about-text{
    margin-top: 2rem;
  }
  .btn {
    padding: 0.6rem 1rem;
    max-width: 190px;
    font-size: 1rem;
  }
  .produtos{
    max-width: 978px;
    margin-left: auto;
    margin-right: auto;
  }
  .about{
    max-width: 700px;
  }
  .produtos-container .box img{
    max-height: 150px;
    margin-top: 2rem;
  }

  .sobre{
    max-width: 978px;
    margin-left: auto;
    margin-right: auto;
  }

  .clientes{
    max-width: 978px;
    margin-left: auto;
    margin-right: auto;
  }

  .container-prod img{
    right: 5rem;
    bottom:1rem;
     
      height: 600px;
    
    width: 500px;
  }
}

@media  (max-width: 1080px){
  header{
    padding: 18px 60px;

  }

  .home-text {
    margin-left: -4rem;
  }
  .home-text h1{
    font-size: 2.6rem;
    
  }
  .categorias{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
  }

  .container img{
  margin-right: -25rem;
  }
  .container{
    margin-top: 4rem;
  }
  .container-prod img{
    right: 30px;
   height: 560px;
    width: 470px;
    bottom: 1rem;
  }
  .container-prod-fruit img {
    right: -25rem;
  }
  .container-verdu img {
    right: -18rem;
  }
  .container-drinks img {
    right: -18rem;
  }
  .container-legume img{
    width: 470px;
    height: 404px;
    right: -39rem;
   
  }
  .container-tempero img{
    width: 470px;
    height: 404px;
    right: -39rem;
   
  }
}



@media  (max-width: 991px){
  header{
    padding: 18px 4%;
  
  }
  section{
padding: 50px 4%;
  }
 
  .home-text h1{
    font-size: 2rem;
  }
  .home-text{
    padding: 0 5%;
    margin-left: 0;
  }
  .swiper-button-next,.swiper-button-prev{
    margin: 0;
  }
}

@media  (max-width: 852px){
 

  .home-text h1{
    font-size: 1.7rem;
  }
  .container img{
    width: 360px;
  }
  .container-prod img{
    width: 460px;
    height: 500px;
  }

  .btn{
    padding: 0.6rem 1.2rem;

  }
  .produtos-container{
   gap: 1.9rem;
  }
}

@media  (max-width: 792px){
  .container{
    margin-top: 2rem;
  }

  .container-prod img{
    right: 30px;
   height: 430px;
    width: 360px;
    bottom: 3rem;
  }

  
  .container-prod{
    margin-top: 2rem;
  }


  .heading h1{
    font-size: 1.6rem;
  }
  .sobre{
    grid-template-columns: repeat(auto-fit,minmax(20rem,auto));
  }
  .sobre img{

    order: 2;
  }
  .about-text{
    text-align:left;
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about .about-text{
    text-align: left;
    display: flex;
    flex-direction: column;
   
  }
  .btn{
    max-width: 164px;
  }

  .about{
    max-width: 500px;
    
  }
  .clientes h2{
    font-size: 1.7rem;
  }

  .categorias-container .box h2{
    font-size: 1.3rem;
  }
  .categorias-container .box span{
    font-size: 0.8rem;
 
 
  }
  .headingg h1{
    font-size: 2rem;
  }

  .about-text span{
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .container-prod-fruit img {
    right: -30rem;
    height: 770px;
    width: 690px;
    bottom: -24rem;
  }
  .container-verdu img {
    right: -18rem;
    height: 400px;
    width: 360px;
    bottom: 4rem;
  }
  .container-drinks img {
    right: -18rem;
    height: 500px;
    width: 360px;
    bottom: 4rem;
  }
  .container-legume img {
    right: -38rem;
    height: 400px;
    width: 460px;
    bottom: 4rem;
  }
  .container-tempero img {
    right: -38rem;
    height: 400px;
    width: 460px;
    bottom: 4rem;
  }
}

@media  (max-width: 642px){
  .container img{
   margin-right: 0;
   right: 0;
  bottom: -25rem;
    width: 310px;
  }
  .container-prod img{
    right: 10px;
    width: 340px;
    bottom: 2rem;
  }
  header{
    padding-right: auto; 
    padding-left: auto;
    }
  
}
@media  (max-width: 546px){
  .container img{
    right: 0;
    width: 370px;
    height: 830px;
  object-fit: contain;


}
  .container-prod img{
    right: 0;
    width: 370px;
    height: 830px;
  object-fit: contain;
  bottom: -16rem;


}

header{
  justify-content: space-between;  
  }

  
  #menu-icon {
    display: initial;
  }
  .navbar{
    position: absolute;
    top:-597px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
    box-shadow: 4px 4px 0 4px rgb(14 55 54/ 15%);
    transition: 0.2s all linear;
    text-align: left ;
  }
  .navbar a{
    padding: 1rem;
    margin: 1rem;
    display: block;
  }

  .navbar a:hover, .navbar .home-active{
    border-radius: 3rem;
    color: var(--bg-color);

  }

  .navbar.active{
    top: 100%;
  }
  #cart-icon{
    margin-top: 180vh;
    background-color:var(--orange-color);
    color:var(--bg-color);
    position: fixed;
    margin-left: 70%;
    padding: 20px;
    border-radius: 50%;
  }

  #cart-icon[data-quantity]::after{
    right: 8px;
    top:1.1rem;
  }

  .container{
    min-height:70vh;
  }
  .container-prod{
    min-height:80vh;
    max-width: 100%;
  }
}
@media  (max-width: 425px){
  .sc-container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
    .sc-container img{
      width: 170px;
      margin: 2rem 0;
    }
    
    .sc-container h1{
      font-size: 2rem;
      margin-bottom: 10px;
    }
    
    .sc-container p{
    max-width: 600px;
    font-size: 0.9rem;
    text-align: center;
    margin: 0.5rem 0;
    }
    
    
    .sc-btn{
      padding: 12px 20px ;
      border-radius: 2rem;
      background: var(--green-color);
      color: white;
      font-size:1rem ;
      font-weight: 500;
    }
  .container-prod img{
    right: 4rem;
    width: 360px;
    height: 380px;
  object-fit: contain;
  bottom: -10px;



}
.container img{
  margin-right: 0;
  right: 4rem;
 bottom: -28rem;
   width: 280px;
 }

.container-prod{
  min-height:70vh;
}
.container-prod-fruit{
  min-height:70vh;
}
.container-prod-fruit img{
  right: -60px;
  height: 630px;
  width: 570px;
  bottom: -17.8rem;

  margin-right: 0;
}
.container-verdu{
  min-height:70vh;
}
.container-drinks{
  min-height:70vh;
}
.container-legume{
  min-height:70vh;
}
.container-tempero{
  min-height:70vh;
}
.container-verdu img{
  right: 5rem;
  height: 370px;
  width: 270px;
  bottom: 1rem;

  margin-right: 0;
}
.container-drinks img{
  right: 5rem;
  height: 370px;
  width: 270px;
  bottom: 1rem;

  margin-right: 0;
}
.container-legume img{
  right: 2rem;
  height: 270px;
  width: 370px;
  bottom: 2rem;

  margin-right: 0;
}
.container-tempero img{
  right: 3rem;
  height: 270px;
  width: 330px;
  bottom: 2rem;

  margin-right: 0;
}
  .logo{
    font-size: 1rem;
  }
  .profile img{
    width: 30px;
    height: 30px;
  }

  .profile span{
    font-size: 10px;
  }

  .home-text{
    padding-bottom: 17rem;
  }

  .home-text span{
    font-size: 0.8rem;
  }

  .home-text h1{
    font-size: 1.4rem;

  }

  .heading{
    flex-direction:column;
    align-items:baseline;
    display: flex;
    justify-content: left;
  font-size: 1rem;
   
  }

.btn{
    margin-top: 1rem;
    
    
  }
  .categorias-container{
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .produtos-container .box:hover{
    transform: scale(1.05);
    transition: 0.3s ;
  }
  .produtos-container .box .bx-cart-alt{
    font-size: 19px;
    padding: 8px;
  }
  .box img{
    max-height: 140px;
  }
  .produtos-container .box h2{
    font-size: 1.1rem;
  }
  .produtos-container .box .price{
    font-size: 1.1rem;
  }
  .produtos-container{
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }

  .produtos-container .box img{
    margin-top: 1rem;
  }
  .about{
    max-width: 370px;padding: 0 10px;
  }
  .about p {
    font-size: 1.2rem;
    align-items: center;
    padding: 3px;
  }

  .about span{
    font-size: 2rem;
    justify-content: left;
    margin-bottom: 2rem;
  }
  .cart.active{
    width: 100%;
  }
  
}

@media  (max-width: 375px){
  .sc-container h1{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .container img{
    margin-right: 0;
    right: 1.3rem;
   bottom: -28rem;
     width: 280px;
   }
   .container-prod-fruit img{
    right: -9rem;
   }
  .produtos-container .box .bx-cart-alt {
    top: 0;
    bottom: 88%;
  }
  .produtos-container .box img{
    margin-top: 1rem;
  }
.about{
background: white;


}

.container-prod img{
  right: 1rem;
  width: 320px;
  height: 420px;



}
.container-verdu img{
  right: 1.8rem;
  width: 280px;
  height: 340px;



}
.container-drinks img{
  right: 2.3rem;
  width: 280px;
  height: 360px;



}
.container-legume img{
  right: 2.5rem;
  width: 280px;
  height: 260px;


}
.container-tempero img{
  right: 2.5rem;
  width: 280px;
  height: 260px;


}
.about img{
  width: 95%;
}
.about p{ font-size: 1rem;}

.about span{
  font-size: 1.6rem;
}
.masck{
display: none;
  
}
.bg-box{
  display: none;
}
.about .about-text{
  max-width: 320px;
}
.about-text p{
  max-width: 320px;
  margin: 0;
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}
.sobre{
  max-width: 320px;
  margin-left: 0;
  padding: 0;
}
}

.cart .total,
.cart .btn-buy {
    display: none;
}

.empty-cart-message {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: 20px;
}
