/* download.css */

/* ==============================
   IMPORT FONT AWESOME 6 FREE
   ============================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ==============================
   RESET BÁSICO E FONTES
   ============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #0F0F1A;
  color: #E0E0E0;
  line-height: 1.6;
}

/* ================================================
   FONT AWESOME 6 FREE – GARANTIR VISIBILIDADE
   ================================================ */
.fas,
.fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* BOTÕES GERAIS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* BOTÃO VERMELHO NÉBULA (PRIMÁRIO) */
.btn-nebula-primary {
  background-color: #E63946;
  color: #FFFFFF;
  border: none;
}
.btn-nebula-primary:hover {
  background-color: #C02939;
}

/* BOTÃO CONTOUR (SECUNDÁRIO) */
.btn-nebula-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.btn-nebula-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ==============================
   NAVBAR (CABEÇALHO)
   ============================== */
.nebula-navbar {
  background-color: #1A0A0D;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nebula-navbar .nav-inner {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

/* Logo à esquerda */
.logo {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
.logo img {
  height: 32px;
  width: 32px;
}
.logo span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Links de navegação */
.nav-links {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #0F0F1A;
}

/* Ações à direita (idioma + baixar) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* BOTÃO PILL DE IDIOMA */
.dropdown-lang {
  position: relative;
}
.lang-btn-pill {
  background-color: transparent;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  z-index: 200;
}
.lang-btn-pill:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.lang-btn-pill i {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.lang-btn-pill.active i {
  transform: rotate(180deg);
}

/* Dropdown de idiomas */
.lang-menu-pill {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #1A0A0D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
  min-width: 140px;
}
.lang-menu-pill.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu-pill li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #CCCCCC;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-menu-pill li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

/* BOTÃO “BAIXAR” NO HEADER */
.btn-nebula-primary.nav-download {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 0.65rem 1.2rem;
  border-radius: 0.5rem;
  margin-left: 1rem;
}
.btn-nebula-primary.nav-download:hover {
  background-color: #C02939;
}

/* ==============================
   PÁGINA DE DOWNLOAD
   ============================== */
.download-page {
  background-color: #1A0E11;
  padding: 6rem 0 4rem;
  text-align: center;
}
.download-page .section-title {
  font-size: 2.5rem;
  color: #E63946;
  margin-bottom: 1rem;
}
.download-page .section-subtitle {
  font-size: 1.1rem;
  color: #CCCCCC;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* === GRID DE OPÇÕES (múltiplos cards) === */
.download-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: stretch;
}

/* === CARD PADRÃO (Windows e Versão) === */
.option-card.single-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #12090C;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 300px;
  width: 100%;
  transition: box-shadow 0.2s ease;
  min-height: 400px;
}
.option-card.single-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* === IMAGENS NOS CARDS === */
.option-card.single-card .windows-logo,
.option-card.single-card .version-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

/* === TÍTULOS E PARÁGRAFOS NOS CARDS === */
.option-card.single-card h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.option-card.single-card p {
  color: #CCCCCC;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* === BOTÕES DENTRO DOS CARDS === */
.option-card.single-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

/* ==============================
   REQUISITOS DO SISTEMA
   ============================== */
#requirements .information-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
#requirements .info-text {
  flex: 1 1 300px;
}
#requirements .info-text .section-title {
  font-size: 2rem;
  color: #E63946;
  margin-bottom: 0.5rem;
}
#requirements .info-text .section-subtitle {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 1.5rem;
}
#requirements .info-features {
  list-style: none;
  margin-top: 1.5rem;
  padding: 0;
}
#requirements .info-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #DDDDDD;
  font-size: 0.95rem;
  line-height: 1.4;
}
#requirements .info-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #E63946;
  font-size: 1rem;
  line-height: 1.2;
}
#requirements .info-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: flex-end;
}
#requirements .info-image img {
  width: 250px;
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==============================
   INSTRUÇÕES DE INSTALAÇÃO
   ============================== */
.video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.video-container iframe {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}
#instructions .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
#instructions .feature-card {
  background-color: #12090C;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}
#instructions .feature-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
#instructions .feature-card .icon {
  font-size: 1.5rem;
  color: #E63946;
  margin-bottom: 1rem;
}
#instructions .feature-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
#instructions .feature-card p {
  color: #CCCCCC;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ==============================
   SUPORTE & CONTATO
   ============================== */
#support .information-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
#support .info-text {
  flex: 1 1 300px;
}
#support .info-text .section-title {
  font-size: 2rem;
  color: #E63946;
  margin-bottom: 0.5rem;
}
#support .info-text .section-subtitle {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 1rem;
}
#support .info-text p {
  color: #DDDDDD;
  margin-bottom: 1rem;
  line-height: 1.5;
}
#support .info-text a {
  color: #E63946;
  text-decoration: underline;
}
#support .info-text a:hover {
  color: #C02939;
}
#support .info-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: flex-end;
}
#support .info-image img {
  width: 475px;
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==============================
   RODAPÉ
   ============================== */
.footer-about h3 {
  font-size: 1.5rem;
  color: #E63946;
  margin-bottom: 0.75rem;
}
.footer-about p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.social-icons a {
  margin-right: 0.75rem;
  color: #CCCCCC;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}
.social-icons a:hover {
  color: #E63946;
}
.footer-links {
  flex: 2 1 450px;
  display: flex;
  justify-content: space-between;
}
.footer-links div h4 {
  font-size: 1.1rem;
  color: #E63946;
  margin-bottom: 0.5rem;
}
.footer-links div ul {
  list-style: none;
  padding: 0;
}
.footer-links div ul li {
  margin-bottom: 0.5rem;
}
.footer-links div ul li a {
  font-size: 0.95rem;
  color: #CCCCCC;
  transition: color 0.2s ease;
}
.footer-links div ul li a:hover {
  color: #E63946;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.4;
}

/* ==============================
   RESPONSIVIDADE GERAL
   ============================== */
@media (max-width: 1024px) {
  .nav-links a {
    margin-left: 1rem;
  }
}
@media (max-width: 768px) {
  .download-page .section-title {
    font-size: 2rem;
  }
  .option-card.single-card {
    padding: 1.5rem;
    max-width: 90%;
  }
  #requirements .information-container,
  #support .information-container {
    flex-direction: column;
    align-items: center;
  }
  #requirements .info-image img {
    width: 180px;
    margin-top: 1.5rem;
  }
  #support .info-image img {
    width: 300px;
    margin-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .download-page .section-subtitle {
    font-size: 1rem;
    max-width: 90%;
  }
  .option-card.single-card h3 {
    font-size: 1.25rem;
  }
  #requirements .info-image img,
  #support .info-image img {
    width: 100%;
    max-width: 200px;
  }
}
