/* Cores Base - Estética Dark & RGB Neon */
:root {
  --bg-principal: #0d0e12;
  --bg-card: rgba(22, 24, 33, 0.45);
  --texto-claro: #f3f4f6;
  --texto-escuro: #9ca3af;
  --neon-azul: #00f2fe;
  --neon-roxo: #4facfe;
  --neon-verde: #00ff87;
  --neon-violeta: #9b51e0; /* Roxo premium substituindo o antigo vermelho */
  --gradiente-rgb: linear-gradient(135deg, #4facfe, #00f2fe, #9b51e0, #4facfe);
}

/* Reset e Configurações Globais com a nova fonte Inter */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-principal);
  color: var(--texto-claro);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* 🌌 Camada de Iluminação Ambiental com Blur em Loop RGB (Agora com Roxo) */
.ambient-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.6;
}

.glow-orbe {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  mix-blend-mode: screen;
  opacity: 0.45;
}

/* Configuração e animação individual das luzes */
.orbe-azul {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(0, 242, 254, 0.6) 0%,
    transparent 70%
  );
  top: -10%;
  left: -10%;
  animation: flutuarOrbeAzul 22s infinite alternate ease-in-out;
}

.orbe-roxa {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(155, 81, 224, 0.5) 0%,
    transparent 70%
  );
  bottom: -20%;
  right: -10%;
  animation: flutuarOrbeRoxa 28s infinite alternate ease-in-out;
}

.orbe-verde {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(
    circle,
    rgba(0, 255, 135, 0.4) 0%,
    transparent 70%
  );
  top: 40%;
  left: 50%;
  animation: flutuarOrbeVerde 25s infinite alternate ease-in-out;
}

@keyframes flutuarOrbeAzul {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15vw, 10vh) scale(1.2);
  }
  100% {
    transform: translate(-5vw, 20vh) scale(0.9);
  }
}

@keyframes flutuarOrbeRoxa {
  0% {
    transform: translate(0, 0) scale(0.9);
  }
  50% {
    transform: translate(-20vw, -15vh) scale(1.15);
  }
  100% {
    transform: translate(5vw, -5vh) scale(1);
  }
}

@keyframes flutuarOrbeVerde {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  50% {
    transform: translate(-10vw, 15vh) scale(0.85);
  }
  100% {
    transform: translate(15vw, -10vh) scale(1.2);
  }
}

/* ✨ Sistema Avançado de Scroll: Fade-In e Fade-Out Bidirecional */
.animar-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animar-scroll.visivel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Cabeçalho / Navigation */
header {
  background-color: rgba(13, 14, 18, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between; /* Mantém a logo na esquerda e os links na direita */
  align-items: center; /* Alinha o texto da LOGO e o menu horizontalmente */
  padding: 1rem 2rem;
}

/* Animação União de LED RGB no Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradiente-rgb);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  animation: ledsRGB 4s ease infinite;
  filter: drop-shadow(0 0 4px rgba(0, 242, 254, 0.2));
  transition: filter 0.3s ease;
  cursor: default;
}

.logo:hover {
  filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.8))
    drop-shadow(0 0 20px rgba(155, 81, 224, 0.5));
}

@keyframes ledsRGB {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.nav-links {
  display: flex;
  align-items: center; /* Centraliza verticalmente links e botões */
  justify-content: center; /* Centraliza o conteúdo internamente */
  gap: 1.5rem; /* Espaçamento uniforme entre cada item do menu */
}

.nav-links a {
  color: var(--texto-escuro);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon-azul);
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

/* Seletor de Idioma Integrado */
.lang-switcher {
  margin-left: 2.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  user-select: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-btn {
  cursor: pointer;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
  color: var(--texto-escuro);
}

.lang-btn.ativo {
  color: var(--neon-azul) !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 0.2rem;
}

/* Seção Hero (Principal) */
.hero {
  padding: 12rem 2rem 8rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: var(--gradiente-rgb);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ledsRGB 4s ease infinite;
}

.hero p {
  font-size: 1.2rem;
  color: var(--texto-escuro);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Botão Principal Estilo RGB Animado */
.btn-download {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  background: var(--gradiente-rgb);
  background-size: 200% 200%;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
  animation:
    pulsarGlow 2s infinite alternate,
    ledsRGB 4s ease infinite;
}

.btn-download:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 35px rgba(79, 172, 254, 0.8);
}

@keyframes pulsarGlow {
  0% {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(79, 172, 254, 0.6);
  }
}

/* Container dos Botões */
.download-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- BOTÃO DOWNLOAD DIRETO --- */
.btn-direct-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.4); /* Borda roxa sutil */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-direct-download:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

.icon-download {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-direct-download:hover .icon-download {
  transform: translateY(2px);
}

/* --- BOTÃO MODRINTH ATIVADO --- */
.btn-modrinth-wrapper {
  position: relative;
  display: inline-block;
}

.btn-modrinth-active {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;

  /* Verde clássico do Modrinth com transparência cyberpunk */
  background: rgba(26, 188, 112, 0.15);
  border: 1px solid rgba(26, 188, 112, 0.5);
  border-radius: 8px;

  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(26, 188, 112, 0.1);
}

/* Efeito de Brilho ao passar o mouse (Hover) */
.btn-modrinth-active:hover {
  background: rgba(26, 188, 112, 0.3);
  border-color: #1abc70;
  box-shadow: 0 0 18px rgba(26, 188, 112, 0.6);
  transform: translateY(-2px);
}

/* Efeito de clique */
.btn-modrinth-active:active {
  transform: translateY(0);
}

/* ==========================================================================
   BOTÃO CURSEFORGE (DESATIVADO) + ANIMAÇÃO DE NATAL
   ========================================================================== */
.btn-curse-wrapper {
  position: relative;
  display: inline-block;
}

.btn-curse-disabled {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: not-allowed;
  pointer-events: none;
}

/* TEXTO EM BREVE (SUAS LUZES DE NATAL CYBERPUNK) */
.badge-em-breve {
  position: absolute;
  bottom: -12px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 2px 6px;
  background: #111;
  border-radius: 4px;
  border: 1px solid #ff3838;
  animation: luzesDeNatal 2.5s infinite linear;
}

@keyframes luzesDeNatal {
  0%,
  100% {
    color: #ff3838;
    border-color: #ff3838;
    box-shadow: 0 0 8px rgba(255, 56, 56, 0.8);
  }
  25% {
    color: #a855f7;
    border-color: #a855f7;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.8);
  }
  50% {
    color: #00f2fe;
    border-color: #00f2fe;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
  }
  75% {
    color: #9bdc28;
    border-color: #9bdc28;
    box-shadow: 0 0 10px rgba(155, 220, 40, 0.8);
  }
}

/* Container de Conteúdo */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  letter-spacing: -0.5px;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gradiente-rgb);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Recursos (Cards com Blur e Degradê de Fundo) */
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s,
    background-color 0.4s;
}

.card:hover {
  border-color: rgba(0, 242, 254, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.06);
  background-color: rgba(30, 32, 44, 0.6);
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--texto-claro);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

.card:hover h3 {
  color: var(--neon-azul);
  letter-spacing: 0.5px;
}

/* Nova tag de Versão do Card (Ajustada para overflow: hidden) */
.card-version-tag {
  position: absolute;
  top: 12px;         /* Posiciona dentro do card, com um espaçamento elegante do topo */
  right: 15px;       /* Alinha no lado direito */
  
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  padding: 3px 8px;
  border-radius: 4px;
  
  /* Tom escuro sutil com borda cinza-azulada para não brigar com os alertas coloridos */
  background-color: rgba(21, 25, 30, 0.8); 
  color: #8892b0;
  border: 1px solid rgba(136, 146, 176, 0.25);
  
  z-index: 2;
}

/* Onda de Luz estilo PRATA nos textos dos cards principais */
.card > p {
  font-size: 0.95rem;
  font-weight: 400;
  background: linear-gradient(
    to right,
    #9ca3af 0%,
    #9ca3af 35%,
    #ffffff 50%,
    #e5e7eb 55%,
    #9ca3af 70%,
    #9ca3af 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ondaLedTexto 6s linear infinite;
}

.recursos-grid .card:nth-child(2) > p {
  animation-delay: 1.5s;
}
.recursos-grid .card:nth-child(3) > p {
  animation-delay: 3s;
}
.recursos-grid .card:nth-child(4) > p {
  animation-delay: 4.5s;
}

@keyframes ondaLedTexto {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* ⚠️ Bloco de Aviso Filtrado - Visual Integrado */
.aviso-filtro {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(13, 14, 18, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  text-align: left;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.aviso-titulo {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff3838;
  text-shadow: 0 0 8px rgba(255, 56, 56, 0.6);
  margin-bottom: 0.4rem;
}

.tag-cuidado {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffb638;
  text-shadow: 0 0 8px rgba(255, 159, 56, 0.6);
  margin-bottom: 0.4rem;
}

.card .aviso-filtro p.aviso-texto {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 400;
  background: linear-gradient(
    to right,
    #9ca3af 0%,
    #9ca3af 40%,
    #ffffff 50%,
    #9ca3af 60%,
    #9ca3af 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ondaLedTexto 7s linear infinite;
}

.aviso-filtro p.aviso-texto strong {
  font-weight: 600;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.card:hover .aviso-filtro {
  border-color: rgba(255, 56, 56, 0.2);
  box-shadow: 0 0 15px rgba(255, 56, 56, 0.04);
}

.card:hover .tag-filtro {
  border-color: rgba(255, 169, 56, 0.2);
  box-shadow: 0 0 15px rgba(255, 169, 56, 0.04);
}

/* 🧱 SEÇÃO DE DEPENDÊNCIAS */
.dep-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 242, 254, 0.15);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.03);
  transition: background-color 0.4s;
}

.dep-box:hover {
  background-color: rgba(30, 32, 44, 0.6);
}

.brilho-ciano-pulsante {
  color: var(--neon-azul);
  font-weight: 800;
  text-shadow: 0 0 4px rgba(0, 242, 254, 0.3);
  animation: pulseCiano 2s infinite alternate ease-in-out;
  display: inline-block;
}

.dep-box h4.brilho-ciano-pulsante {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

@keyframes pulseCiano {
  0% {
    text-shadow:
      0 0 4px rgba(0, 242, 254, 0.4),
      0 0 12px rgba(0, 242, 254, 0.2);
    transform: scale(1);
  }
  100% {
    text-shadow:
      0 0 12px rgba(0, 242, 254, 0.8),
      0 0 24px rgba(0, 242, 254, 0.4);
    transform: scale(1.02);
  }
}

/* Badges de Versão Técnicos */
.badge-version {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  margin-left: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  vertical-align: middle;
}

/* 💎 Destaque Verde Modrinth Suave */
.destaque-modrinth {
  color: var(--neon-verde);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.25);
  display: inline-block;
  -webkit-text-fill-color: var(--neon-verde) !important;
}

.destaque-modrinth:hover {
  text-shadow: 0 0 15px rgba(0, 255, 135, 0.6);
}

/* 👑 Efeito Dourado Premium S++ para Mixins */
.premium-mixins {
  font-weight: 700;
  background: linear-gradient(
    to right,
    #ffd700 0%,
    #ffae00 30%,
    #fff6cc 50%,
    #ffae00 70%,
    #ffd700 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  animation: ondaLedTexto 4s linear infinite;
  filter: drop-shadow(0 0 2px rgba(255, 174, 0, 0.2));
}

/* 📋 SEÇÃO DE CHANGELOG (Linha do Tempo) */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
  position: relative;
  margin-bottom: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-azul);
  box-shadow: 0 0 10px var(--neon-azul);
}

.version-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.version-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-azul);
}

.version-date {
  font-size: 0.85rem;
  color: var(--texto-escuro);
  background: rgba(0, 242, 254, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.timeline-item ul {
  list-style: none;
  padding-left: 0.5rem;
}

.timeline-item li {
  color: var(--texto-escuro);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
}

.timeline-item li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--neon-azul);
  opacity: 0.7;
}

/* ❓ SEÇÃO DE FAQ (ACCORDION) */
.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 242, 254, 0.2);
  background-color: rgba(30, 32, 44, 0.5);
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  color: var(--texto-claro);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-pergunta {
  color: var(--neon-azul);
}

.seta-icon {
  font-style: normal;
  font-size: 1.3rem;
  color: var(--texto-escuro);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.faq-item.ativo .seta-icon {
  transform: rotate(45deg);
  color: var(--neon-azul);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(13, 14, 18, 0.4);
}

.faq-resposta p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--texto-escuro);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.faq-resposta p strong {
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.faq-item.ativo {
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.03);
}

/* Rodapé */
footer {
  background-color: #06070a;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--texto-escuro);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: 6rem;
}

.coracao-pulsante {
  color: var(--neon-azul);
  display: inline-block;
  animation: pulsarCoracao 1.2s infinite;
}

@keyframes pulsarCoracao {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsividade básica para Celular */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .version-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* Container dos links da Nav (Garante o alinhamento vertical de tudo) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Espaçamento entre os links */
}

/* O Botão Customizado de Tradução */
.btn-tradutor-custom {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap; /* Impede o texto de quebrar em duas linhas */
  transition: all 0.25s ease;
  margin-left: 0.5rem; /* Dá uma distância extra do link 'Download' */
}

/* Efeito de Hover moderno combinando com o tema do Mod */
.btn-tradutor-custom:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff; /* Tom ciano vibrante do seu tema */
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
  color: #00ffff;
}

/* Garante que o ícone SVG acompanhe a cor do texto */
.btn-tradutor-custom svg {
  stroke: currentColor;
  flex-shrink: 0;
}

/* Estilização da tag Beta com animação */
.version-date {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #ffc107; /* Amarelo padrão de aviso */
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* O Beta pisca em amarelo */
.tag-beta {
  animation: pulso-aviso 2s infinite ease-in-out;
}

/* O Estável fica na dele, mas ganha o brilho verde ao passar o mouse */
.tag-estavel {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.tag-estavel:hover {
  background: rgba(40, 167, 69, 0.25);
  border-color: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* O "motor" da animação de piscar sutil */
@keyframes pulso-aviso {
  0% {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 0px rgba(255, 193, 7, 0);
  }
  50% {
    border-color: rgba(255, 193, 7, 0.9);
    background: rgba(255, 193, 7, 0.2);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4); /* Brilho neon */
  }
  100% {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 0px rgba(255, 193, 7, 0);
  }
}

/* Padroniza a cor de todas as versões do histórico */
.version-title {
  color: #00ffff; /* Tom ciano do tema do seu Mod. Se preferir branco ou outra cor, mude para #ffffff */
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}

/* Estilo Base das Badges */
.badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  margin: 0 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Badge de Recursos Novos (Azul Ciano) */
.badge-novo {
  background-color: rgba(0, 229, 255, 0.15);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

/* Badge de Ajustes/Melhorias (Roxo/Lilás de tom mais suave) */
.badge-ajuste {
  background-color: rgba(187, 134, 252, 0.15);
  color: #bb86fc;
  border: 1px solid rgba(187, 134, 252, 0.4);
}

/* Badge para o que é Experimental/Beta (Amarelo) */
.badge-beta {
  background-color: rgba(255, 183, 77, 0.15);
  color: #ffb74d;
  border: 1px solid rgba(255, 183, 77, 0.4);
}

/* Badge para Otimização de Performance (Verde-esmeralda/Menta) */
.badge-otimizacao {
  background-color: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

/* Badge para Dependências e APIs (Cinza-azulado/Aço) */
.badge-dependencia {
  background-color: rgba(144, 164, 174, 0.15);
  color: #b0bec5;
  border: 1px solid rgba(144, 164, 174, 0.4);
}

/* Badge para Qualidade de Vida / Ajustes de Conforto (Turquesa Suave) */
.badge-qol {
  background-color: rgba(0, 150, 136, 0.15);
  color: #009688;
  border: 1px solid rgba(0, 150, 136, 0.4);
}
