.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  padding: 10px 0;
  background: #fff;
  font-family: Poppins, sans-serif;

  hr {
    height: 1px;
    border: 0;
    opacity: 1;
    background: #143b5c;
  }
}

.close-drop,
.close-drop2 {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 10vh;
  background: rgb(0 0 0 / 3%);
  transition: all 0.2s;
}

.logoMenu {
  height: 115px;
}
.linkMenu {
  font-size: 18px;
}

.openBtnsTelefone {
  padding: 5px 15px;
  border: 1px solid #143b5c;
  border-radius: 23px;
}

.btnTelefone {
  display: block;
  font-size: 13px;
  text-align: center;
}

.menu-mobile,
.menu-mobile2 {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.menu-mobile {
  transform: rotateY(180deg);
  transition: 0.4s ease-in-out;

  &.open .menu-hamburguer {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;

    &::before {
      transform: rotate(45deg) translate(35px, -35px);
    }
    &::after {
      transform: rotate(-45deg) translate(35px, 35px);
    }
  }
}

.menu-hamburguer,
.menu-hamburguer::before,
.menu-hamburguer::after {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #143b5c;
  transition: 0.4s ease-in-out;
}

.menu-hamburguer {
  position: relative;
  z-index: 1005;

  &::before,
  &::after {
    position: absolute;
    content: "";
  }

  &::before {
    transform: translateY(-8px);
  }
  &::after {
    transform: translateY(8px);
  }
}

.localizacao {
  position: relative;
  width: 41px;
  height: 41px;
  border: 1px solid #143b5c;
  border-radius: 100%;
  cursor: pointer;
  background: #fff
    url("../../img/icones/icone_location.svg") center /
    80% no-repeat;
  transition: ease-out 0.3s;
}

.linha-abaixo-hover {
  position: relative;
  transition: all 0.3s;

  &::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1.5px;
    border-radius: 5px;
    content: "";
    background: linear-gradient(90deg, #eee 0, #143b5c 100%);
    transition: ease-out 0.3s;
  }

  &:hover::before,
  &.active::before {
    width: 100%;
  }
}

@media (max-width: 1399px) {
  .logoMenu {
    height: 100px;
  }
  .linkMenu {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .logoMenu {
    height: 66px;
  }
  .linkMenu,
  .btnTelefone {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .openBtnsTelefone {
    position: relative;
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: #fff
      url("../../img/icones/icone_telefone.svg")
      center no-repeat;
    cursor: pointer;
    transition: ease-out 0.3s;
  }

  .btnsTelefone {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px !important;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
  }

  .btnTelefone {
    width: 160px;
  }

  .linksMobile {
    position: absolute;
    left: 0;
    display: none;
    flex-flow: column nowrap;
    width: 100%;
    max-height: calc(100vh - 86px);
    margin: 0;
    padding: 20px 0 0;
    overflow-y: auto;
    border-radius: 0 0 35px 35px;
    text-align: end;
    background: #fff;
    box-shadow: 0 4px 6px rgb(0 0 0 / 15%);

    .col-auto {
      padding: 10px 0;
    }
  }
}

@media (max-width: 576px) {
  .menu-mobile {
    width: 30px;
    height: 30px;
  }
}
