* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'AcciaPiano';
    src: url('../fonts/AcciaPiano.otf') format('opentype');
}

button {
    font-family: 'AcciaPiano', sans-serif;
}

body {
    font-family: 'AcciaPiano', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.header-container {
    background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 3) 0%,
    rgba(0, 0, 0, 0) 100%);
    width: 100%; /* Ou outra cor de fundo */
    padding: 10px 20px;
    box-sizing: border-box;
    top: 0;
    position: fixed;
    z-index: 1000;
}
    
/* Conteúdo do header com flexbox */
.header-content {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 10px;
    
}

.header-content {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-container {
    width: 100%;
    max-width: 180px;
    height: auto;
    max-height: 80px;
}


/* Main Content */
.main-container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.content-wrapper {
    max-width: 1364px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: reveal 1.5s ease-out;
}


/* Estilo geral para títulos */
h1, h2, h3, h4 {
    color: #ff3c00; /* Cor base laranja */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

p {
    font-size: 0.9em;
}


/* Definindo a animação para a hero-section */
@keyframes reveal {
    0% {
        clip-path: inset(50% 50% 50% 50%); /* Começa oculto */
        opacity: 0; /* Começa invisível */
    }
    50% {
        clip-path: inset(0% 50% 0% 50%); /* Revela o meio */
        opacity: 1; /* Fica visível */
    }
    100% {
        clip-path: inset(0); /* Revela completamente */
        opacity: 1; /* Mantém visível */
    }
}

/* Definindo a animação para o brilho azul */
@keyframes shine {
    0% {
        text-shadow: 0 0 5px rgb(255, 60, 0, 0.5), 0 0 10px rgb(255, 60, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgb(255, 60, 0, 1), 0 0 30px rgb(255, 60, 0, 1);
    }
    100% {
        text-shadow: 0 0 5px rgb(255, 60, 0, 0.5), 0 0 10px rgb(255, 60, 0, 0.5);
    }
}

/* Aplique a animação à hero-section */
.hero-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    padding: 90px 0;
    text-align: center;
    margin-bottom: 90px;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    position: relative;
}

/* Título principal (Bem-vindo) */
.hero-section h1 {
    font-size: 3.5em;
    margin-top: 90px;
    margin-bottom: 20px;
    color: #ff3c00;
    font-weight: 900;
    font-family: 'AcciaPiano', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    animation: shine 1.5s ease-in-out 1.5s forwards;
}

.hero-section p {
    font-size: 1.8em;
    color: #fff;
    margin-top: 20px;
    font-weight: 500;
    letter-spacing: 1.2px;
}

/* Animação de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.organiza-resumo {
    display: flex;
    align-items: stretch; /* Faz os filhos terem a mesma altura */
    margin-bottom: 40px;
    gap: 10px; /* espaçamento entre imagem e texto */
}

.event-image {
    flex: 0 0 50%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.resumo-container {
    flex: 0 0 50%;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resumo {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}


.resumo-date {
    color: #fff;
    margin-bottom: 20px;
}

.resumo ul {
    list-style-position: inside;
    color: #ddd;
}
/* Título da primeira seção*/
.resumo h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ff3c00;
    text-align: left;
    text-transform: uppercase;
}

/* Título do card*/
.resumo h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ff3c00;
    text-shadow: none;
}
/*subtítulo do card*/
.resumo h4 {
    color: #ff3c00;
    font-size: 1.2em;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.resumo p{
    list-style-position: inside;
}

.drops-list {
    list-style-position: inside;
    color: #ddd;
    font-size: 10px;
}

.info-style {
    padding: 90px 0px;
    margin-bottom: 20px;
}

.info-style h2 {
    font-size: 2.2em; /* Reduz o tamanho do título */
    margin-bottom: 50px; /* Espaçamento abaixo do título */
    text-align: center; /* Centraliza o texto */
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.info-container {
    display: flex; /* Usando flexbox para alinhar os itens */
    justify-content: space-around; /* Espaçamento entre os itens */
}

.info-item {
    flex: 1; 
    margin: 10px;
    background-color: #000000b3;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ff3c00;
}

.info-item h3 {
    font-size: 1.4em;
    color: #ff3c00;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

.info-item h4 {
    font-size: 1.4em;
    color: #ff3c00;
    margin: 10px 0px;
    line-height: 1.2;
    font-weight: 500;
}

.info-item p {
    color: #fff; /* Cor do subtítulo */
    margin-bottom: 5px; /* Espaçamento abaixo do subtítulo */
    text-align: center;
    font-weight: 500;
    padding: 0px 20px;
}

.destaque {
    color: #ff3c00;
}

/* Remove o marcador padrão do summary */
summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Alinha o conteúdo e o marcador nas extremidades */
    position: relative;
    padding-right: 30px; /* Adiciona espaço à direita para o marcador */
}

/* Ícone personalizado */
summary::before {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #ff3c00;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Quando aberto, muda o ícone para "–" */
details[open] summary::before {
    content: "–";
}

.new-additional-info {
    padding: 90px 0px;
    border-radius: 10px; /* Bordas arredondadas */
    margin: 20px 0; /* Margem superior e inferior */
}

.new-additional-info h2 {
    font-size: 2.2em; /* Tamanho do título */
    color: #ff3c00; /* Cor do título */
    margin-bottom: 50px; /* Espaçamento abaixo do título */
    text-align: center; /* Centraliza o título */
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.new-additional-info p {
    color: #fff; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
}

.new-info-container {
    display: flex; /* Usando flexbox para alinhar os itens */
    gap: 20px;
    justify-content: space-between; /* Espaçamento entre os itens */
    margin-top: 30px;
    
}

.new-info-container img {
    width: 500px;
    height: auto;
    border-radius: 10px;
}

.new-info-item {
    flex: 1;
    background-color: #000000b3; /* Fundo semi-transparente */
    border: 1px solid #ff3c00;
    padding: 20px; /* Espaçamento interno */
    border-radius: 8px; /* Bordas arredondadas */
    color: #fff; /* Cor do texto */
    margin-bottom: 40px;
    margin-top: 10px;
}

.new-info-item h3 {
    font-size: 1.4em; /* Reduz o tamanho do subtítulo */
    color: #ff3c00; /* Cor do subtítulo */
    margin-bottom: 10px; /* Espaçamento abaixo do subtítulo */
    text-align: center;
}

.new-info-item p {
    color: #fff; /* Cor do subtítulo */
    margin-bottom: 10px; /* Espaçamento abaixo do subtítulo */
    text-align: justify;
}

.dropdowns-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}


.dropdown {
    position: relative;
}

.dropdown-toggle {
    padding: 0.5rem 1rem;
    cursor: pointer;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ff3c00;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 1.1em;
}
.dropdown-toggle:hover {
    background-color: #00000079;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: #ff3c00;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    z-index: 10;
}

.dropdown-menu .dropdown-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: white;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #b11b00;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.sub-section, .sub-sub-section {
    display: none;
    padding: 10px;
    margin-top: 10px;
}

.sub-section.active, .sub-sub-section.active {
    display: block;
}

.section-style {
    border-radius: 10px; /* Bordas arredondadas */
    padding: 20px 0;
    margin-bottom: 20px;
}

.section-style h2 { /* Tamanho do título */
    font-size: 2.3em; /* Tamanho do título */
    margin-bottom: 10px; /* Espaçamento abaixo do título */
    text-align: center; /* Centraliza o texto */
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.section-style h3 { /* Tamanho do subtitulo Recompensa */
    font-size: 1.5em; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
    margin-top: 5px; /* Espaçamento acima do subtitulo */
    margin-bottom: 10px; /* Espaçamento abaixo do subtitulo */
}


.section-style h5 {
    font-size: 1.0em; /* Tamanho do parágrafo */
    color: #ff3c00;/* Cor do texto */
    padding: 0px 0px 20px 0px;
    text-align: center;
    font-weight: 500;
}

.section-style p {
    font-size: 0.9em; /* Tamanho do parágrafo */
    color: #bbb;
}

.section-style ul {
    display: flex; /* Usando flexbox para alinhar os itens da lista */
    list-style: none; /* Remove os marcadores da lista */
    justify-content: center; /* Centraliza os itens na lista */
    margin-bottom: 30px;
    padding: 20px;
}

.section-style li {
    text-align: center;
    flex-direction: column; /* Alinha os itens em coluna */
    min-width: 200px;
    height: auto; /* Permite que a altura se ajuste ao conteúdo */
    margin: 0 10px; /* Espaçamento entre as boxes */
    border: 1px solid #ff3c00;
    border-radius: 10px;
    padding: 5px; /* Adiciona padding para espaçamento interno */
    background-color: #000000b3;
}

.info-card{
    padding: 10px;
    margin-top: auto;
}

.info-card p{
    text-align: left;
}

.info-card h6 {
    font-size: 1em; /* Tamanho do parágrafo */
    color: #bbb; /* Cor do texto */
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.recompensa-container {
    margin-top: 25px;
    display: flex;
    gap: 50px;
    align-items: stretch; /* Garante que todos os filhos tenham a mesma altura */
}

.recompensa-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recompensa-final {
    background: linear-gradient(to bottom, #00000000, #ff3c00bf);
}

.section-style img {
    max-width: 110px; /* Garante que a imagem não ultrapasse o tamanho do item */
    max-height: 110px; /* Garante que a imagem não ultrapasse o tamanho do item */
    box-sizing: border-box; /* Garante que o padding e a borda sejam incluídos nas dimensões totais */
}

.tab {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    background-color: transparent;
    border-radius: 30px;
    border: 1.5px solid #ff3c00;
    transition: 0.3s;
}

.tab:hover {
    background-color: #00000079;
}

.tab.active {
    background-color: #ff3c00;
    color: white;
}

.lista-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lista-container .carrossel-wrapper {
    padding: 0px; /* ou qualquer outro estilo que você queira aplicar */
    max-width: 100%;
}

.lista-container h4 {
    font-size: 1.1em; /* Tamanho do parágrafo */
    color: #ffffff; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
    margin-top: 40px; /* Espaçamento acima do subtitulo */
    margin-bottom: 20px; /* Espaçamento abaixo do subtitulo */
    font-weight: 500;
}

.carrossel-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
}

.btn-nav {
    background-color: #00000079;
    color: #ff3c00;
    border: 1.5px solid #ff3c00;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

ul.carrossel {
    list-style: none;
    margin: 0;
    display: flex;
    overflow: hidden;
    width: 100%;
}

ul.carrossel li {
    display: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    flex-direction: column; /* Alinha os itens em coluna */
    min-width: 200px;
    height: auto; /* Permite que a altura se ajuste ao conteúdo */
    border: 1px solid #ff3c00;
    border-radius: 10px;
    padding: 5px; /* Adiciona padding para espaçamento interno */
    background-color: #000000b3;
}

ul.carrossel li.ativo {
    display: block;
}

ul.carrossel li img {
    max-width: 100%;
    height: auto;
    margin: 12px 0;
}

@media (min-width: 768px) {
    .carrossel-wrapper {
        justify-content: center;
    }

    .btn-nav {
        display: none;
    }

    ul.carrossel {
        overflow: visible;
        flex-wrap: nowrap;
    }

    ul.carrossel li {
        display: block !important;
        width: 250px;
    }
}

.custom-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff3c00, transparent);
    margin: 20px 0;
}

/* Footer */
.footer-container {
    background: #000000;
    padding: 40px 0;
    margin-top: auto;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
}

.footer-content {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.footer-logo {
    max-width: 120px;
}

.footer-info {
    text-align: center;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px; /* Espaçamento entre os ícones */
}

.social-icons a {
    text-decoration: none; /* Remove o sublinhado */
    color: #888; /* Cor do ícone */
    font-size: 1.5em;
}

.social-icons a:hover {
    color: #ff3c00;
}

.livro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.livro-lista {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;

}

.livro-container h2 {
    font-size: 2.3em;
    color: #ff3c00;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}


/* Carrossel de Livros - apenas usando carrossel-livros */

ul.carrossel-livros {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  align-items: center;
}

ul.carrossel-livros li {
  display: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
  text-align: center;
  flex-direction: column;
  min-width: 280px;
  border: 1px solid #ff3c00;
  border-radius: 10px;
  padding: 10px;
  background-color: #000000b3;
  justify-content: center;
  align-items: center;
}

ul.carrossel-livros li h5 {
  font-size: 1.0em; /* Tamanho do parágrafo */
  color: #ff3c00;/* Cor do texto */
  padding: 0px 0px 20px 0px;
  text-align: center;
  font-weight: 500;
}

ul.carrossel-livros li p {
  font-size: 0.9em; /* Tamanho do parágrafo */
  color: #bbb;
  margin-bottom: 5px;
  text-align: left;
}

ul.carrossel-livros li.ativo {
  display: block;
}
ul.carrossel-livros li img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

.carrossel-livros .btn-nav {
  display: none;
}

@media (min-width: 768px) {
  ul.carrossel-livros {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
    width: 100%;
    overflow: visible;
  }
  ul.carrossel-livros li {
    display: block !important;
    width: auto;
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .carrossel-livros .btn-nav {
    display: none;
  }
}

@media (max-width: 767px) {
    .resumo {
        flex-direction: column !important;
        align-items: stretch;
        padding: 0;
    }

    .organiza-resumo {
        flex-direction: column !important;
        align-items: stretch;
    }

    .event-image {
        width: 100%;
    }

    .info-container {
        flex-direction: column !important;
        align-items: stretch;
    }

    .new-info-container {
        flex-direction: column !important;
        align-items: stretch;
    }

  .recompensa-container {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch;
  }
  .recompensa-item {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  .lista-container.carrossel-livros {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
    padding: 0;
  }
  .carrossel-livros .btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 40px;
    min-height: 40px;
    margin: 0 4px;
  }
  ul.carrossel-livros {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  ul.carrossel-livros li.ativo {
    display: block;
    width: 100%;
    max-width: 95vw;
    min-width: 0;
  }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: url('../img/background/fundo.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.columns-wrapper {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .drop-column {
    list-style: none; /* remove a bolinha */
    padding-left: 0;  /* remove o espaço extra */
    flex: 1;
    min-width: 200px;
    font-size: 0.8rem;
    color: #bbb;
  }

  .drop-column li {
    margin-bottom: 0.1rem;
  }

  @media (max-width: 768px) {
    .columns-wrapper {
      flex-direction: column;
    }
  }
