*{
  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_ctt 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_ctt a{
  padding: 5px;
  border-radius: 5px;
}
}

button:hover{
  color: #0081FF;
}

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

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

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

#nav_app{
  color: #0081FF;
}

/*----------------------BODY----------------------- */

body{
  background-color: rgba(71, 138, 189, 0.144);  
}

#titulo{
  text-align: center;
  font-size: 20px;
  font-family: 'inter', sans-serif;
  padding: 50px;
  background-color: #0081FF;
  color: white;
}

@media screen and (max-width: 600px){
  #titulo{
    font-size: 15px;
  }
}

#contatos{
  padding: 5% 0;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 970px){
  #contatos{
    align-items: center;
    flex-direction: column;
  }
}

#contatos a{
  text-decoration: none;
}

#contatos h4{
  color: rgb(16, 16, 110);
  font-family: 'inter', sans-serif;
  font-size: 20px;
}

#contatos i{
  padding: 10px;
  font-size: 50px;
  color: #0081FF;
  transition: all.2s ease-in-out;
}

#contatos p{
  font-weight: bold;
  font-size: 15px;
  font-family: 'inter', sans-serif;
  padding: 10px;
}

#container{
  display: flex;
  justify-content: center;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  width: 300px;
  height: 200px;
  align-items: center;
}

@media screen and (max-width: 500px){
  #container{
    width: 250px;
  }
}

#telefone h4{
  padding-bottom: 10px;
}

#telefone p{
  padding: 1px;
}

#compre img{
    width: 65px;
   padding: 0 5px;
   transition: all.2s ease-in-out;
}

#email :hover i{
  font-size: 55px;
  opacity: 0.5;
}

#telefone :hover i{
  font-size: 55px;
  opacity: 0.5;
}

#wpp :hover i{
  font-size: 55px;
  opacity: 0.5;
}


#localizaçao :hover i{
  font-size: 55px;
  opacity: 0.5;
}

#siga :hover i{
  font-size: 55px;
  opacity: 0.5;
}

#compre :hover img{
  width: 70px;
  opacity: 0.5;
}

   /*----------------------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;
    }
  }