* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #7a0000;
  color: #ffffff;
}

.topo {
  text-align: center;
  padding: 30px 10px;
}

.topo img {
  max-width: 400px;
  height: auto;
  margin-bottom: 12px;
  width: 100%;
}

.topo h1 {
  font-size: 32px;
  color: #f3d3ab;
  margin-bottom: 8px;
}

.topo h2 {
  font-size: 16px;
  font-weight: 400;
  color: #ffd;
}

/* CONTAINER PRINCIPAL */
.principal {
  max-width: 1100px;
  margin: 0 auto 60px auto;
  padding: 0 10px 40px 10px;
}

/* FILTRO */
.filtro-container {
  margin: 25px 0 20px 0;
  display: flex;
  justify-content: center;
}

.filtro {
  display: flex;
  max-width: 600px;
  width: 100%;
}

.filtro select {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
  min-height: 40px;
}

.filtro button {
  border: none;
  padding: 0 22px;
  background: #ddba4a;
  color: #7a0000;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  min-height: 40px;
}

.filtro button:hover {
  filter: brightness(1.1);
}

/* CARDS DE DIA (ESTILO TIPO PETRÓPOLIS) */
.programacao {
  margin-top: 10px;
}

.card-dia {
  background: #7d0000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px 26px;
  margin-bottom: 14px;
}

.card-dia-inner {
  display: flex;
  align-items: stretch;
}

/* COLUNA DATA */
.card-dia-data {
  flex: 0 0 130px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-dia-data h2 {
  font-size: 52px;
  line-height: 6.5px;
  color: #f3d3ab;
  font-weight: 700;
}

.card-dia-data h2 span {
  font-size: 15px;
  font-weight: 400;
  margin-left: 0;
  color: #f3d3ab;
  text-transform: capitalize;
}

.card-dia-data h2 .mes {
  font-size: 15px;
  font-weight: 400;
  margin-left: 0;
  color: #f3d3ab;
}


/* COLUNA CONTEÚDO */
.card-dia-conteudo {
  flex: 1;
  padding-left: 30px;
}

.card-dia-conteudo hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 5px;
}

/* UMA “LINHA” DE EVENTO (LOCAL + ITENS) */
.day-event {
  display: flex;
  padding: 10px 0;
}

.day-event + .day-event {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* COLUNA LOCAL */
.event-local {
  flex: 0 0 30%;
  padding-right: 10px;
  font-weight: 600;
  color: #d87275;
  font-size: 14px;
}

/* COLUNA DETALHES (HORA + DESCRIÇÃO) */
.event-detalhes {
  flex: 1;
}

/* LINHAS INTERNAS: HORA | DESCRIÇÃO (item a item) */
.event-item {
  display: flex;
  padding: 3px 0;
  font-style: normal;
}

.event-hora {
  flex: 0 0 20%;
  font-size: 13px;
}

.event-desc {
  flex: 1;
  font-size: 13px;
  font-style: italic;
}

/* UMA “LINHA” DE EVENTO (LOCAL | HORA | DESCRIÇÃO) */
.day-event {
  display: flex;
  padding: 10px 0;
}

.day-event + .day-event {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* COLUNA LOCAL (ESQUERDA) */
.event-local {
  flex: 0 0 30%;
  padding-right: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* COLUNA DETALHES (HORA + DESCRIÇÃO) */
.event-detalhes {
  flex: 1;
}

/* LINHA INTERNA: HORA | DESCRIÇÃO */
.event-item {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
}

/* HORA CENTRALIZADA */
.event-hora {
  flex: 0 0 14%;
  font-size: 13px;
  text-align: center;
 /*  height: -webkit-fill-available;
  display: flex;
  justify-content: center;
  align-items: center; */
}

/* DESCRIÇÃO (TÍTULO + SUBITENS) */
.event-desc {
  flex: 1;
}

.event-desc-main {
  font-size: 17px;
  color: #ffffff;
}

.event-desc-obs {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .card-dia-inner {
    flex-direction: column;
  }

  .card-dia-data {
    margin-bottom: 10px;
  }

  .card-dia-conteudo {
    padding-left: 0;
  }

  .day-event {
    flex-direction: column;
  }

  .event-local {
    margin-bottom: 4px;
  }

  .event-item {
    flex-direction: row;
  }
}

.rodape {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 50px;
  padding: 0 1.5rem;
}
.rodape img {
  max-width: 600px;
  height: auto;
  margin-bottom: 12px;
  width: 100%;
}

.event-item.featured .event-desc-main {
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 0px 12px rgba(255, 225, 150, 0.5);
  font-size: 20px;
}

/* cssnow style starts here */
      .cssnow {
        pointer-events: none;
        position: absolute;
      }

      .cssnow span {
        display: block;
        background: #f3d3ab;
        border-radius: 50%;
        width: 9px;
        height: 12px;
        box-shadow: -100px -290px 0px -2px #fff5;
        rotate: 35deg;
        filter: blur(3px);
      }

      @keyframes cssnowflakes-fall {
        0% {
          top: -10%;
        }

        100% {
          top: 100%;
        }
      }

      @keyframes cssnowflakes-shake {
        0% {
          transform: translateX(0px);
        }

        50% {
          transform: translateX(80px);
        }

        100% {
          transform: translateX(0px);
        }
      }

      .cssnow span {
        position: fixed;
        top: -10%;
        z-index: 9999;
        animation-name: cssnowflakes-fall, cssnowflakes-shake;
        animation-duration: 10s, 3s;
        animation-timing-function: linear, ease-in-out;
        animation-iteration-count: infinite, infinite;
        animation-play-state: running, running;
      }

      .cssnow span:nth-of-type(0) {
        left: 1%;
        animation-delay: 0s, 0s;
      }

      .cssnow span:nth-of-type(1) {
        left: 10%;
        animation-delay: 1s, 1s;
        scale: 2;
      }

      .cssnow span:nth-of-type(2) {
        left: 20%;
        animation-delay: 6s, 0.5s;
      }

      .cssnow span:nth-of-type(3) {
        left: 30%;
        animation-delay: 4s, 2s;
      }

      .cssnow span:nth-of-type(4) {
        left: 40%;
        animation-delay: 2s, 2s;
      }

      .cssnow span:nth-of-type(5) {
        left: 50%;
        animation-delay: 8s, 3s;
        scale: 3;
      }

      .cssnow span:nth-of-type(6) {
        left: 60%;
        animation-delay: 6s, 2s;
        scale: 3;
        filter: blur(5px);
      }

      .cssnow span:nth-of-type(7) {
        left: 70%;
        animation-delay: 2.5s, 1s;
      }

      .cssnow span:nth-of-type(8) {
        left: 80%;
        animation-delay: 1s, 0s;
      }

      .cssnow span:nth-of-type(9) {
        left: 90%;
        animation-delay: 3s, 1.5s;
      }

      /* Snow ends, follow me on twitter @nodws */