/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* =======================
   RESET E CONFIGURAÇÕES BASE
   ======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 0px;
}

/* =======================
   HEADER ESTILO FORNECIDO
   ======================= */
header {
  z-index: 100;
  width: 100%;
  background-color: #004080;
  color: white;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10pt;
  position: sticky;
  top: 0;
  left: 0;
}

header > a {
  text-decoration: none;
  color: white;
}

.logoMarca {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.logoMarca > h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logoMarca > h3 > a {
  color: white;
  text-decoration: none;
}

.logoMarca > h3 > a:nth-child(1) {
  opacity: 0.6;
}

.logoMarca > h4 {
  font-size: 10pt;
  opacity: 0.6;
  font-weight: 300;
}


.container {
  max-width: 960px;
  margin: 0 auto;
}

.eventos-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.evento-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.evento-card:hover {
  transform: translateY(-6px);
}

.evento-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 50% 5%;
}

.evento-conteudo {
  padding: 20px;
}

.evento-conteudo h2 {
  font-size: 22px;
  color: #0073e6;
  margin-bottom: 10px;
}

.data-local {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.descricao {
  font-size: 15px;
  margin-bottom: 15px;
}

.btn-evento {
  border: none;
  text-decoration: none;
  background-color: #0073e6;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-evento:hover {
  background-color: #005bb5;
}

.rodape {
  text-align: center;
  padding: 20px;
  background: none;
  font-size: 14px;
}
