/*
  MENUSTYLE.CSS REFORMULADO
  Padrão: escuro + verde (#00c853)
  Tipografia: Inter
  Design leve e funcional
*/

:root {
  --verde: #00c853;
  --cinza: #121212;
  --branco: #ffffff;
  --fonte: 'Inter', sans-serif;
}

/* Botão do menu (ícone) */
#menu-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  height: 36px;
  cursor: pointer;
  z-index: 1002;
  animation: pulse 3s infinite ease-in-out;
}

/* Container do menu lateral */
#menu-container {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 1rem;
  width: 85%;
  max-width: 320px;
  background-color: var(--cinza);
  border: 1px solid var(--verde);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.3);
  padding: 1rem;
  gap: 0.5rem;
  z-index: 1001;
}

/* Estilo de cada link */
#menu-container a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--branco);
  background-color: transparent;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#menu-container a:hover {
  background-color: var(--verde);
  color: var(--cinza);
  transform: translateX(4px);
}

/* Ícones flutuantes (já estilizados no style.css) */
#whatsapp, #instagram, #youtube, #tiktok {
  position: fixed;
  width: 48px;
  height: 48px;
  z-index: 1000;
  animation: pulse 3s infinite;
  cursor: pointer;
}

#whatsapp { bottom: 80px; right: 20px; }
#instagram { bottom: 140px; right: 20px; }
#youtube { bottom: 200px; left: 20px; }
#tiktok { bottom: 80px; left: 20px; }

/* Animação sutil */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Responsividade */
@media screen and (max-width: 480px) {
  #menu-container {
    width: 90%;
    padding: 0.8rem;
    gap: 0.5rem;
  }

  #menu-container a {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
  }

  #menu-button {
    height: 30px;
    top: 0.8rem;
    left: 0.8rem;
  }

  #whatsapp, #instagram, #youtube, #tiktok {
    width: 40px;
    height: 40px;
  }
}
