@import url('fonts.css');

.section-dragon {
    width: 100vw;
    height: 40vh;
    background-image: url('/img/background-teste.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right 0%  top 10%;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
    transition: transform 0.2s ease-in-out;
    z-index: 0;
}
.section-dragon .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 37, 0.349);
  z-index: 0;
  pointer-events: none;
}

.dragon-content {
    padding-top: 210px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'Beaufort-for-LOL-Bold', sans-serif;
    color: white;
}

.dragon-content .title-dragon{
    font-size: 36px;
    margin-top: 0px;
    color: #ffffff;
    font-weight: 900;
    font-style: italic;
    
    text-align: s;
    align-items: start;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding-left: 15vh;
    margin-bottom: 50px;
}

.ler-mais a{
  color: rgb(173, 173, 32);
  text-decoration: none;
}

.dragon-content .title-dragon h2{
    font-family: "Beaufort-for-LOL-Bold", sans-serif;
    letter-spacing: 1.2px;
}

.dragon-content .content-download{
    font-size: 16px;
    margin-top: -10px;
    font-weight: 400;
    font-family: "Beaufort-for-LOL-Regular", sans-serif;
    display: flex;
    flex-direction: row;
    width: 50%;
    padding-left: 15vh;
    gap:2%;
}


@media (max-width: 768px) {
  .dragon-content .content-download {
    width: 80%;
    display: flex;
    flex-direction: column;
    padding: 0vh 3vh;
    text-align: center;
    align-items: start;
  }
  .dragon-content .title-dragon{
    width: 100%;
    padding: 0vh 3vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: start;

  }
  .dragon-content .content-download a{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    
  }
}
@media (max-width: 560px) {
.dragon-content .title-dragon{
    width: 100%;
    padding: 0vh 0vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: start;

  }
}

.btn-download {
  display: flex;
  background: linear-gradient(to right, rgb(30, 133, 165));
  padding: 10px 20px;
  border: none;
  font-weight: 800;
  text-decoration: none;
  height: 38px;
  width: 20%;
  justify-content: center;
  align-items: center;
  text-align: top;
  color: #f6fdff;
  margin-top: 0px;
  border: none;
  transition: transform 0.2s ease-in-out;
  flex-direction: column;
}
.btn-download .download-1,
.btn-download .download-2{
    margin-top: -5px;
    font-size: 12px;
}

.btn-download .option-download-1,
.btn-download .option-download-2{
    gap: 20px;
}


.btn-download:hover {
  transform: scale(1.02);
}


/* === APRESENTAÇÃO === */
.apresentacao-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    position: relative;
    background-color: #0a0a0a; /*back*/
    z-index: 0;
}

.apresentacao-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #222222; 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right 0% top 10%;
    filter: blur(2px);
    z-index: -1;
    transform: scale(1.02); /* evita bordas visíveis do blur */
}

/* ====SWIPE=== */

/*===Section News===*/
.noticias-section{
  margin: 10px 20vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;  
  
}



.pagina-eventos {
  font-family: 'MarkW05Medium', sans-serif;
  color: #fff;
  background: #0a0a0a;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.cabecalho-pagina {
  text-align: center;
  margin-bottom: 3rem;
}

.titulo-principal {
  font-size: 3rem;
  color: #eee3ba;
  text-shadow: 0 0 8px #927d4d;
}

.bloco-evento {
  display: flex;
  flex-wrap: wrap;
  background: #1a1a1a;
  margin-bottom: 1rem;
  margin-top: 1rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.041);
  overflow: hidden;
  object-fit: cover;
}

.evento-banner img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.evento-banner img:hover{
  transform: scale(1.05); /* o zoom */
}
.evento-banner {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.evento-conteudo {
  width: 100%;
  height: 100%;
  padding: 0.5rem 2rem;
  flex: 1;
  overflow: hidden;
}

.evento-titulo {
  font-size: 2rem;
  color: #e6d7b1;
  margin-bottom: 0.3rem;
  
}

.evento-periodo {
  color: #ccc;
  font-style: italic;
  margin-bottom: 1rem;
}

.evento-descricao {
  margin-bottom: 1rem;
}

.evento-recompensas {
  list-style: "🎁 ";
  padding-left: 1.2rem;
}
