@charset "utf-8";
/* CSS Document */

.top-menu{
	width: 100%;
	display: flex;
	position: absolute;
	padding-top: 3em;
}
.container-menu{
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.menu{
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
.logo img{
 max-width: 200px;
 padding-left: 10px;
}
.menu-items {
  display: flex;
  align-items: center;
}
.menu-item {
  margin-right: 5px;
}
.menu-item a {
  text-decoration: none;
  padding: 7px;
  color: #dadada;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.menu-button {
  display: none;
  cursor: pointer;
  font-size: 31px;
  color: white;
  position: static;
}
.button-contact {
  padding: 15px;
  border: none;
  text-decoration: none;
  cursor:pointer;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-left: 15px;
  min-width: 300px;
}
.menu-dropdown {
  display: none;
}
.menu-item-drop {
  margin-left: 10px;
  padding-bottom: 15px;
}
.menu-item-drop a {
  text-decoration: none;
  padding: 10px;
  color: #dadada;
}

/* Estilos para o menu responsivo */
@media screen and (max-width: 1280px) {
  .logo img{
	padding-top: 7px;
  }
  .menu-dropdown {
    padding: 30px 0;
  }
  .menu-items {
	display: none;
  }
  .menu-button {
	display: block;
	z-index: 200;
  }
  .menu-dropdown.active {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
 	z-index: 300;
  }
  .button-contact{
	max-width: 220px;
	margin-left: 21px;
  }
}
