.agenda-home{
  margin: 32px auto;
  padding: 22px;
  max-width: 1180px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(99,102,241,.10), rgba(255,255,255,.0));
  border: 1px solid rgba(15,23,42,.08);
}

.agenda-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  margin-bottom:18px;
}
.agenda-head h2{
  margin:0;
  font-size: 26px;
  letter-spacing: -.3px;
}
.agenda-head p{
  margin:6px 0 0;
  color:#475569;
}

.agenda-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid rgba(15,23,42,.12);
  background:#0f172a;
  color:#fff;
  font-weight:600;
  transition:.15s ease;
}
.agenda-btn:hover{ transform: translateY(-1px); opacity:.95; }

.agenda-empty{
  padding:18px;
  border-radius:14px;
  background:#fff;
  border:1px dashed rgba(15,23,42,.18);
  color:#334155;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.agenda-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 1100px){
  .agenda-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .agenda-head{ align-items:flex-start; flex-direction:column; }
  .agenda-grid{ grid-template-columns: 1fr; }
}

.agenda-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:14px;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  transition:.15s ease;
  min-height: 190px;
}
.agenda-card:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(2,6,23,.08); }

.agenda-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.badge{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
  color:#fff;
  text-transform:uppercase;
}
.badge.outline{
  background: transparent;
  border:1px solid #cbd5e1;
  color:#334155;
  font-weight:800;
}

.agenda-card h3{
  margin: 6px 0 10px;
  font-size: 15px;
  line-height: 1.25;
  color:#0f172a;
}

.agenda-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#334155;
  font-size: 13px;
}
.meta-line{
  display:flex;
  gap:8px;
  align-items:center;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:#6366f1;
}
.pin{
  width:10px; height:10px; border-radius:3px;
  background:#0ea5e9;
}
.bolt{
  width:10px; height:10px; border-radius:3px;
  background:#f59e0b;
}
.agenda-desc{
  margin: 10px 0 0;
  color:#475569;
  font-size: 13px;
  line-height:1.35;
}

.map-link{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  text-decoration:none;
  font-weight:900;
}
.map-link:hover{opacity:.95}