body{
    background-color: #FFF;
}

*{
    font-family: 'Museo Sans Rounded', sans-serif;
    line-height: 125%;
    max-width: 100%;
}

span a{
    background:#2056A1;
    border-radius: 10px 10px 0 10px;
    display: block;
    padding: 15px 30px;
    float: left;
    color: #FFF;
    font-weight: 400;
    transition: 0.5s;
}

span a:hover{
    background: #339966;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.social span a{
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #EEE;
    color: #2056A1;
    margin-left: 5px;
    text-align: center;
}

.social span a:hover{
    background-color: #BEE3F7;
}

.social span a i{
    margin: 0;
}

/* Header */

header{
    width: 100%;
    padding: 15px 0 35px 0;
    background-color: #FFF;
    border-bottom: 1px solid #EEE;
    overflow: hidden;
}

header .logo{
    width: 200px;
    float: left;
    margin-top: 20px;
}

header .infos{
    width: 400px;
    float: right;
}

header .datas{
    width: 210px;
    color: #999;
    border: 0;
    padding: 0;
}

header .datas .dia{
    font-size: 22px;
    padding: 0;
    margin: 0;
}

.sticky{
    position: sticky;
    top: 0;
    z-index: 50;
}

.cores .verde{ flex-basis: 25%; height: 6px; background-color: #339966; }
.cores .azul{ flex-basis: 25%; height: 6px; background-color: #2056A1; }
.cores .vermelho{ flex-basis: 25%; height: 6px; background-color: #C92222; }
.cores .amarelo{ flex-basis: 25%; height: 6px; background-color: #F29F05; }

/* Navegação */

nav{
    width: 775px;
    margin: 10px 0 0 75px;
    float: left;
} 

#abre_menu{
    margin: 30px 0 0 40px;
    display: none;
    color: var(--azul);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    float: left;
}

nav li{
    font-size: 19px;
    font-weight: 500;
    padding: 25px 2px;
}

nav li a{
    color: #2056A1;
    display: block;
}

nav li a:hover{
    color: #C92222;
}

.barra{
    background: var(--verde);
    color: #FFF;
    padding: 25px 0;
}

.barra h1{
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
}

.barra .nome{
    flex-basis: 375px;
    font-size: 35px;
}

.barra .nome .menor{
    font-size: 21px;
}

.barra .nome .numero{
    font-size: 50px;
    font-weight: 600;
}

.barra .hashtags{
    color: #FFF;
    border: 1px solid #FFF;
    padding: 10px 20px;
    border-radius: 10px;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* Rodapé */

footer{
    overflow: hidden;
    background-color: #2056A1;
    margin-top: 75px;
    border-radius: 0 100px 0 0;
}

footer .interno{
    padding: 100px 0;
}

footer .logo{
    flex-basis: 200px;
}

footer h4 a{
    color: #FFF;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    display: block;
}

footer h4 a:hover{
    color: #F29F05;
}

footer ul li a{
    color: #FFF;
    font-weight: 400;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
}

footer ul li a:hover{
    color: #F29F05;
}

footer .col{
    flex-basis: 20%;
}

footer .cores{ width: 40%; float: right; }

.copyright{
    font-size: 14px;
    text-align: center;
    color: #FFF;
    margin-top: 50px;
}

.copyright .criacao{
    margin-top: 5px;
    font-weight: normal;
}

.copyright .criacao a{
    font-weight: bold;
    color: #FFF;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


:root {
  --azul: #2056A1;
  --brand-2: #8ad1ff;
}

/* =========================
   SLIDER GERAL
========================= */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.slider .slides {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s ease;
  width: 100%;
  will-change: transform;
}

.slider .slide {
  position: relative;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr min(720px, 48%);
  min-height: 480px;
  height: clamp(350px, 55vw, 400px);
  isolation: isolate;
  --img-col: 56%;
  background: none;
}

/* degradê lateral */
.slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - var(--img-col) + 15%);
  background: linear-gradient(
    90deg,
    #2056A1 0%,
    #2056A1 75%,
    rgba(32, 86, 161, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* texto */
.slider .info {
  display: grid;
  place-content: center;
  padding: clamp(20px, 3vw, 40px);
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}
.slider .info h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  margin-bottom: 0.35em;
}
.slider .info h5 {
  color: #e8f1ff;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.35;
  margin-bottom: 1.1em;
  opacity: 0.95;
}
.slider .info .cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: #2056A1;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.slider .info .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* imagem da direita */
.slider .media {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--foco-x, 60%) var(--foco-y, 50%);
  z-index: 0;
  overflow: hidden;
}

/* efeito de rolagem vertical na imagem */
.slider .media img-scroll {
  animation: imgScroll 20s ease-in-out infinite alternate;
}
@keyframes imgScroll {
  from {
    background-position: center top;
  }
  to {
    background-position: center bottom;
  }
}

/* setas */
.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  margin: 0 14px;
  z-index: 5;
  transition: background 0.3s;
}
.slider .prev:hover,
.slider .next:hover {
  background: rgba(0, 0, 0, 0.7);
}
.slider .prev { left: 10px; }
.slider .next { right: 10px; }

/* pontos */
.slider .nav-dots {
  text-align: center;
  position: absolute;
  bottom: 18px;
  width: 100%;
  z-index: 4;
}
.slider .nav-dots .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: #cfd9ea;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  opacity: 0.9;
  transition: background 0.3s;
}
.slider .nav-dots .dot.active {
  background: var(--brand-2);
}

/* =========================
   RESPONSIVO
========================= */
@media (min-width: 821px) {
  .slider .slide {
    grid-template-columns: 1fr var(--img-col);
  }

  .slider .media {
    animation: imgScroll 20s ease-in-out infinite alternate;
  }
}

@media (max-width: 820px) {
  .slider .slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 52vh;
    height: auto;
  }
  .slider .slide::before {
    height: 55%;
    width: 100%;
    background: linear-gradient(
      180deg,
      #2056A1 0%,
      #2056A1 75%,
      rgba(32, 86, 161, 0) 100%
    );
  }
  .slider .info {
    padding: 28px 18px 18px;
  }
  .slider .media {
    min-height: 52vh;
    animation: imgScroll 18s ease-in-out infinite alternate;
  }
  .slider .prev,
  .slider .next {
    display: none;
  }
}



/* Principal */

.principal .nome_section{
    overflow: hidden;
    color: #2056A1;
    text-align: center;
    font-size: 25px;
}

.principal .titulo{
    width: 300px;
    margin-right: 25px;
}

.principal .line1{
    font-size: 25px;
    color: #2056A1;
    line-height: 100%;
}

.principal .line2{
    font-size: 35px;
    color: #2056A1;
    font-weight: bold;
    margin-top: 10px;
    line-height: 100%;
}

.principal .num{
    background-color: #2056A1;
}

.principal .numeros{
    width: 800px;
}

.principal .numeros.d_flex{
    flex-wrap: nowrap
}

.principal .caixa{
    padding: 15px 25px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    margin: 0 5px;
}

.principal .caixa .numero{
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 5px;
}

.principal .caixa.cx1{
    background-image: linear-gradient(45deg, #F29F05, #C92222);
    border-radius: 10px 10px 0 10px;
}

.principal .caixa.cx2{
    background-image: linear-gradient(230deg, #F29F05, #C92222);
    border-radius: 10px 10px 10px 0;
}

.principal .caixa.cx3{
    background-image: linear-gradient(90deg, #F29F05, #C92222);
    border-radius: 10px 0 10px 10px;
}

.principal .caixa.cx4{
    background-image: linear-gradient(230deg, #F29F05, #C92222);
    border-radius: 0 10px 10px 10px;
}

.principal .datas{
    margin: 75px 0;
}

.principal .datas img{
    max-width: 500px;
    margin-right: 50px;
}

.principal .convite-patrocinador{
    margin: 75px 0;
    text-align: center;
    overflow: hidden;
}

.principal .convite-patrocinador span{
    width: 300px;
    margin: 0 auto;
    margin-top: 25px;
}

.principal .convite-patrocinador .linha1{
    color: #C92222;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 90%;
}

 
/* Notícias */

.noticias .leitura{
    width: 75%;
    margin: 0 auto;
    margin-bottom: -15px;
}

.noticias .primeira{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #EEE;
}

.noticias .leitura .publicado{
    font-size: 12px;
    margin: 15px 0;
}

.noticias .leitura h2{
    text-transform: none;
    font-weight: 600;
    font-size: 40px;
    margin: 0;
    letter-spacing: -1.5px;
    line-height: 110%;
    padding-right: 20%;
    color: #2056A1;
}

.noticias .leitura .manchete{
    font-size: 18px;
    color: #555;
    margin-top: 10px;
    padding: 0;
    padding-right: 20%;
}

.noticias .leitura .imagem-principal{
    background-color: #FAFAFA;
    text-align: center;
    background-repeat: repeat;
    margin-top: 35px;
    border-radius: 5px;
}

.noticias .leitura .imagem-principal img{
    width: 750px;
    max-width: 100%;
    border-radius: 5px;
}

.noticias .leitura .texto{
    margin-top: 25px;
    text-align: justify;
}

.noticias .leitura .texto a{
    color: #019645;
    font-weight: bold;
    text-decoration: underline;
}

.noticias .leitura .texto a:hover{
    color: #BF1717;
}

.noticias .leitura .galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
}

.noticias .leitura .galeria article{
    flex-basis: 19%;
    margin: 0 0.5%;
    padding: 0;
}


/* Programação */

:root {
  --azul: #2056A1;
  --azul-esc: #173e73;
  --verde: #339966;
  --cinza-0: #f9fafc;
  --cinza-1: #eef1f5;
  --cinza-2: #d9dee6;
  --texto: #1d2b3a;
  --texto-2: #51617a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.datas {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--cinza-2);
  background: #fff;
}
.datas .cada a {
  display: block;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--cinza-1);
  color: var(--azul);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.datas .cada-sel a {
  display: block;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  background-color: var(--verde);
  color: #FFF;
}
.datas .cada a:hover {
  background: #fff;
  box-shadow: 0 4px 10px rgba(32, 86, 161, 0.18);
}

.programacao .d_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.programacao .d_flex div{
    flex-basis: 48.5%;
}

.programacao .filter,
.programacao select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 5px;
  border: 1px solid var(--cinza-2);
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  margin-top: 5px;
}

.programacao .filtro{
  display:grid;
  grid-template-columns: 175px 1fr;
  gap: 0 20px;
  background:#fff;
  border:1px solid var(--cinza-2);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin:18px 0;
  overflow:hidden;
  transition:.2s ease;
}

.programacao .filtro:hover{ box-shadow:0 6px 20px rgba(32,86,161,.10); transform:translateY(-2px); }

.programacao .filtro .lateral{
  background: var(--azul);
  color:#fff;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.programacao .filtro .lateral i{ margin-right:6px; font-size:16px; }

.programacao .filtro .conteudo{
  padding: 16px 18px;
  display: grid;
  grid-template-rows: auto auto auto; /* título, descrição, local */
  row-gap: 8px;
  align-content: start;
}
.programacao .filtro .conteudo h3{
  margin: 0;
  font-size: clamp(15px,2vw,20px);
  color: var(--azul);
  font-weight: 500;
  line-height: 1.25;
}
.programacao .filtro .conteudo p{
  margin: 0;
  color: var(--texto-2);
  font-size: 15.5px;
  line-height: 1.45;
}
.programacao .filtro .conteudo .local{
  font-weight: 500;
  font-size: 14.5px;
}
.programacao .filtro .conteudo .ingresso a{
  background-color: var(--verde);
  color: #FFF;
  border-radius: var(--radius-sm);
  padding: 10px;
  display: block;
  float: left;
  margin-top: 7px;
}

.programacao .filtro .conteudo .local i{ color:var(--verde); margin-right:6px; }

/* Mobile: empilha mantendo as linhas da direita intactas */
@media (max-width: 600px){
  .programacao .filtro{ grid-template-columns: 1fr; }
  .programacao .filtro .lateral{
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  .programacao .filtro .conteudo{ padding:14px; }
}


/* Responsivo */
@media (max-width: 600px) {
  .programacao .filtro {
    flex-direction: column;
  }
  .programacao .filtro > div:first-child {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
  }
}



/* Quiz */

.item {
    border: 1px solid #DFE2F0;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 15px;
}

.item:last-child{
    margin-bottom: 0;
}

.title {
    background-color: #DFE2F0;
    color: #131D5E;
    padding: 20px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px
}

.toggle-symbol {
    font-size: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    color: #076AF1;
}

.description {
    padding: 20px;
    display: none;
    font-size: 15px;
}

.description span a{
    background-color: #076AF1;
    float: left;
    padding: 15px 20px;
    color: #FFF;
    font-size: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.item.active .description {
  display: block;
}

.quiz .item {
    box-shadow: #F0F2FA 0px 1px 0px, #F0F2FA 0px 8px 24px, #F0F2FA 0px 16px 48px;
}

.quiz .item .title {
    background-color: #FFF;
    color: #131D5E;
    padding: 15x;
    font-size: 15px;
}

.quiz .item .description {
    padding: 0 15px 15px 15px;
}



/* Box aviso de cookies */

.box-cookies.hide{
    display: none !important;
}

.box-cookies{
    max-width: 450px;
    position: fixed;
    padding: 25px;
    background-color:#025231;
    width: 100%;
    z-index: 998;
    bottom: 35px;
    left: 35px;
}

.box-cookies h2{
    margin-bottom: 10px;
    font-size: 18px;
    color: #FFF;
    font-weight: bold;
}

.box-cookies p{
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 10px;
    color: #FFF;
}

.box-cookies .btn-cookies{
    background: #FFF;
    padding: 10px 25px;
    cursor: pointer;
    align-self: normal;
    border: 0;
    color: #019645;
    margin-top: 5px;
    border-radius: 5px;
    font-weight: 500;
}