@charset "UTF-8";
header {
  display: flex;
  position: fixed;
  z-index: 99;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  position: relative;
  width: 90%;
  margin: 0 auto;
  height: 100px;
}
header nav .logo {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #f0f0f0;
  background: #141414;
  border-radius: 15px;
}
header nav .logo::before {
  content: "{";
  font-size: 55px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #f0f0f0;
}
header nav .logo::after {
  content: "}";
  font-size: 55px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #f0f0f0;
}
header nav ul {
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
}
header nav ul.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 5px;
  background-color: rgba(255, 255, 255, 0.2); /* Cor branca com transparência */
  border-radius: 25px;
  backdrop-filter: blur(10px); /* Desfoque do fundo */
  -webkit-backdrop-filter: blur(10px); /* Para navegadores Safari */
}
header nav ul.menu li a {
  padding: 12px 20px;
  border-radius: 25px;
  color: #f0f0f0;
}
header nav ul.menu li a:hover {
  transition: 0.4s;
  color: black;
  background: #f0f0f0;
}
@media only screen and (max-width: 1150px) {
  header nav {
    position: static;
    display: flex;
    justify-content: center;
  }
  header nav .logo {
    font-size: 25px;
    width: 100%;
    justify-content: center;
  }
  header nav .logo::before, header nav .logo::after {
    font-size: 45px;
  }
  header nav ul {
    display: none;
  }
  header nav ul.menu {
    display: none;
  }
}
@media only screen and (max-width: 1150px) {
  header.active {
    position: static;
  }
  header.mobile {
    bottom: 0;
  }
  header.mobile nav ul.menu {
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  header.mobile nav ul.menu li a {
    padding: 10px 8px;
  }
}/*# sourceMappingURL=header.css.map */