* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 90px;
}

/* .header,
.logo,
.header-nav__list {
  border: 1px solid red;
} */

.logo {
  margin: 0;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.logo,
.header-nav__list {
  margin: 0;
  display: flex;
  align-items: center; /* Centraliza verticalmente */
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  margin-right: 2rem;
  padding: 0.5rem 0;
}

.header-nav__list--btn__link {
  text-decoration: none;
  color: #1e1e1e;
  transition: color 0.3s ease;
  font-size: 16px;
  font-family: Montserrat;
}

.header-nav__list--btn__link:hover {
  color: #667;
}

.header-nav__submenu {
  display: none;
  flex-direction: column;
  width: 300px;
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-nav__submenu--li {
  list-style: none;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.header-nav__submenu--li:hover {
  background-color: #f5f5f5;
}

.header-nav__submenu--li__a {
  text-decoration: none;
  color: #1e1e1e;
  display: block;
  padding: 8px 0;
}

.header-nav__submenu.submenu-visible {
  display: flex;
}

.about-us-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.mobile-nav {
  display: none;
}

.responsive-btn {
  display: none;
  background-color: transparent;
  border: none;
  color: #1e1e1e;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  /* .header,
  .logo,
  .header-nav__list {
    border: 1px solid red;
  } */

  .header-nav__list {
    display: none;
  }

  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin-top: 30px;
  }

  .logo-img {
    object-fit: contain;
    width: auto;
  }

  .responsive-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    margin-left: auto;
    margin-right: 10px;
  }

  .responsive-btn .material-symbols-outlined {
    font-size: 24px;
    color: #333;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease-out;
    transform: translateX(100%);
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav__list {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .mobile-nav__list--btn {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav__list--btn__link {
    display: block;
    padding: 1rem 1.5rem;
    color: #1e1e1e;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
  }

  .mobile-nav__list--btn__link:hover,
  .mobile-nav__list--btn__link:active {
    background-color: #f5f5f5;
  }

  .mobile-nav__submenu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background-color: #f9f9f9;
  }

  .mobile-nav__submenu--li {
    padding: 0;
  }

  .mobile-nav__submenu--li__a {
    padding: 1rem 2rem;
  }
}
