.menu {
  position: relative;
  height: 100dvh;
  width: 100%;
  background-color: #1d1d1d;
  z-index: 1000;
}
.menu .bg-img {
  position: absolute;
  opacity: 5%;
  background: url(/Grape/imgs/menu_bg.png);
  background-position: left;
  background-size: 80%;
  background-repeat: no-repeat;
  height: 100dvh;
  width: 100%;
  background-blend-mode: lighten;
  background-color: #1d1d1d;
}
.menu nav {
  font-family: "Lato";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  height: 100%;
  color: white;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.menu nav .row {
  height: 100%;
}

.menu nav .row .left-side {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
}

.menu nav .row .choose-language .lng {
  padding-left: 32px;
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #979797;
  position: relative;
  cursor: pointer;
}

.menu nav .row .choose-language .lng.active {
  color: white;
}

.menu nav .row .choose-language .lng .arrow {
  position: absolute;
  left: 0;
  top: 6px;
}

.menu nav .menu-contacts-info .contact {
  display: inline-flex;
  gap: 8px;
  text-decoration: none;
}

.menu nav .menu-contacts-info .contact .contact-number {
  display: flex;
  flex-direction: column;
}

.menu nav .menu-contacts-info .contact span {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  color: white;
}

.menu nav .row .right-side {
  align-content: space-around;
}

.menu nav .menu-pages ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu nav .menu-pages ul > li {
  font-size: 96px;
  font-weight: 700;
  line-height: 100%;
  text-align: right;
  color: #979797;
  list-style: none;
  cursor: pointer;

  position: relative;
}

a {
  color: #979797;
}
a:hover {
  color: white;
}

/* TEXTO */
.menu-pages li span {
  display: inline-block;
  transition: transform 0.5s ease;
}

/* HOVER */
.menu-pages li:hover .arrow-icon {
  opacity: 1;
}

.menu-pages li:hover span {
  transform: translateX(-80px); /* Empurrado para a esquerda */
}

/* SETA - já posicionada no lugar final, apenas invisível */
.menu-pages .arrow-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  margin-top: 12px;
}

.menu {
  position: fixed;
  top: -100vh;
  height: 100dvh;
  width: 100%;
  background-color: #1d1d1d;
  z-index: 1000;
  transition: top 1.2s ease;
}

/* Quando estiver ativo (ex: via JS) */
.menu.active {
  top: 0;
}

.btn-abrir,
.btn-fechar {
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu nav .menu-pages ul > li {
    font-size: 40px;
  }

  .menu nav .row .choose-language .lng {
    padding-left: 24px;
    margin-top: 8px;
    font-size: 20px;
  }

  .menu nav .row .choose-language .lng .arrow {
    width: 16px;
    height: 16px;
  }
      .menu nav .row {
        height: calc(100dvh - 94px);
        flex-direction: column-reverse;
        justify-content: space-between;
    }

  .menu-pages {
    margin-top: 42px;
  }
}
