@import url('https://fonts.googleapis.com/css2?family= Kanit :wght@500;600;700 & display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500;600;700&display=swap');




:root{
    --orange:#1d7d05;
    --black: #130f40;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    --border: .2rem solid rgba(0,0,0,.1);
    --outline: .1rem solid rgba(0,0,0,.1);
    --outline-hover: .2rem solid var(--black);
}

s{
    color: var(--orange);
}

*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    outline: none; 
    border:none;
    text-decoration: none;
    transition: all .2s linear;
    font-family: 'Kanit', sans-serif;
    font-family: 'Alkatra', cursive;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body{
    background: #eee;
}

section{
    padding: 2rem 9%;
    margin-bottom: 5%;
}

.heading{
   text-align: center;
   padding: 2rem 0;
   padding-bottom: 3rem;
   font-size: 3.5rem;
   color:var(--black)
}

.heading span{
    background: var(--orange);
    color: #fff;
    display:inline;
    padding: 1rem;
    border-radius: 100%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border: .2rem solid var(--black);
    color: var(--black);
    cursor: pointer;
    background: none;
}

.btn:hover{
    background: var(--orange);
    color:#fff;
}

.header{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 2rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color:var(--black);
}

.header .logo i{   /*Trocar para a ima o i*/
 color: var(--orange);

}

.header .navbar a{
    font-size: 1.7rem;
    margin: 0 1rem;
    color:var(--black);
}

.header .navbar a:hover{
    color:var(--orange);
}

.header .icons div{
    height: 4.5rem;
    width: 5rem;
    line-height: 4.5rem;
    border: .5rem;
    background: #eee;
    color: var(--black);
    font-size: 2rem;
    margin-right: .3rem;
    cursor: pointer;
    text-align: center;
}

.header .icons div:hover{
background: var(--orange);
color: #fff;
}

#menu-btn{
    display: none;
}

.header .search-form.active{
    right: 2rem;
    transition: .4s linear;
}

.header .search-form{
    position: absolute;
    top:110%;right:-110%;
    width: 50rem;
    height: 4.5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color:var(--black);
    padding: 0 1.5rem;
}

.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color:var(--orange)
}

.header .shopping-cart{
    position: absolute;
    top:110%;
    right: -110%;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem ;
    background:#fff;
}

.header .shopping-cart.active{
    right: 2rem;
    transition: .4s linear;
}

.header .shopping-cart .box{
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin: 1rem 0;
}

.header .shopping-cart .box img{
    height: 10rem;
}

.header .shopping-cart .box .fa-trash{
    font-size: 2rem ;
    position: absolute;
    top:50%;
     right: 2rem;
    cursor: pointer;
    color: var(--light-color);
    transform: translateY(-50%);

}

.header .shopping-cart .box .fa-trash:hover{
    color: var(--orange);
}

.header .shopping-cart .box .content h3{
    color: var(--black);
    font-size: 1.7rem;
    padding-bottom: 1rem;
}

.header .shopping-cart .box .content span{
    color: var(--light-color);
    font-size: 1.6rem;
}

.header .shopping-cart .box .content .quantity{
    padding-left: 1rem;
}

.header .shopping-cart .total{
  font-size: 2.5rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--black);
}

.header .shopping-cart .btn{
    display: block;
    text-align: center;
    margin: 1rem;
}

.header .login-form{
    position: absolute;
    top:110%;
    right: -110%;
    width:35rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: .5rem;
    background: #fff;
    text-align: center;
}

.header .login-form.active{
    right: 2rem;
    transition: .4s linear;
}

.header .login-form h3{
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--black);
}

.header .login-form .box{
    width: 100%;
    margin: .7rem 0;
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.header .login-form p{
    font-size: 1.4rem;
    padding:  .5rem 0;
    color: var(--light-color);
}

.header .login-form p a{
    color: var(--orange);
    text-decoration: underline;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(img/banner.png) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 17rem;
    height: 700px;
    padding-bottom: 10rem;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home .content{
    text-align: center;
    width: 60rem;
}

.home .content h3{
    color:var(--black);
    font-size: 3.5rem;
}


.home .content h3 span{
    color: var(--orange);
}

.home .content p{
    color: var(--light-color);
    font-size: 1.7rem;
    padding:  1rem 0;
    line-height: 1.8;
}

.icons-container {
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons {
    background: #fff;
    border: .1rem solid rgba(0, 0, 0, .1);
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 0.4 1 10rem;
}

.icons-container .icons img {
    height: 5rem;
    margin-right: 2rem;
}

.icons-container .icons h3 {
    color: #333;
    padding-bottom: .5rem;
    font-size: 1.5rem;
}

.icons-container .icons span {
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
}

.features .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.features .box-container .box{

    background: #fff;
    outline: var(--outline);
    outline-offset: -1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.features .box-container .box:hover{
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.features .box-container .box img{
    margin: 1rem;
    height: 15rem;
}

.features .box-container .box h3{
    font-size: 2.5rem ;
    line-height: 1.8;
    color: var(--black);
}

.features .box-container .box p{
     font-size: 1.5rem;
     line-height: 1.8;
     color: var(--light-color);
     padding: 1rem 0;
}

.features .product-slider .box{
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.features .product-slider .box:hover{
     outline-offset: 0rem;
     outline: var(--outline-hover);
}

.features .product-slider .box img{
    height: 20rem;
}


.features .product-slider .box h3{
font-size: 2.5rem;
color: var(--black);
}

.features .product-slider .box .price{
font-size: 2rem;
color: var(--light-color);
padding: 2rem 0;
}

.features .product-slider .box .stars i{
    font-size: 1.5rem;
    color: rgb(238, 178, 25);
    padding: 2rem 0;
}


.products .product-slider{
padding: 1rem;
}


.products .product-slider:first-child{
    margin-bottom: 2rem;
}

.products .product-slider .box{
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.products .product-slider .box:hover{
     outline-offset: 0rem;
     outline: var(--outline-hover);
}

.products .product-slider .box img{
    height: 20rem;
}


.products .product-slider .box h3{
font-size: 2.5rem;
color: var(--black);
}

.products .product-slider .box .price{
font-size: 2rem;
color: var(--light-color);
padding: 2rem 0;
}



.products .product-slider .box .stars i{
    font-size: 1.5rem;
    color: rgb(238, 178, 25);
    padding: 2rem 0;
}


.categories .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 1.5rem;
}


.categories .box-container .box{
    padding: 3rem 2rem;
    border-radius: .5rem;
    background: #fff;
    box-shadow: var(--box-shadow);
    outline: var(--outline);
    outline-offset: -1rem;
    text-align: center;
}


.categories .box-container .box:hover{
    outline: var(--outline-hover);
    outline-offset: 0rem;
}


.categories .box-container .box img{
    margin: 1rem 0;
    height: 15rem;
}

.categories .box-container .box h3{
    font-size: 1.7rem;
    color:var(black);
    line-height: 1.8;
    padding: 1rem 0;
}

.categories .product-slider .box{
    background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.categories .product-slider .box:hover{
    outline-offset: 0rem;
    outline: var(--outline-hover);
}

.categories .product-slider .box img{
   height: 20rem;
}


.categories .product-slider .box h3{
font-size: 2.5rem;
color: var(--black);
}

.categories .product-slider .box .price{
font-size: 2rem;
color: var(--light-color);
padding: 2rem 0;
}

.categories .product-slider .box .stars i{
   font-size: 1.5rem;
   color: rgb(238, 178, 25);
   padding: 2rem 0;
}


.review .product-slider{
    padding:  1rem;

}

.review .product-slider .box{
   background: #fff;
    border-radius: .5rem;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}

.review .product-slider .box:hover{
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.review .product-slider .box img{
    height:10rem ;
    width:10rem ;
    border-radius: 50%;
}

.review .review-slider .box p{
    padding: 1rem 0;
    line-height: 1.8 ;
    color:var(--light-color);
font-size: 1.5rem;
}

.review .product-slider .box h3{
    padding-bottom:.5rem ;
    color:var(--black);
font-size: 2.2rem;
}


.review .product-slider .box .stars i{

  color: rgb(238, 178, 25);
  font-size: 1.7rem;
}

.blogs {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blogs .heading {
    margin-bottom: 4%;
  }
  
  .texto {
    width: 50%;
  }
  
  .imagem {
    width: 50%;
    margin-left: 100px; /* Adicione a margem esquerda desejada */
  }
  
  .text-sus {
    font-size: 1.9rem;
    text-align: justify;
  }
  
  .text-sus span {
    color: var(--orange);
    font-weight: bold;
  }
  


.contact {
    margin-top: 7rem;
}

.contact .row {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 1.5rem;
    align-items: center;
}

.contact .row form{
    flex: 1 1 40rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    border: .1rem solid rgba(0, 0, 0, .1);
    background: #fff;
    border-radius: .5rem;
}

.contact .row .image{
    flex: 1 1 40rem;
}

.contact .row .image img{
    width: 100%;
}

.contact .row form .box {
    padding: 1rem;
    font-size: 1.6rem;
    color: #333;
    text-transform: none;
    border: .1rem solid rgba(0, 0, 0, .1);
    border-radius: .5rem;
    margin: .7rem 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.contact .row form .box:focus {
    border-color: var(--rosa);
}

.contact .row form textarea {
    height: 15rem;
    resize: none;
}


.footer{
    background: #fff;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;

}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box h3 i{
    color: var(--orange);
}

.footer .box-container .box .links{
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .links i{
    color: var(--orange);
    padding-right: .5rem;
}
.footer .box-container .box .links:hover i{
  padding-right: 2rem;
}

.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.5rem;
    color:var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--black);
    margin-left: .2rem;
    background: #eee;
    text-align: center;
}

.footer .box-container .box .email{
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.footer .box-container .box .payment-img{
    margin-top: 2rem;
    height: 3rem;
}

.footer .box-container .box .share a:hover{
    background: var(--orange);
    color: #fff;
}


.footer .credit{
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: var(--black);
    border-top: var(--border)
}

.footer .credit span{
    color: var(--orange);
}


@media(max-width:991px){
    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }
    
}




@media(max-width:768px){
  
  #menu-btn{
    display: inline-block;
  }
  
    .header .navbar{
    position: absolute;
    top:110%;
    right: -110%;
    width:30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background: #fff;
  }

.header .search-form{
    width:90% ;
}

  .header .navbar.active{
    right: 2rem;
    transition:  .4s linear;
  }

  .header .navbar a{
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;
  }

}


@media(max-width:450px){
    html{
        font-size: 50%;
    }

    .heading{
        font-size: 2.5rem;
    }
    .footer{
        text-align: center;
    }
}