@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Sans+KR:wght@100..900&display=swap');

body {
  font-family: "Lexend", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Início do estilo da section do menu - PWAzeroth. */
.navbar {
  position: relative;
  z-index: 1;
  background-image: url('../img/menu-texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 3px solid rgba(255, 115, 0, 0.4);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(87, 37, 8, 0.336);
  z-index: -1;
}

.navbar-brand {
  padding: 0;
  margin-right: 1rem;
}

.navbar-brand img {
  height: 50px;
  margin-top: -5px;
}

.navbar-nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  color: white !important;
}

.navbar-nav .nav-link:hover {
  color: #ff7300 !important;
  transform: scale(1.05) !important;
}

.navbar-nav {
  gap: 2rem;
}

.btn-destaque {
  background-color: #ff7300 !important;
  color: #000000 !important;
  font-weight: bold !important;
  padding: 0.5rem 1.2rem !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.2s ease-in-out !important;
}

.btn-destaque:hover {
  background-color: #ff73008a !important;
  transform: scale(1.05) !important;
  color: #fff !important;
}
/* Fim do estilo da section do menu - PWAzeroth. */

/* Início do estilo da section do vídeo - PWAzeroth. */
.video-banner {
  max-height: 60vh;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid #ff7300;
}

.video-banner video {
  max-height: 60vh;
  object-fit: cover;
  height: auto;
}

.overlay {
  background: rgba(0, 0, 0, 0.281);
  text-align: center;
}

#video-bg {
  max-height: 60vh;
  object-fit: cover;
  aspect-ratio: 16 / 6;
  width: 100%;
  height: auto;
  object-position: bottom;
}

.video-brand img {
  height: 300px;
  margin-top: -5px;
}
/* Fim do estilo da section do vídeo - PWAzeroth. */

/* Início do estilo da section de discord do vídeo - PWAzeroth. */
.discord-invite-box {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: inline-block;
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-discord {
  display: inline-block;
  margin-top: 10px;
  background-color: #5865F2;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}

.btn-discord:hover {
  background-color: #4853c5;
  transform: scale(1.05);
}
/* Fim do estilo da section de discord do vídeo - PWAzeroth. */

/* Início do estilo da section de notícias - PWAzeroth. */
.noticias-section {
  background-image: url('../img/news-bg.jpg'); /* sua imagem de fundo */
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 700px;
}

.noticias-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 1) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.596) 30%, rgba(0, 0, 0, 0.842) 70%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
  pointer-events: none;
}

.noticias-section .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

.titulo-noticias {
  font-family: "Lexend", sans-serif !important;
  font-size: 2.5rem;
  color: #fc9f00;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.categoria {
  color: #d8b26e;
}

.noticia-card {
  background-color: rgba(0, 0, 0, 0.596);
  border: 1px solid #d8b26e;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(216, 177, 110, 0.295);
}

.noticia-img {
  width: 200px;
  object-fit: cover;
}

.noticia-conteudo {
  flex: 1;
  color: #f5f5f5;
}

.noticia-conteudo p:first-child {
  margin-top: 0;
  margin-bottom: 0.2rem; /* pequeno espaço entre o primeiro p e o h5 */
}

.noticia-conteudo h5 {
  margin-top: 0;
  margin-bottom: 0.4rem; /* reduz espaço abaixo do título */
}

.noticia-conteudo p:last-child {
  margin-top: 0;
  margin-bottom: 0; /* remove espaço extra abaixo do último parágrafo */
}


.btn-noticias {
  border: 1px solid #d8b26e;
  color: #d8b26e;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-noticias:hover {
  background-color: #d8b26e;
  color: #000;
}

.noticia-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #d8b26e;
}

.noticia-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

.noticia-card:hover {
  transform: translateY(-5px);
}
/* Final do estilo da section de notícias - PWAzeroth. */

/* Início do estilo da section de downloads - PWAzeroth. */
.downloads-section {
  background-color: #0d0d0d;
  border-top: 2px solid #fc9f00;
  border-bottom: 2px solid #fc9f00;
}

.download-card {
  background-color: rgba(0, 0, 0, 0.301);
  border: 1px solid #d8b26e;
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-card:hover {
  transform: translateY(-5px);
  background-color: rgba(216, 178, 110, 0.1);
  color: #fc9f00;
  text-decoration: none;
}

.download-card i {
  color: #fc9f00;
}

.link-discord {
  color: #fc9f00;
  text-decoration: underline;
}

.link-discord:hover {
  color: #fff;
  text-decoration: none;
}
/* Fim do estilo da section de downloads - PWAzeroth. */

/* Início do estilo da section do rodapé - PWAzeroth. */
.site-footer {
  background-color: #0e0e0e;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #333;
}

.footer-link {
  color: #d8b26e;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-icon {
  color: #d8b26e;
  margin-left: 12px;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-icon:hover {
  color: #ffffff;
}
/* Fim do estilo da section do rodapé - PWAzeroth. */