/* From Uiverse.io by JulanDeAlb */
.hamburger {
  width: 53px;
  height: 45px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: black;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
  transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.menuMobile {
  position: fixed;
  bottom: -89vh;
  background-color: var(--cor-fundo);
  width: 100%;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  height: 0%;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 0rem 3rem;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all .3s ease-in-out;
  max-height: 80vh;
  gap: 4rem;
  border-top: 1rem solid white;
}

.menuMobile .navigation {
  padding: 0px;
}


.menuMobile .menuSection span {
  font-weight: 700;
  font-size: 1.3rem;
  display: ruby;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.133); */
  padding-bottom: .8rem;
}

.menuMobile .menuSection p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.616);
  width: 270px;
}

.menuMobile .menuSection .texto-gradiente {
  font-weight: 700;
}

.menuMobileToggle {
  height: 38rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 20rem;
  padding-left: 3rem;
  transition: all .3s ease-in-out;
  max-height: 87vh;
}

/* Estilização da scrollbar para melhorar aparência */
.menuMobileToggle::-webkit-scrollbar {
  width: 6px;
}

.menuMobileToggle::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.menuMobileToggle::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.menuMobileToggle::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.menuSection .contato {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.menuSection .contato i {
  color: white;
  background-color: black;
  padding: 5px 10px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.menuSection {
  border-bottom: 1px solid rgba(0, 0, 0, 0.061);
  padding-bottom: 3rem;
}

.menuGuiaSection {
  background-color: black;
  position: fixed;
  left: 0px;
  top: 4.5rem;
  width: 100%;
  height: 0vh;
  padding: 0rem;
  display: flex;
  align-items: normal;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.446);
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.menuGuiaSectionToggle {
  height: 80vh;
  padding: 7rem;
  transition: all 0.3s ease-in-out;
}

.menuGuiaSection span {
  font-weight: 700;
  font-size: 4rem;
  display: ruby;
  margin-bottom: 1rem;
  color: white;
  white-space: nowrap;
}

.menuGuiaSection p {
  width: 500px;
}

.menuGuiaSection .text {
  color: rgba(255, 255, 255, 0.446);
  white-space: nowrap;
}


.menuGuiaSection .navigation {
  display: flex;
  flex-direction: column;
  padding: 15px 0px;
}

.menuGuiaSection .navigation .text {
  border-left: 1px solid rgba(255, 255, 255, 0.392);
  padding-left: 5px;
  transition: all 0.3s;
}

.menuGuiaSection .navigation .text:hover {
  padding-left: 7px;
  color: white;
  transition: all 0.3s;
}

.closeMenu {
  background-color: rgba(255, 255, 255, 0.143);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.closeMenu:hover {
  transform: rotate(180deg);
  transition: all 0.3s;
}

.closeMenu i {
  padding: 8px 10px;
  font-size: 1rem;
  color: black;
}

#mais {
  cursor: pointer;
}