/* GERAL */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf0;
  color: #000;
  font-size: 14px;
}

/* CABEÇALHO COMPACTO */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffaf0;
  /*padding: 10px 10px; /* Reduzido */
  border-bottom: 1px solid #e0e0e0;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px; /* Reduzido */
  max-width: 1000px;
  width: 100%;
  /*padding: 15px 15px; /* Reduzido */
}

header img {
  max-height: 65px; /* Reduzido */
}

.header-text h1 {
  font-size: 1.2em; /* Reduzido */
}

.header-text p {
  font-size: 0.9em; /* Se estiver usando */
}

/* MENU */
nav {
  background-color: #d4af37;
  padding: 10px 0;
  text-align: center;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* CONTEÚDO PRINCIPAL */
main {
  padding: 15px 30px;
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 5px;
}

/* RODAPÉ */
footer {
  background-color: #000;
  color: #d4af37;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9em;
}

/* Estilos para as seções */
section h2 {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  margin-bottom: 10px;
}

.event {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin: 20px 0;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event h2 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.event p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.event strong {
  font-weight: bold;
}

.container {
  padding: 0 20px;
}

.event p:first-of-type {
  font-weight: bold;
}
