*{
  margin: 0;
  padding: 0;
  height: auto;
}

header{
 font-family: Arial, Helvetica, sans-serif;
 font-size: 20px;
}

/*--------------------------TOP BAR----------------------- */

#topbar{
 padding: 10px;
 text-align: center;
 background-color: rgb(16, 16, 110);
}

#topbar :hover{
color: #0081FF;
}

#topbar a{
 font-size: 18px;
 color: white;
 padding: 30px;
 text-decoration: none;
 transition: all.3s ease-in-out;
}

#topbar i{
padding: 5px;
font-size: 20px;
}

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

#topbar{
  padding: 0px;
}

#topbar a{
  font-size: 15px;
  padding: 0px;
}

#topbar i{
  font-size: 15px;
}
}

@media screen and (max-width: 400px){
#topbar a{
  font-size: 12px;
}
}

/*--------------------------MENU----------------------- */

#menu{
    display: flex;
    align-items: center;
    border-bottom: 3px solid gray;
    background-color: white;
    justify-content: space-between;
    padding: 0 5%;
  }
  
  @media screen and (max-width: 768px){
  #menu{
    padding: 0 2%;
  }
  }
  
  @media screen and (max-width: 400px){
    #menu{
      padding: 0 2%;
    }
    }
  
  #logo{
    width: 200px;
  }
  
  @media screen and (max-width: 768px){
    #logo{
      display: flex;
      width: 120px; 
      background-color: gainsboro;
    }
    }
  
    @media screen and (max-width: 400px){
      #logo{
        width: 100px;
      }
      }
  
  #links_menu{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    font-size: 20px;
  }
  
  
  #links_menu a{
  text-decoration: none;
  color: black;
  transition: all.2s ease-in-out;
  }
  
  @media screen and (max-width: 768px){
    #links_menu a{
      font-size: 14px;
    }
    }
  
  @media screen and (max-width: 400px){
  #links_menu a{
    font-size: 12px;
  }
  }
  
  button{
    background-color: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    display: none;
  }
  
  @media  screen and (max-width: 700px) {
    #links_menu {
      flex-direction: column;
      gap: 5px;
      align-items: unset;
      padding: 8px;
      transition: 0.5s;
      display: none;
    } 
  
    #menu{
      position: relative;
      text-align: center;
      display: flex;
      align-items: center;
      flex-direction: column;
      border-bottom: none;
      background-color: gainsboro;
    }
  
    button{
      display: flex;
      top: 0px;
    }
  
  }
  
  
  #nav_pag a{
  padding: 10px;
  background-color: rgb(16, 16, 110);
  border-radius: 10px;
  color: white;
  transition: all.3s ease-in-out;
  }
  
  @media screen and (max-width: 400px){
  #nav_pag a{
    padding: 5px;
    border-radius: 5px;
  }
  }
  
  button:hover{
    color: #0081FF;
  }
  
  #nav_ctt :hover{
  color: #0081FF;
  }
  
  #nav_prod :hover{
  color: #0081FF;
  }
  
  #nav_desc :hover{
    color: #0081FF;
  }

  #nav_app :hover{
    color: #0081FF;
  }

 /*--------------------------SLIDE----------------------- */

/* CONTAINER */
#content{
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}


/* GERAL */
#slides{
  display: flex;
  width: 400%;
}


input{
  display: none;
}


/* UNICO */
.slide{
  width: 25%;
  transition: .6s;
}

.slide img{
  width: 100%;
  height: 100%;
}


/* PASSAR SLIDE */
#slide1:checked ~ .s1{
  margin-left: 0;
}

#slide2:checked ~ .s1{
  margin-left: -25%;
}

#slide3:checked ~ .s1{
  margin-left: -50%;
}

#slide4:checked ~ .s1{
  margin-left: -75%;
}

/* BOTOES GERAL DIV CONTAINER */
#navigation{
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
}

/* BOTOES GERAL */
label{
  margin: 6px;
  padding: 5px 25px;
  border: 2px solid #0081FF;
  border-radius: 5px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  text-align: center;
  opacity: 0.3;
  user-select: none;
}

@media screen and (max-width: 600px){
  label{
      padding: 2px 15px;
  }
}

label p{
  font-family: 'inter', sans-serif;
  color: blue;
  font-size: 17px;
  font-weight: 600;
  transition: all .2s ease-in-out;
}

@media screen and (max-width: 600px){
  label p{
      font-size: 12px;
  }
}

label:hover{
  opacity: 1;
  background-color: white;
}

/* CHECKED COLOR */
#slide1:checked ~ #navigation #bar1{
  background-color: white;
}

#slide2:checked ~ #navigation #bar2{
  background-color: white;
}

#slide3:checked ~ #navigation #bar3{
  background-color: white;
}

#slide4:checked ~ #navigation #bar4{
  background-color: white;
}


 /*--------------------------SOBRE----------------------- */

 /* Sobre nós */
 #linha{
  display: flex;
  flex-flow: row wrap;
}

#esquerda{
  width: 50%;
  background-color: white; 
}

#container_e{
  padding: 100px 10px;
}

@media screen and (max-width: 450px){
  #container_e{
      padding: 10px;
  }
}

#esquerda h1{
  font-family: 'Montserrat';
  color: #0081FF;
  font-weight: 800;
  font-size: 400%;
}

@media screen and (max-width: 768px){
  #esquerda h1{
      font-size: 130%;
  }
}

#esquerda p{
  font-family: 'Montserrat';
  font-size: 150%;
}

@media screen and (max-width: 768px){
  #esquerda p{
      font-size: 70%;
  }
}

#direita{
  width: 50%;
  display: flex;
  background-color: #0081FF;
  justify-content: center;
}

#container_d{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



#direita img{
  width: 170px;
}

@media screen and (max-width: 768px){
  #direita img{
      width: 70px;
  }
}

#direita p{
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 250%;
  text-align: center;
  color: white;
}

@media screen and (max-width: 768px){
  #direita p{
      font-size: 110%;
  }
}


 /*-------------------------Nossos Produtos----------------------- */
 #produtos :hover{
  display: block;
  background-color: #4ea3f8;
 }

 #produtos{
  position: relative;
  top: -5px;
  text-align: center;
  background-color: rgb(46, 46, 255);
}

 #produtos a{
  padding: 10px;
  display: block;
  text-decoration: none;
  font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
font-size: 45px;
color: white;
transition: all.2s ease-in-out;
 }

 @media screen and (max-width: 768px){
  #produtos a{
    font-size: 25px;
  }
 }

   /*----------------------Footer----------------------- */
  
   footer{
    background-color: rgb(16, 16, 110);
    position: relative;
    top: -5px;
    padding: 20px 0;
    font-family: Arial, Helvetica, sans-serif;
  }

  footer h4{
    font-size: 30px;
    color: #0081FF;
  }

  @media screen and  (max-width: 500px){
    footer{
      padding: 10px 0;
    }

    footer h4{
      font-size: 18px;
    }
  }

  

  footer i{
    padding: 5px;
  }

  footer a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all.3s ease-in-out;
  }

  @media screen and  (max-width: 768px){
    footer a{
      font-size: 15px;
    }
  }
  
  li{
    list-style: none;
  }

  li :hover{
    opacity: 0.5;
  }

  #container_footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10%;
    align-items: center;
  }

  #medias_sociais i{
    font-size: 200%;
  }
  
  #medias_sociais{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: center;
    margin-top: 1%;
  }

  #medias_sociais img{
    width: 48px;
  }

  #medias_sociais :hover{
    opacity: 0.5;
  }

  @media screen and  (max-width: 768px){
    #medias_sociais img{
      width: 40px;
    }
  }

  @media screen and  (max-width: 768px){
    #medias_sociais{
      padding: 10px 0 0 0;
    }
  }
  
  /*-------------------------DIREITOS----------------------- */
  #direitos{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  
  #direitos p{
    font-size: 18px;
    color: black
  }
  
  @media screen and (max-width: 400px){
    #direitos p{
      font-size: 10px;
    }
  }

  @media screen and (max-width: 768px){
    #direitos p{
      font-size: 15px;
    }
  }
  
  #direitos a{
    padding: 3px;
    background-color: rgba(128, 128, 128, 0.452);
    text-decoration: none;
    font-size: 18px;
    color: black;
  }
  
  @media screen and (max-width: 400px){
    #direitos a{
      font-size: 10px;
    }
  }

  @media screen and (max-width: 768px){
    #direitos a{
      font-size: 15px;
    }
  }

  #svs :hover{
    background-color: blueviolet;
    font-size: 20px;
    transition: all.2s linear;
  }
  
  @media screen and (max-width: 400px){
    #svs :hover{
      font-size: 10px;
    }
  }
  
  @media screen and (max-width: 768px){
    #svs :hover{
      font-size: 15px;
    }
  }


  /*-------------------------BOTAO WPP----------------------- */

  #botao_wpp{
    position: fixed;
    right: 10px;
    bottom: 10px;
  }

  #botao_wpp img{
    width: 60px;
    transition: all.2s ease-in-out;
  }

  @media  screen and (max-width: 400px) {
    #botao_wpp img{
      width: 50px;
    }
  }
  

  #botao_wpp :hover{
    opacity: 0.8;
  }


  