/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fundo-pagina {
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  min-height: 100vh;
  padding-bottom: 0px;
}


.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #2a2a2a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
}

.container p {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
  color: #cccccc;
}

#listaEventos {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}

#listaEventos li {
  background-color: #222;
  border-left: 6px solid #1976d2;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 20px;
  color: #ffffff;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #333;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px;
}

form input:focus,
form textarea:focus {
  border-color: #1976d2;
  outline: none;
}

/* Botões */
.botoes-eventos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.botoes-eventos button {
  flex: 1 1 10%;
  padding: 12px;
  background-color: #1976d2;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.botoes-eventos button:hover {
  background-color: #1257a1;
}

.lobby-topo-direita {
  position: absolute;
  top: 10px;
  right: 10px;
}

.botao-lobby-redondo {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.icone-lobby {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.icone-lobby:hover {
  transform: scale(1.1);
}

/* Rodapé fixo */
footer {
  background-color: #111;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 10;
  width: 100%;
  z-index: 10;
}

footer button#voltar {
  background-color: #0712ae;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

footer button#voltar:hover {
  background-color: #02108c;
}

footer p {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .botoes-eventos {
    flex-direction: flex-start;
  }

  .botoes-eventos button {
    width: 50%;
  }

  .icone-lobby {
    width: 36px;
    height: 36px;
  }

  footer {
    padding: 15px 10px;
  }

  footer button#voltar {
    width: 23%;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.3rem;
  }

  .container p {
    font-size: 0.95rem;
  }

  .icone-lobby {
    width: 32px;
    height: 32px;
  }
}
