/* =========================
   BASE
========================= */
body {
  margin: 0;
  background: radial-gradient(circle at top, #0f172a, #020617);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
}

/* =========================
   CONTENEDOR
========================= */
#wraper-agenda {
  max-width: 980px;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(180deg, #0b1220, #020617);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
}

/* =========================
   HEADER
========================= */
.agenda-header {
  text-align: center;
  margin-bottom: 30px;
}

#title-agenda {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: .5px;
}

.agenda-subtitle {
  margin-top: 8px;
  font-size: 1rem;
  color: #86efac; /* VERDE SUAVE */
}

/* =========================
   LISTA
========================= */
.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================
   EVENTO
========================= */
.agenda-list > li {
  background: linear-gradient(90deg, #020617, #020617);
  margin-bottom: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s ease;
}

.agenda-list > li:hover {
  border-color: #22c55e;
  background: linear-gradient(90deg, #020617, #041b12);
  transform: translateY(-2px);
}

/* =========================
   FILA EVENTO
========================= */
.agenda-list > li > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =========================
   HORA
========================= */
.agenda-list time {
  min-width: 72px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 900;
  color: #022c22;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 7px 12px;
  border-radius: 10px;
}

/* =========================
   ICONO
========================= */
.agenda-list img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

/* =========================
   TEXTO EVENTO (CLARO)
========================= */
.agenda-list span {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc; /* BLANCO REAL */
  line-height: 1.45;
}

/* =========================
   SUBMENÚ
========================= */
.agenda-list ul {
  list-style: none;
  margin-top: 16px;
  padding-left: 10px;
  display: none;
}

/* =========================
   CANAL (PREMIUM)
========================= */
.agenda-list ul li {
  background: linear-gradient(90deg, #020617, #0f172a);
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(34,197,94,.25);
  transition: all .25s ease;
}

.agenda-list ul li:hover {
  background: linear-gradient(90deg, #052e16, #022c22);
  border-color: #22c55e;
}

/* =========================
   LINK CANAL
========================= */
.agenda-list ul li a {
  color: #bbf7d0; /* VERDE CLARO */
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ICONO PLAY */
.agenda-list ul li a::before {
  content: "▶";
  color: #22c55e;
  font-size: .9rem;
}

/* =========================
   EVENTO ACTIVO
========================= */
.agenda-list > li.active {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34,197,94,.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  #wraper-agenda {
    padding: 18px;
    margin: 20px auto;
  }

  #title-agenda {
    font-size: 1.6rem;
  }

  .agenda-list span {
    font-size: .95rem;
  }

  .agenda-list time {
    min-width: 58px;
    font-size: .95rem;
  }
}
