.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  color: #fff;
  margin-top: -35px;
  
  
}

.logo img {
  height: 250px;
  width: auto;
  /* margin-top: -35px; */
  margin-left: 155PX;
}

.nav-desktop {
  display: flex;
  gap: 30px;
}

.nav-desktop a {
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.nav-desktop a:hover {
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 45px; /* distância entre telefone e menu */
  
}


.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
}
.icon.instagram {
  width: 91px;
  height: 40px;
  background: linear-gradient(135deg, #eeeded, #fffefe);
  color: #a10d64;
  

  border-radius: 100px;
  transition: 0.4s;
}

.icon.instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(250, 248, 248, 0.35);
}

.icon.instagram:hover i {
  transform: scale(1.1);
}
/* ICONE WHATAPP */
.whatsapp {
   
  font-size: 22px;
}

/**/

.menu-toggle {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  margin-right: 40px;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.4s;
  ;
 
}
.menu-toggle:hover span {
  opacity: 0.8;
}



/* vira X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* MOBILE */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 100px 40px;
  gap: 25px;
  transition: 0.4s;
  z-index: 20;
  width: 500px;
}

.menu-mobile.active {
  right: 0;
}

.menu-mobile a {
 position: relative;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.menu-mobile a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6a1b9a, #c62828);
  transition: width 0.3s ease;
}

.menu-mobile a:hover::after {
  width: 100%;
}
/* RESPONSIVO */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 15;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
