body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* CABECERA */
.header img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: auto;
}

/* MENÚ */
.menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.btn {
  background: #602e91;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

/* CONTENIDO */
.container {
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* NOTA */
.nota {
  text-align: center;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.4;
}

/* EVENTOS */
.lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.evento {
  text-align: left;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

/* FECHA EN NEGRITAS */
.fecha {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

/* TEXTO NORMAL */
.evento p {
  margin: 2px 0;
  font-size: 14px;
}

/* POR CONFIRMAR */
.confirmar {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 8px;
  background: #602e91;
  border-radius: 5px;
  font-size: 12px;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

.footer a {
  color: #fff;
}