
/* Evento - Centralização em forma de retângulo central */
.evento-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 30px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  color: #333;
}
