/* MENU CONTAINER */
#menu-container {
  position: fixed;
  top: 12%;
  left: 5%;
  width: 280px;
  max-height: 360px;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.6);
  z-index: 1000;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

/* LINKS DO MENU */
#menu-container a {
  color: #00ff99;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

#menu-container a:hover {
  background: rgba(0, 255, 150, 0.1);
  color: #ffffff;
  transform: scale(1.05);
}

/* BOTÃO DO MENU */
#menu-button {
  position: fixed;
  top: 15px;
  left: 15px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 1100;
  animation: pulse 4s infinite;
}

/* ÍCONES FLUTUANTES */
#whatsapp,
#instagram,
#youtube,
#tiktok {
  position: fixed;
  width: 60px;
  height: 60px;
  animation: pulse 2.5s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
  filter: drop-shadow(0 0 8px rgba(0,255,0,0.6));
}

#whatsapp   { bottom: 20px; right: 20px; }
#instagram  { bottom: 100px; right: 20px; }
#youtube    { bottom: 100px; left: 20px; }
#tiktok     { bottom: 20px; left: 20px; }

/* ANIMAÇÃO PULSE */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* RESPONSIVO */
@media screen and (max-width: 768px) {
  #menu-container {
    width: 80%;
    left: 10%;
    top: 12%;
  }

  #menu-container a {
    font-size: 1rem;
    padding: 6px 10px;
  }

  #menu-button {
    height: 40px;
    width: 40px;
    top: 10px;
    left: 10px;
  }

  #whatsapp, #instagram, #youtube, #tiktok {
    width: 48px;
    height: 48px;
  }
}
