/* Layout base */
body {
  margin: 0;
  padding: 0;
  background: url('../img/meu-fundo.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Botão hambúrguer */
.menu-toggle {
  position: fixed;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1100;
}

/* Menu lateral */
nav {
  position: fixed;
  top: 60px;
  right: 20px;
  background: rgba(0,0,0,0.9);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
}

nav a:hover {
  color: #ff0000;
}

/* Esconder menu */
.hidden {
  display: none;
}

/* Logo */
.logo {
  width: 200px;
  margin: 120px auto 24px auto;
  display: block;
}

/* Seções */
.section {
  display: none;
  padding: 24px;
  max-width: 760px;
  margin: 0 auto;
  flex: 1;
}

.section.active {
  display: block;
}

/* Títulos e textos */
h2 {
  font-size: 28px;
  color: #ff0000;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 20px;
}

/* Botões */
.button {
  background-color: #ff0000;
  border: none;
  color: white;
  padding: 16px 32px;
  font-size: 20px;
  border-radius: 10px;
  margin: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.button:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}

/* Ícones sociais */
.socials {
  margin-top: 24px;
}

.socials img {
  width: 50px;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.socials img:hover {
  transform: scale(1.2);
}

/* Lista */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 6px 0;
}

/* Rodapé */
footer {
  margin-top: auto;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
  background: rgba(0,0,0,0.6);
  text-align: center;
  border-top: 1px solid #444;
}

/* Formulário de contas */
#accounts form {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  max-width: 400px;
  margin: auto;
}

#accounts label {
  font-size: 16px;
  color: #fff;
}

#accounts input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
}

#accounts button {
  background-color: #ff0000;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  margin: 10px 5px 0 0;
  cursor: pointer;
}

#accounts button:hover {
  background-color: #cc0000;
}

#accountMessage {
  margin-top: 15px;
  font-size: 14px;
  color: #ffcc00;
}

/* Informações do servidor */
.server-info {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto 20px auto;
  color: #fff;
  font-size: 16px;
  text-align: left;
}

.server-info h2 {
  color: #ff0000;
  font-size: 24px;
  margin-bottom: 10px;
}

.server-info p {
  margin: 6px 0;
}

/* Nota de agradecimento */
.acknowledgment {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #ff0000;
  padding: 16px 20px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #eee;
  text-align: justify;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);   /* sombra para destacar */
  transition: transform 0.3s, box-shadow 0.3s;
}

.acknowledgment:hover {
  transform: scale(1.02);                   /* leve zoom ao passar o mouse */
  box-shadow: 0 6px 16px rgba(255,0,0,0.6); /* brilho vermelho */
}

.acknowledgment em {
  color: #ffcc00;
  font-style: normal;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.8); /* brilho dourado no título */
}

/* 📱 Ajustes para mobile */
@media (max-width: 600px) {
  .logo {
    width: 140px;
    margin-top: 140px;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
    padding: 0 16px;
  }

  .button {
    width: 90%;
    max-width: 500px;
    font-size: 18px;
    padding: 14px 24px;
  }

  .socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
  }

  .socials img {
    width: 40px;
    margin: 0;
  }

  .section {
    padding: 30px 12px;
  }

  ul li {
    font-size: 16px;
  }

  footer {
    font-size: 12px;
    padding: 16px;
  }

  .server-info {
    font-size: 14px;
    padding: 15px;
  }

  .acknowledgment {
    font-size: 14px;
    padding: 12px 16px;
  }
}