/* Secretaria CSS */
body.fundo-pagina {
  background-color: #656161;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin: 0;
  padding: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 0;
}

header nav ul li a {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.15); /* Fundo branco transparente */
    color: white;
    border-radius: 25px;
    text-decoration: none;
    backdrop-filter: blur(5px); /* Efeito de vidro */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borda leve */
    transition: background-color 0.3s;
}

nav ul li a:hover {
  color: #0603b1;
  text-decoration: underline;
}

main {
  width: 100%;
  max-width: 600px;
  background-color: transparent;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 8px #000;
}


form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1rem;
}

form input[type="text"],
form select,
form textarea {
  width: 100%;
  padding: 7px 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

form textarea {
  min-height: 80px;
}

form button {
  background-color: #242bf6;
  border: none;
  color: white;
  padding: 10px 18px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0e06ea;
}

#listaSolicitacoes {
  list-style: none;
  padding-left: 0;
  max-height: 200px;
  overflow-y: auto;
  border-top: 1px solid #444;
  margin-top: 15px;
}

#listaSolicitacoes li {
  background-color: #404040;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

button#voltar {
  margin: 20px auto;
  display: block;
  background-color: #242bf6;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
}

button#voltar:hover {
  background-color: #1305d3;

.botao-lobby-redondo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1305d3;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  box-shadow: 0 0 8px #faf9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botao-lobby-redondo:hover {
  background-color: #0404b8;
}

.icone-lobby {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  main {
    max-width: 720px;
    padding: 25px 30px;
  }

  header h1 {
    font-size: 3rem;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  form button {
    font-size: 1.1rem;
    padding: 12px 22px;
  }

  #listaSolicitacoes {
    max-height: 300px;
  }
}

@media (min-width: 1024px) {
  main {
    max-width: 900px;
  }

  nav ul {
    gap: 30px;
  }

  form input[type="text"],
  form select,
  form textarea {
    font-size: 1.1rem;
  }

  #listaSolicitacoes li {
    font-size: 1rem;
    }
}
}
