@charset "utf-8";

.top-menu {
    width: 100%;
    display: flex;
	flex-direction: column;
    padding: 1em 0;
    top: 0;
    left: 0;
	z-index: 900;
	position: fixed;
	background-color: rgba(000, 000, 000, 0.7);
	backdrop-filter: blur(10px);
}
.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;
  align-items: center;
}
.logo{
  width: 120px;
}
.menu-button {
  display: none;
  cursor: pointer;
  font-size: 23px;
  color: white;
  position: static;
}
.menu-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 900;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  background-image: url("../images/Menu-Background.jpg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}
.menu-dropdown.active {
  transform: translateY(0);
  opacity: 1;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 50px;
  cursor: pointer;
  color: white;
}
.menu-items {
  display: flex;
  align-items: center;
}
.menu-item {
  margin-right: 10px;
}
.menu-item a {
  text-decoration: none;
  padding: 10px;
  color: white;
}

/* Estilo do botão dropdown */
.custom-dropdown {
  position: relative;
}
.custom-dropdown .dropdown-button {
  cursor: pointer;
  display: block;
}
.custom-dropdown .dropdown-options {
  position: absolute;
  top: 150%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  min-width: 150px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-dropdown .dropdown-options li {
  padding: 10px;
}
.custom-dropdown .dropdown-options li a {
  text-decoration: none;
  color: #333;
  display: block;
}
.custom-dropdown .dropdown-options li a:hover {
  background-color: #f0f0f0;
}
.custom-dropdown.active .dropdown-options {
  display: block;
}

/* Estilos para o menu responsivo */
@media screen and (max-width: 1128px) {
  .menu-item-drop {
    margin: 20px 0;
	font-size: 17px;
  }
  .menu-item-drop a {
    text-decoration: none;
    padding: 10px;
    color: white;
  }
  .menu-items {
    display: none;
  }
  .menu-button {
    display: block;
    z-index: 800;
  }
  .margin-bt-resp{
	margin-top: 30px;
  }
}
@media only screen and (max-width: 900px) {
   .top-menu {
	  padding: 1em 0;
   }
   .container-menu {
	  width: 85%;
   }
}
@media only screen and (max-width: 600px) {
   .top-menu {
	  padding: 0.8em 0;
   }
   .logo{
	  width: 90px;
   }
}