<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.agenda {
  padding-top: 45px;
}

.agenda #load-more-events {
  margin: auto;
  position: relative;
  display: block;
  transition: 0.2s ease-in-out;
}

#load-more-events:hover {
  cursor: pointer;
  box-shadow: 0 0 5px #1c1c1c45;
}
.agenda h3 {
  transform: none;
  width: 100%;
  margin: 45px 0;
  color: var(--branco);
}

.event {
  margin-bottom: 30px;
}

.passado {
  opacity: 0.5;
  transition: 0.5s ease-in-out;
}

.passado:hover {
  opacity: 1;
}

.agenda h3 span {
  font-weight: 300;
  float: right;
}

.agenda h5 {
  padding: 0 20px;
}

.agenda .event-name {
  padding: 10px 20px;
  background-color: var(--vermelho1) !important;
}

.contraste .agenda .event-name {
  background-color: var(--cinza) !important;
}

#eventos-desktop {
  display: none;
}

.category-list {
  display: none;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 38px;
}

.contraste .category-list {
  display: none;
}

.category-list li {
  margin-bottom: 10px;
}
.category-list li span {
  height: 19px;
  display: block;
  width: 19px;
  float: left;
  margin-right: 10px;
}

#popup-container {
  position: fixed;
  z-index: 2;
  background-color: var(--branco);
  width: 100vw;
  left: 0;
  top: 70px;
  transition: 0.5s ease-in-out;
  -webkit-animation: 0.5s ease-in-out;
  -webkit-transform: translateX(100vw);
  height: calc(100vh - 70px);
  overflow-y: scroll;
}

#popup-container.open {
  -webkit-transform: translateX(0);
}

#close-popup {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  border: 2px solid var(--preto);
  line-height: 0;
  background-color: transparent;
}

#close-popup:hover {
  cursor: pointer;
}

#close-popup img {
  width: 15px;
}

#popup-container h3 {
  margin: 0;
  color: var(--preto);
  background-color: var(--vermelho1) !important;
}

.contraste #popup-container h3 {
  background-color: var(--cinza) !important;
}

#popup-container .imagem {
  line-height: 0;
}

#popup-container .slick-slider {
  margin: 0;
}

#popup-container .data {
  background-color: var(--preto);
  color: var(--branco);
  margin: 0;
  padding: 10px 25px;
  text-transform: uppercase;
  font-weight: 500;
}

#popup-container .data span {
  float: right;
}

#popup-container .conteudo {
  margin: 0 25px;
}

.month-navigation {
  display: none;
}

@media screen and (min-width: 700px) {
  .agenda #load-more-events {
    display: none;
  }
  #eventos-mobile {
    display: none;
  }
  #eventos-desktop {
    display: block;
  }

  #eventos-desktop h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    padding-left: 60px;
  }

  .agenda h3 span {
    float: none;
    margin-left: 30px;
  }

  .month-navigation {
    display: block;
    position: absolute;
    width: calc(100% - 360px);
    display: flex;
    justify-content: space-between;
    top: 78px;
    transform: translateY(-50%);
  }

  .month-navigation button {
    background-color: transparent;
    color: var(--verde);
    font-size: 26px;
    padding: 3px 15px;
  }
  .month-navigation button:hover {
    cursor: pointer;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(
      7,
      1fr
    ); /* 7 columns for the days of the week */
    background-color: #bcbcbc;
    grid-gap: 1px;
  }

  .days-of-week {
    grid-column-start: 1;
    grid-column-end: 8;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--preto);
    border-top: 0.5px solid var(--branco);
    color: var(--branco);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
  }

  .days-of-week::before {
    content: "";
    position: absolute;
    bottom: -1px; /* Adjust the position to align with the grid gap */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--preto);
  }

  @media screen and (min-width: 1200px) {
    .calendar-day {
      height: calc((100vw - 336px) / 8);
    }
  }

  .calendar-day {
    position: relative;
    background-color: var(--branco);
    height: calc(190px - (5vw));
  }

  .calendar-day h5:has(+ .event) {
    color: var(--branco);
  }

  .contraste .calendar-day h5:has(+ .event) {
    color: var(--preto);
  }

  .contraste .event {
    background-color: var(--cinza) !important;
  }

  .calendar-day h5 {
    margin: 0;
    position: absolute;
  }

  .calendar-day h5,
  .event {
    padding: 10px;
  }

  .event {
    margin-bottom: 0;
    padding-top: 35px;
    padding-bottom: 0;
    height: 100%;
    background-color: var(--vermelho1) !important;
  }

  .event a {
    font-size: 13px;
    font-weight: 600;
    display: block;
  }

  .category-list {
    /* display: flex; */
    display: none;
    justify-content: flex-end;
    column-gap: 35px;
  }

  #popup-container {
    right: 0;
    left: auto;
    width: 40vw;
    top: 90px;
    height: calc(100vh - 90px);
  }

  #popup-container h3 {
    padding-right: 30px;
  }
  #popup-background {
    transition: 0.5s ease-in-out;
    -webkit-animation: 0.5s ease-in-out;
    -webkit-transform: translateX(-60vw);
    height: calc(100vh - 90px);
    width: 60%;
    background-color: #1c1c1c40;
    top: 90px;
    left: 0;
    position: fixed;
    z-index: 1;
    opacity: 0;
  }

  #popup-background.open-background {
    opacity: 1;
    -webkit-transform: translateX(0vw);
  }

  .calendar-nav {
    text-align: center;
    margin-bottom: 20px;
  }

  .calendar-nav a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
}
</pre></body></html>