/* ===== Agenda de shows ===== */

.events-section{
  padding: 70px 7%;
  background:#fff;
}

.events-title{
  font-size: 2.6rem;
  font-weight: 700;
  color:#222;
  margin: 0 0 24px 0;
}

.events-shell{
  max-width: 1200px;
  margin: 0 auto;
}

.events-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Cards */
.card{
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* ===== Calendário ===== */
.calendar{
  border:2px solid #0f7f86;     /* teal do site */
  overflow: hidden;
}

.cal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  background:#e8f5f7;           /* fundo claro que você usou */
}

.cal-month{
  font-weight:700;
  color:#1b2b2f;
}

.cal-nav{
  width:36px;height:36px;
  border:none;
  border-radius:12px;
  background:#0f7f86;
  color:#fff;
  font-size:18px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 4px 12px rgba(0,0,0,.18);
}
.cal-nav:hover{ transform:translateY(-1px); }

.cal-weekdays{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
  padding:12px 16px 0 16px;
  color:#6f7a7d;
  font-weight:600;
  font-size:.9rem;
  text-align:center;
}

.cal-days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
  padding:10px 16px 18px 16px;
}

.cal-day{
  display:flex;
  justify-content:center;
  align-items:center;
  height:44px;
  line-height:44px;
  border-radius:50%;
  color:#333;
  margin:0 auto;               /* centraliza a bolinha */
  width:44px;
}

.cal-day.other{ color:#c3c9cb; }     /* dias do outro mês */
.cal-day.today{ outline:2px solid #0f7f86; outline-offset:2px; border-radius:50%; }

.cal-day.has-event{
  background:#0f7f86;          /* bolinha teal nos dias com show */
  color:#fff;
}

/* ===== Recentes ===== */
.recent{
  padding:14px;
}

.recent-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 6px 6px 10px;
}

.recent-header h3{
  margin:0;
  font-size:1.3rem;
  color:#222;
}

.recent-list{
  margin-top:6px;
  max-height:400px;            /* terá barra de rolagem se passar disso */
  overflow:auto;
  padding:8px;
  background:#f8f9f9;
  border-radius:12px;
}

.recent-item{
  display:grid;
  grid-template-columns:8px 1fr;
  column-gap:14px;
  padding:14px 12px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  margin-bottom:10px;
}

.recent-item .bar{
  background:#0f7f86;
  border-radius:8px;
}

.recent-item .date{
  font-weight:800;
  color:#0a0a0a;
  margin-bottom:6px;
}

.recent-item .title{
  color:#505b5e;
}

/* ===== Responsivo ===== */
@media (max-width: 992px){
  .events-grid{ grid-template-columns: 1fr; }
  .recent-list{ max-height: 360px; }
}

@media (max-width: 576px){
  .events-title{ font-size:2.1rem; }
  .cal-weekdays{ gap:8px; }
  .cal-days{ gap:8px; }
  .cal-day{ height:40px; width:40px; }
  .recent-list{ max-height: 300px; }
}
