@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&family=Sarala:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}


/* --- RESPONSIVO MENU --- */
@media (max-width: 920px){
  nav .menu-btn i{
      display: block;
  }
  nav ul{
      position: fixed;
      top: 80px;
      left: -100%;
      background-color: rgb(255, 191, 0);
      height: 100vh;
      width: 100%;
      text-align: center;
      display: block;
      transition: all 0.3s ease;    
  }
  nav ul.open{
      left: 0;
  }
  nav ul li{
      width: 100%;
      margin: 50px 0;
  }
  nav ul li a{
      font-size: 23px;

  }
  nav ul li a.active,
  nav ul li a:hover{
  background-color: rgb(255, 150, 0);
}
}
ul li ul.dropdown li{
  display: block;
}

ul li ul.dropdown{
  width: 20%;
  height: 160px;
  padding-top: 25px;
  margin-bottom: 10px;
  background-color: rgb(255, 191, 0);
  position: absolute;
  z-index: 999;
  display: none;
  margin-top: 10px;
  border-radius: 5px;
  
}

li.dropdown{
  margin-top: 5px;
}

ul li:hover ul.dropdown{
  display: block;
  
}

.titulo{
  margin-left: 90px;
  margin-top: 80px;
  font-size: 20px;
}

.descricao{
  font-weight: 300;
  font-style: normal;
  width: 40%;
  margin-top: 15px;
  margin-bottom: 5px;
  margin-left: 90px;
}

button{
  margin-top: 15px;
  border: none;
  background-color: rgb(255, 150, 0);
  width: 100px;
  height: 40px;
  padding: 5px;
  border-radius: 20px;
  margin-left: 90px;
}

.dropdown__menu{
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgb(255, 191, 0);
}

.dropdown__menu ul{
  display: block;
  margin: 10px;

}

.dropdown__menu ul li{
  width: 150px;
}