.agenda-conteudo {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.agenda-conteudo h1 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
}

.agenda-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
  opacity: 0.8;
}

.agenda-inscricao {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.agenda-inscricao[hidden] {
  display: none;
}

.copiar-ical {
  flex-basis: 100%;
  background: none;
  border: none;
  color: var(--texto);
  opacity: 0.6;
  font-family: inherit;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.copiar-ical:hover {
  opacity: 1;
}

.agenda-inscricao .botao {
  font-size: 13px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.calendario {
  margin-bottom: 64px;
}

.calendario-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendario-topo h2 {
  font-size: 26px;
}

.calendario-topo button {
  background: none;
  border: 1px solid var(--menu-borda);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--texto);
  font-size: 20px;
  cursor: pointer;
}

.calendario-topo button:hover {
  border-color: #b3503d;
  color: #b3503d;
}

.calendario-grade {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.dia-semana {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  padding: 8px 0;
}

.dia {
  min-height: 68px;
  border: 1px solid var(--menu-borda);
  border-radius: 8px;
  padding: 8px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.dia.vazio {
  border: none;
  cursor: default;
}

.dia:not(.vazio):hover {
  border-color: #b3503d;
}

.dia.hoje {
  border-color: #b3503d;
}

.dia.selecionado {
  border-color: #b3503d;
  background-color: rgba(179, 80, 61, 0.14);
}

.dia.hoje .dia-numero {
  color: #b3503d;
  font-weight: 700;
}

.ponto-evento {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #b3503d;
}

.dia-detalhe {
  margin-bottom: 64px;
}

.dia-detalhe h2,
.proximas h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.evento {
  display: flex;
  gap: 20px;
  background-color: var(--menu-fundo);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.evento-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.evento-dia {
  font-family: "Baloo 2", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.evento-mes {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.evento-ano {
  font-size: 11px;
  opacity: 0.6;
}

.evento-info h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  margin: 0 0 6px;
}

.evento-info p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

.evento-adicionar {
  display: inline-block;
  margin-top: 10px;
  color: #b3503d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.evento-adicionar:hover {
  text-decoration: underline;
}

.aviso-agenda {
  text-align: center;
  padding: 32px 16px;
  opacity: 0.7;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .agenda-conteudo {
    padding: 40px 16px 60px;
  }

  .agenda-conteudo h1 {
    font-size: 32px;
  }

  .calendario-topo h2 {
    font-size: 20px;
  }

  .dia {
    min-height: 48px;
    padding: 5px;
    font-size: 12px;
    gap: 3px;
  }

  .ponto-evento {
    width: 7px;
    height: 7px;
  }

  .evento {
    padding: 16px;
    gap: 14px;
  }
}
