/*
  MENUSTYLE MODERNO
  Estilo para menu lateral flutuante com animações suaves
  Paleta: verde #00c853, cinza escuro #212121, branco
*/

#menu-container {
  position: fixed;
  top: 70px;
  left: 20px;
  width: 260px;
  background-color: #212121;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
  display: none;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  z-index: 1000;
  animation: surgimento 0.4s ease-out;
}

#menu-container a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  display: block;
  background-color: rgba(255, 255, 255, 0.05);
}

#menu-container a:hover {
  background-color: #00c853;
  color: #212121;
  transform: scale(1.02);
}

#menu-button {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.2s ease;
}

#menu-button:hover {
  transform: scale(1.1);
}

/* Ícones flutuantes */
#whatsapp, #instagram, #youtube {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 900;
  animation: pulse 3s infinite;
  cursor: pointer;
}

#whatsapp {
  bottom: 80px;
}

#instagram {
  bottom: 150px;
}

#youtube {
  bottom: 220px;
  left: 20px;
  right: auto;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes surgimento {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 480px) {
  #menu-container {
    width: 90%;
    left: 5%;
    padding: 1rem;
  }

  #menu-container a {
    font-size: 1rem;
    text-align: center;
  }

  #menu-button {
    width: 36px;
    height: 36px;
  }

  #whatsapp, #instagram, #youtube {
    width: 44px;
    height: 44px;
  }
}
