@import url('fonts.css');

.section-dragon {
    height: 42vh;
    width: 100%;
    background-image: url('/img/bg-bard3.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 7%;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s ease-in-out;
    text-align: start;
}


.dragon-content {
    padding-top: 210px;
    margin-left: 3vw;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dragon-content h2 {
    font-size: 64px;
    margin-top: 0px;
    padding-left: 7vh;
    color: #ffffff;
    font-weight: 900;
    font-style: italic;
    font-family: "Beaufort-for-LOL-Bold", sans-serif;
}


/* === APRESENTAÇÃO === */
.apresentacao-section {
    background: #1a1a1a;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.apresentacao-section {
    display: flex;
    justify-content: center;
}


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

/*===Section News===*/
.noticias-section{
  margin: 10px 20vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: #fff;
}
.swiper {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-bottom: 6vh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  width: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 30px 10px;
}
.swiper-wrapper{
  display: flex;
  flex-direction: row;
}
.swiper-wrapper a {
  color: #000;
  text-align: center;
}
.noticia-card {
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  max-width: 400px;
  background: rgb(255, 255, 255);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.noticia-card img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.noticia-card:hover img {
  transform: scale(1.05); /* o zoom */
}
.noticia-card .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  font-weight: 200;
  
}
.noticia-card .categoria {
  margin-top: 1vh;
  color: #c0a830;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 0.2vh;
  font-family: "Beaufort-for-LOL-Bold", sans-serif;
}
.noticia-card .data{
  font-size: 14px;
  font-family: "Beaufort-for-LOL-Regular", sans-serif;
  font-weight: 200;
}
.noticia-card p {
  margin-top: -10px; 
  letter-spacing: 0.5px;
  font-family: "Beaufort-for-LOL-Regular", sans-serif;
}
.noticia-card h3 {
  margin-top: 0.6em; 
  font-family: "Beaufort-for-LOL-Bold", sans-serif;
}
