body.light-mode .menu-mobile-body {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #eee;
  height: auto;
  padding-top: 30px;
  padding-bottom: 40px;
  display: none;
  z-index: 999;
}

body.light-mode .box-link-menu-mobile{
  background: var(--dark);
  color: var(--dark);
  padding: 15px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
  border: 1px solid #ffffff0f;
}

body.light-mode .estilo-link-menu-mobile{
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff14;
}

body.light-mode .box-link-menu-mobile{
  background: var(--white);
  padding: 15px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
  border: 1px solid #ffffff0f;
}

body.light-mode .link-menu-mobile{
  font-family: var(--funnel);
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
}

body.light-mode .menu-mobile-a{
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  font-family: var(--funnel);
}


.menu-mobile-body{
 position: fixed;
  top: 60px; /* se quiser deixar abaixo de um cabeçalho fixo */
  left: 0;
  right: 0;
  background: #000;
  height: auto;
  padding-top: 30px;
  padding-bottom: 40px;
  display: none;
  z-index: 999; /* para ficar acima de tudo */

}

.link-menu-mobile{
  font-family: var(--funnel);
  font-weight: 400;
  color: var(--light);
  text-decoration: none;
}

.estilo-link-menu-mobile{
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff14;
}

.box-link-menu-mobile{
  background: #22212163;
  padding: 15px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
  border: 1px solid #ffffff0f;
}

.menu-mobile-a{
  font-size: 14px;
  color: var(--light);
  text-decoration: none;
  font-family: var(--funnel);
}

.submenu-mobile {
  display: none;
}

.hidden-mobile{
  visibility: hidden;
}

.hamburger {
  width: 39px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  float: right;
}


.hamburger span {
  width: 39px;
  height: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  float: right;
  width: 100%;
  background: var(--light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.oculta-menu-icon{
  display: none;
}


.icon-menu-mobile{
  width: 27px;
  margin-right: 4px;
  border-radius: 5px;
  display: block;
  margin-bottom: 9px;
}

/** Responsivo **/

@media (min-width: 300px) and (max-width: 767px) {
.icon-toggle {
  display: block;
  width: 20px;
  cursor: pointer;
  filter: invert(1);
  margin-left: -11px;
}

.hidden-mobile{
  visibility: visible;
}

.oculta-menu-icon{
  display: block;
}

}

@media (min-width: 768px) and (max-width: 1023px) {

.icon-toggle {
  display: block;
  width: 20px;
  cursor: pointer;
  filter: invert(1);
  margin-left: -11px;
}

.hidden-mobile{
  visibility: visible;
}
.oculta-menu-icon{
  display: block;
}

}

@media (min-width: 1024px) and (max-width: 1279px) {
.hidden-mobile{
  visibility: visible;
}
.oculta-menu-icon{
  display: block;
}
}

@media (min-width: 1280px) and (max-width: 1535px) {

}


@media (min-width: 1536px) {

}