@charset "UTF8";

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    
}
/* Para navegadores Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    display: none;
}

/* Para Firefox */
* {
    scrollbar-width: none; /* remove a barra */
}


body{
    font-family: Arial, Helvetica, sans-serif;
}


.headerconteiner img{
   width: 100px;
   height: auto;

}
.headerconteiner{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;

}

.logo {
   width: 100px;
   transition: transform 0.3s ease;
 }

 .logo:hover {
   transform: scale(1.2);
 }
.navbar{
   
    background-color: #2c2c2c;
    padding: 1rem;
    position: sticky;
    top: 0;
    box-shadow: 0px 10px rgba(58, 57, 57, 0.086);
    z-index: 99;
}
.navbar>.headerconteiner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.navbar ul{
    display: flex;
    list-style: none;
    align-items: center;

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

}
.navicon2{
   display: none;
}
.navicon img{
    width: 30px;
    cursor: pointer;
}
.navicon img:first-child{
    margin-right: 1rem;
}

 nav ul li{
    color: white;
    margin-right: 1.9rem;
    cursor: pointer ;
    transition: all 0.6s;
 }
 nav ul li:hover{
    transform: translateY(-3px);
    transition: all 0.4s;
    
    
 }
 nav ul li a{
   text-decoration: none;
   color: white;
 }
 .menu-button{
    display: none;
 }
 header{
    background-image: radial-gradient(#fff,#c7c7c7);
 }
 .header-bottom-side{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
 }
 .header-bottom-side-left h2{
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
 }
.header-bottom-side-left p{
    line-height: 1.5rem;
    margin-bottom: 1.5rem;

}
.header-bottom-side-left button{
    background-color: #0084ff;
    border: none;
    padding: 0.8rem 3.8rem;
    border-radius: 99999px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all .2s;
}
.header-bottom-side-left button:hover{
    background-color:#004c94;
}

 .header-bottom-side-left{
    height: 100%;
    flex-basis: 50%;

    
 }
 .header-bottom-side-right{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 50%;
 }
 .header-bottom-side-right img{
    width: 100%;
 }
 
 main{
    background-color: #ebebeb;
 }
 .cor-de-fundo{
    background-color: #2c2c2c;
 }
 .page-inner-content{
    max-width: 1280px;
    margin: 0 auto;
 }
 .cols{
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem;
 }
 .cols3{
  
    display: flex;
    
 }
 .cols3 img{
    width: 100%;

 }
 .cols4 img{
    width: 99.5%;

 }
 .cols>img{
    width: 215px;
    height: 200px;
 }
 .cols4{
    grid-template-columns: repeat(4,1fr);
 }
 .cols>*{
    cursor: pointer;
    transition: all 0.2s;
 }
 .cols>*:hover{
    transform: translateY(-5px);
 }
 .selection-titulo{
    text-align: center;
    margin-top:4rem;
    font-size: 1.8rem;

 }
 .subtitulo{
    width: 100px;
    height: 5px;
    background-color: #0084ff;
    border-radius: 9999px;
    margin: 8px auto 0 auto;
 }
 .produto{
    color: #2c2c2c;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;

 }
 .produto-name{
    font-weight: 600;
    margin-top: .4rem;
 }
 .rate{
    color: #0084ff;
    font-size: 1.3rem;
 }
 .preço span{
    font-weight:600 ;
 }
 .exclusive{
   color: #fff;
   flex-direction: row-reverse;
   padding: 5rem 1rem;
 }
 .exclusive img{
   min-width: 450px;

 }

 

   .testemunhos{
      display: flex;
      padding: 4rem 1rem;
      justify-content: space-evenly;

 }
 .testemunho{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   flex-basis: 30%;
   text-align: center;
   box-shadow: 0 0 15px #afafaf;
   padding: 1rem;
   border-radius: 1rem;
   cursor: pointer;
   transition: all 0.2s;
 }
 .testemunho:hover{
   transform: translateY(-5px);
 }
 .testemunho p{
   margin: 5px 0;
 }
 .testemunho p:first-child{
   font-weight: bold;
   font-size: 5rem;
   color: #0084ff;
   margin-top: 3rem;
   line-height: 2rem;
   
 }
 .testemunho p:last-child{
   font-weight: bold;
 }

 
 footer{
   background-color: #2c2c2c; 
 }
 .footer-content{
   display: flex;
   align-items: center;
   color: #8f8f8f;
   padding: 4rem 1rem;
   gap: 2rem;
 }
 .download-options>*{
   margin: 1rem 0;
 }
 .download-options p:first-child{
   font-weight: bold;
   color: #fff;
 }
 .download-options>div{
   display: flex;
 }
 .download-options>div img{
   width: 180px;
 }
 .logo-footer{
   text-align: center;
   max-width: 578px;

 }
 .logo-footer1{
   width: 200px;
 }

 

 .links-footer h3{
   color: #fff;
   margin-bottom: 0.3rem;
 }
 .links-footer ul{
   list-style: none;
  

 }
 .links-footer ul li{
   margin-bottom: 0.5rem;
   cursor: pointer;
   
 }
 .links-footer ul a{
   margin-bottom: 0.5rem;
   cursor: pointer;
   color: white;
   text-decoration: none;
 }
 .links-footer ul a:hover{
   color: rgb(185, 180, 180);
   text-decoration: underline;
 }
 .copyright{
   color: #fff;
   padding: 2rem 0;
   text-align: center;
 }

 /* destaque */





.container {
   text-align: center;
   max-width: 348px;
   margin: auto;
   padding: 20px;
   background-color: #8f8b8b61;
   border-radius: 10px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   margin-top: 50px;
   margin-bottom: 50px;
}
.container h2{
   color: white;
}
.carousel {
   display: flex;
   overflow: hidden;
   width: 100%;
   position: relative;
   border-radius: 10px;
}
.slides {
   display: flex;
   width: 500%;
   transition: transform 0.5s ease-in-out;
}
.slide {
   min-width: 100%;
   height: 300px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   color: white;
   font-weight: bold;
   transition: 0.5s;
   position: relative;
}
.slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
   border-radius: 10px;
}
.slide .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 10px;
   font-size: 28px;
   font-weight: bold;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.buttons {
   margin-top: 15px;
}
.cor-de-fundo button {
   padding: 12px 20px;
   cursor: pointer;
   border: none;
   background-color: #333;
   color: white;
   font-size: 16px;
   margin: 5px;
   border-radius: 5px;
   transition: 0.3s;
   width: 115px;
}
button:hover {
   background-color: #555;
}
.indicators {
   margin-top: 10px;
}
.dot {
   height: 12px;
   width: 12px;
   margin: 0 5px;
   background-color: #bbb;
   border-radius: 50%;
   display: inline-block;
   transition: background-color 0.3s ease;
}
.active {
   background-color: #333;
}

.cor-de-fundo{
   padding: 1px;
}
 /*  destaque  */