/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo geral */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Cabeçalho */
header {
  background-color: #3b4a3f;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #3b4a3f;
  height: 8vh;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #00c851;
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list a {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-list a:hover {
  background-color: #00c851;
}

/* Seção principal de detalhes do evento */
main.evento-detail {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: justify;
}

main.evento-detail h2 {
  font-size: 2rem;
  color: #3b4a3f;
  margin-bottom: 20px;
}

main.evento-detail p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.informacoes-adicionais {
  margin-top: 30px;
}

.informacoes-adicionais h3 {
  color: #00c851;
  margin-bottom: 10px;
}

.informacoes-adicionais p {
  font-size: 1rem;
  margin: 5px 0;
}

.participar {
  margin-top: 30px;
  text-align: center;
}

/* Rodapé */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  margin-top: 150px; /* Ajustado para uma margem menor */
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-info h4,
.footer-social h4,
.footer-location h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c851;
}

.footer-location p {
  color: #fff;
}

.footer-info p {
  color: #555;
}

.footer-social a {
  color: #00c851;
  text-decoration: none; /* Corrigido */
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .nav-list {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-list li {
    margin: 10px 0;
  }

  main.evento-detail {
    padding: 15px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
