.body {
  display: flex;
  flex-direction: column;
  height: 100dvh;
}

.main {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 36%; 
  position: relative;
}

.sos-button {
  background-color: transparent;
  border: none;
  justify-content: center;
  padding: 0;
  width: 80%;
  max-width: 510px;
  display: flex;
  cursor: pointer;
  transition: transform 0.2s;
}

@keyframes blinkAndPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.blink-pulse {
  animation: blinkAndPulse 2.5s infinite ease-in-out;
}

.main-menu {
  align-items: center;
  background: linear-gradient(
    to right,
    var(--gradient-dark-purple),
    var(--gradient-light-purple)
  );
  border-radius: 50px 50px 0 0;
  bottom: 0;
  flex-direction: column;

  position: fixed;
  width: 100%;
  height: 18%;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  padding: 30px;
  transition: 400ms;
}

.menu-button {
  background-color: transparent;
  border: none;
  padding: 0;
  text-transform: uppercase;
  color: var(--text-color-white);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}

.menu-button-img {
  margin: 0 auto;
  height: 20px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 0 white); /* destaca o traço */
  transform: scale(1.2) rotate(270deg); /* aumenta o tamanho */
  transition: 300ms;
}

.main-menu-visibility {
  display: none;
}

.menu-banner-mobile {
  background-color: transparent;
  border: none;
  margin-bottom: 15px;
  height: 30%;
  width: auto;
  align-self: center;
}

.menu-banner-mobile-img {
  height: 100%;
  width: auto;
}

.menu-banner-desktop {
  display: none;
}

.container-menu {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.menu-options {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  background-color: var(--text-color-white);
  border: 1px solid var(--text-color-white);
  border-radius: 10px;
  padding: 0 14px;
  height: 53px;
  align-items: center;
  font-size: var(--font-size-button-main-menu);
  color: var(--primary-purple-color);
  font-weight: var(--font-weight-medium);
}

.options-div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.options-arrow {
  width: 10.41px;
  height: 20px;
  filter: drop-shadow(0 0 0 var(--primary-purple-color)); /* destaca o traço */
  transform: scale(1.2); /* aumenta o tamanho */
}

.rotate-arrow {
  transform: scale(1.2) rotate(90deg);
}

.open-menu-text {
  display: none;
}

.show {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.grow {
  height: 85%;
}

@media (min-width: 1024px) {
  .main {
    margin-top: 30px;
  }

  .main-menu {
    width: 74%;
    left: 50%;
    transform: translateX(-50%);
  }

  .sos-button {
    height: 50%;
  }

  .open-menu-text {
    font-size: var(--font-size-exit-button-desktop);
  }

  .main-menu-visibility {
    width: 95%;
    height: 100%;
  }

  .menu-banner-mobile {
    display: none;
  }

  .menu-banner-desktop {
    display: block;
    align-self: center;
    margin: 0;
    background-color: transparent;
    border: none;
    padding: 0;
    height: 60%;
  }

  .menu-banner-desktop-img {
    height: 100%;
    width: auto;
  }

  .menu-options {
    margin: 0;
    height: 53px;
  }

  .container-menu {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
  }

  .show {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
}

@media (min-width: 1440px) {
  .sos-button {
    height: 50%;
  }

  .grow {
    height: 80%;
  }

  .main-menu-visibility {
    width: 100%;
  }

  .menu-banner-desktop {
    height: 60%;
    max-height: 400px;
  }

  .container-menu {
    height: 60%;
    max-height: 400px;
  }
}
