.eventos-hero {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.evento-destaque {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.evento-destaque img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.eventos-lista {
  display: grid;
  gap: 20px;
}

.evento-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.evento-data {
  background: #0d6efd;
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  min-width: 70px;
}

.evento-data span {
  font-size: 1.4rem;
  font-weight: bold;
}

.badge {
  background: #dc3545;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}
/* =========================
   FILTROS DE EVENTOS
========================= */
.filtros-eventos {
  display: flex;
  gap: 10px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.filtros-eventos button {
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background: #e5e7eb;
  cursor: pointer;
  font-weight: 500;
}

.filtros-eventos button.ativo,
.filtros-eventos button:hover {
  background: #0d6efd;
  color: #fff;
}
/* =========================
   CALENDÁRIO
========================= */
.calendario {
  margin-bottom: 50px;
}

.calendario-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.calendario-header button {
  border: none;
  background: #0d6efd;
  color: #fff;
  font-size: 20px;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.calendario-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.dia {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  min-height: 80px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
}

.dia span {
  font-weight: bold;
}

.dia.tem-evento {
  border: 2px solid #0d6efd;
}

.dia.tem-evento::after {
  content: "•";
  color: #0d6efd;
  font-size: 24px;
  position: absolute;
  bottom: 8px;
  right: 10px;
}
