/* .fln-menu-active {
  visibility: visible !important;
  opacity: 1 !important;
}

.fln-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000d0d50;
  opacity: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  visibility: hidden;
  opacity: 0;
}

.fln-menu-content {
  background-color: var(--red);
  width: 360px;
  max-width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 50px 50px;
  border-radius: 0 20px 20px 0;
  box-sizing: border-box;
}

.fln-menu-closeBtn {
  background-color: var(--yellow);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0px 10px 10px #0000001a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: scale-down;
}

.fln-menu-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 30px;
}

.fln-menu-entrar {
  background-color: var(--white);
  border-radius: 10px;
  padding: 14px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.fln-menu-entrar img {
  filter: brightness(0);
  margin-right: 8px;
}

.fln-menu-entrar span {
  font-family: 'Poppins-Medium';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 18px;
  white-space: nowrap;
  color: var(--text-black);
}

.fln-menu-anunciar {
  border-radius: 10px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow);
  font-family: 'Poppins-Medium';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 18px;
  white-space: nowrap;
  color: var(--text-black);
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}

.fln-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.fln-menu-list-item {
  cursor: pointer;
  font-family: "Author-Medium", sans-serif;
  font-size: 22px;
  line-height: 24px;
  color: var(--white);
  text-decoration: none;
}

.menu-sociais {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
}

.menu-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {

  .fln-menu-entrar span,
  .fln-menu-anunciar {
    font-size: 12px;
    letter-spacing: -0.12px;
    line-height: 16px;
  }

  .fln-menu-list-item {
    font-size: 20px;
    line-height: 23px;
    white-space: nowrap;
  }

  .menu-sociais {
    margin-top: 50%;
  }

  .fln-menu-content {
    max-width: 292px;
    padding: 15px;
  }
} */