/* =========================
   RESET + VARS
========================= */
*{ box-sizing:border-box; }

:root{
  --bg-dark:#050607;
  --panel:#0f1214;
  --text:#e9eef6;
  --muted:rgba(233,238,246,.70);

  --red:#ff2d2d;
  --red2:#b90f1c;
  --line:rgba(255,255,255,.08);

  --blue:#3aa0ff;

  /* HOME - banner */
  --band-h: clamp(520px, 72vh, 980px);
  --band-gap: 18px;
  --band-to-btn: 16px;
}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background: var(--bg-dark);
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

/* =========================
   TOPO
========================= */
.top-strip{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(90deg, var(--red2), var(--red));
  letter-spacing:.7px;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
}

/* =========================
   NAVBAR
========================= */
.nav{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  background:rgba(0,0,0,.55);
  border-bottom: 1px solid var(--red);
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(6px);
}

.nav-left{ display:flex; align-items:center; gap:10px; }
.logo{ width:26px; height:26px; border-radius:6px; }
.brand{ font-weight:800; letter-spacing:.2px; }

.nav-center{
  display:flex;
  gap:26px;
  align-items:center;
  text-transform:uppercase;
  font-weight:800;
  font-size:12px;
}
.nav-center a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  padding:8px 6px;
  border-bottom:2px solid transparent;
}
.nav-center a:hover{ color:#fff; }
.nav-center a.active{
  color:#fff;
  border-bottom-color: var(--red);
}

.btn-connect{
  background:linear-gradient(180deg, var(--red), var(--red2));
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  padding:10px 16px;
  border-radius:8px;
  cursor:pointer;
}
.btn-connect:hover{ filter:brightness(1.05); }

/* =========================
   HERO (HOME)
========================= */
.hero{
  min-height: calc(100vh - 34px - 64px);
  position:relative;
  background: center/cover no-repeat var(--bg);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 50% 30%, rgba(0,0,0,.35), rgba(0,0,0,.78)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.80));
}

.hero-content{
  position:relative;
  z-index:1;
  max-width:980px;
  margin:0 auto;
  padding:90px 18px 60px;
  text-align:center;
}

.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,45,45,.18);
  border:1px solid rgba(255,45,45,.45);
  color:#ffd9de;
  font-weight:800;
  font-size:12px;
  margin-bottom:18px;
}

.title{
  margin:0 0 12px;
  font-size:54px;
  letter-spacing:.6px;
  text-transform:uppercase;
  text-shadow:0 10px 30px rgba(0,0,0,.55);
}
.title span{
  color:var(--red);
  text-shadow:0 10px 30px rgba(255,45,45,.25);
}

.subtitle{
  margin:0 auto 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.35;
  font-size:14px;
}

/* ✅ BANNER FULL WIDTH (SEM BARRA PRETA LATERAL) */
.band-wrap{
  margin-top: var(--band-gap);

  width:100vw;
  height: var(--band-h);

  position:relative;
  left:50%;
  margin-left:-50vw;

  overflow:hidden;
  border-top:1px solid rgba(255,45,45,.45);
  border-bottom:1px solid rgba(255,45,45,.25);

  background:#000;
}

.band-img{
  width:100%;
  height:100%;
  display:block;

  /* IMPORTANTE: preenche a tela toda sem barra preta */
  object-fit: cover;
  object-position: center;

  filter: saturate(1.06) contrast(1.03);
}

/* vinheta */
.band-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 340px at 50% 40%, rgba(0,0,0,0), rgba(0,0,0,.55)),
    linear-gradient(90deg, rgba(0,0,0,.40), rgba(0,0,0,0) 18%, rgba(0,0,0,0) 82%, rgba(0,0,0,.40));
  pointer-events:none;
}

/* botão download com glow azul */
.btn-download{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 22px;
  margin-top: var(--band-to-btn);

  border-radius:10px;
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  background:rgba(0,0,0,.35);

  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}

.btn-download:hover{
  background:rgba(0,0,0,.45);
  border-color: rgba(58,160,255,.65);
  box-shadow:
    0 0 0 1px rgba(58,160,255,.25) inset,
    0 0 28px rgba(58,160,255,.25);
  transform: translateY(-1px);
}

/* =========================
   SEÇÕES
========================= */
.section{ padding:48px 0; }

.section-title{
  margin:0 0 26px;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.8px;
  font-weight:900;
  font-size:18px;
}
.section-title span{ color:var(--red); }
.center{ text-align:center; }

.section-subtitle{
  margin:0 auto 26px;
  max-width:720px;
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
}

/* Estatísticas - 1 card */
.stats-grid{
  display:grid;
  justify-content:center;
  gap:14px;
}
.stats-grid--one{
  grid-template-columns: minmax(240px, 360px);
}
.stat-card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px;
  text-align:center;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.stat-card.highlight{
  border-color: rgba(255,45,45,.55);
  box-shadow: 0 0 0 1px rgba(255,45,45,.18) inset;
}
.stat-icon{ font-size:18px; margin-bottom:10px; color: var(--red); }
.stat-value{ font-size:22px; font-weight:900; letter-spacing:.4px; }
.stat-label{
  margin-top:6px;
  font-size:10px;
  letter-spacing:.8px;
  color:rgba(255,255,255,.55);
  font-weight:800;
}
.stat-card.highlight:hover{
  transform: translateY(-2px);
  border-color: rgba(255,45,45,.95);
  box-shadow:
    0 0 0 1px rgba(255,45,45,.28) inset,
    0 0 34px rgba(255,45,45,.20),
    0 0 18px rgba(255,45,45,.14);
}

/* About */
.about{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:38px;
  align-items:center;
  margin-top:10px;
}
.about-image{
  border-radius:16px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
  border:1px solid var(--line);
}
.about-image img{ width:100%; height:auto; display:block; }

.about-title{
  margin:0 0 12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
  line-height:1.1;
}
.about-title span{ color:var(--red); }
.about-title .red{ color:var(--red); }

.about-text{
  margin:0 0 12px;
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
  max-width:520px;
}

/* Staff hover vermelho */
.staff-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap:26px;
  margin-top:26px;
  margin-bottom:32px;
}
.staff-card{ text-align:center; padding:10px 10px 0; }

.staff-avatar{
  width:96px;
  height:96px;
  border-radius:999px;
  overflow:hidden;
  margin:0 auto 14px;
  position:relative;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.staff-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: grayscale(100%) brightness(.85) contrast(1.05);
  transition: filter .18s ease, transform .18s ease;
}
.staff-avatar::before{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:999px;
  border:2px solid rgba(255,45,45,0);
  transition: border-color .18s ease;
  pointer-events:none;
}
.staff-avatar::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(255,45,45,.55), rgba(255,45,45,0) 65%);
  opacity:0;
  transition: opacity .18s ease;
  pointer-events:none;
}
.staff-card:hover .staff-avatar{
  border-color: rgba(255,45,45,.55);
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255,45,45,.18);
}
.staff-card:hover .staff-avatar::before{ border-color: rgba(255,45,45,.95); }
.staff-card:hover .staff-avatar::after{ opacity:1; }
.staff-card:hover .staff-avatar img{
  filter: grayscale(0%) brightness(1.08) contrast(1.08) saturate(1.15);
  transform: scale(1.03);
}

.staff-name{ font-weight:900; margin:0 0 6px; }
.staff-role{
  color:var(--red);
  font-weight:900;
  font-size:10px;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.staff-desc{
  margin:0 auto;
  max-width:300px;
  color:rgba(233,238,246,.70);
  font-size:11px;
  line-height:1.45;
}

/* Discord CTA pulsando */
@keyframes floatPulse{
  0%{ transform: translateY(0); box-shadow: 0 0 0 rgba(255,45,45,0); }
  50%{ transform: translateY(-6px); box-shadow: 0 0 26px rgba(255,45,45,.22); }
  100%{ transform: translateY(0); box-shadow: 0 0 0 rgba(255,45,45,0); }
}
.discord-cta{
  margin:10px auto 0;
  border-radius:12px;
  border:1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,45,45,.10), rgba(255,255,255,.02));
  padding:28px 18px;
  text-align:center;
}
.discord-cta h3{
  margin:0 0 8px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.discord-cta h3 span{ color:var(--red); }
.discord-cta p{
  margin:0 auto 16px;
  max-width:620px;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}
.btn-discord{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  background: linear-gradient(180deg, var(--red), var(--red2));
  color:#fff;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.12);
  animation: floatPulse 1.4s ease-in-out infinite;
}
.btn-discord:hover{
  filter: brightness(1.06);
  animation-play-state: paused;
}

/* =========================
   FOOTER
========================= */
.footer{
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:30px;
  padding:40px 18px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.footer-brand img{ width:26px; height:26px; border-radius:6px; }
.footer-text{
  margin:0;
  max-width:360px;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}
.footer-col h4{
  margin:0 0 12px;
  text-transform:uppercase;
  font-weight:900;
  font-size:12px;
  letter-spacing:.8px;
}
.footer-col a{
  display:block;
  color:rgba(233,238,246,.72);
  text-decoration:none;
  margin:10px 0;
  font-size:12px;
}
.footer-col a:hover{ color:#fff; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:14px 0;
}
.footer-bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:rgba(233,238,246,.55);
  font-size:12px;
}
.footer-links{ display:flex; gap:14px; }
.footer-links a{ color:rgba(233,238,246,.55); text-decoration:none; }
.footer-links a:hover{ color:#fff; }

/* =========================
   MODAL
========================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(0,0,0,.65);
  z-index:50;
}
.modal.open{ display:flex; }
.modal-card{
  width:min(520px, 100%);
  background:#0f1620;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
}
.modal-card h2{ margin:0 0 8px; }
.modal-card p{ margin:0 0 12px; color:var(--muted); }

.copyrow{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:12px;
}
code{
  flex:1;
  padding:10px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  overflow:auto;
}
.btn-mini{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.btn-close{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:linear-gradient(180deg, var(--red), var(--red2));
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

/* =========================
   DOWNLOADS (PÁGINA DOWNLOAD)
   2 cards Google lado a lado + hover vermelho atrás
========================= */
.downloads{
  padding:42px 0 60px;
}
.downloads-hero{
  text-align:center;
  padding:30px 18px 14px;
}
.downloads-hero h1{
  margin:0 0 8px;
  font-size:28px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.downloads-hero p{
  margin:0 auto;
  max-width:820px;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.dl-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap:26px;
  align-items:stretch;
}

.dl-card{
  margin-top:50px;
  position:relative;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:20px 18px;
  text-align:center;
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.dl-card::before{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 50% 40%, rgba(255,45,45,.22), rgba(0,0,0,0) 60%);
  opacity:0;
  transition: opacity .16s ease;
  pointer-events:none;
}
.dl-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,45,45,.60);
  box-shadow: 0 0 28px rgba(255,45,45,.10);
}
.dl-card:hover::before{ opacity:1; }

.dl-logo{
  width:54px;
  height:54px;
  object-fit:contain;
  margin:0 auto 12px;
  display:block;
}
.dl-title{
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  margin:0 0 10px;
}
.dl-text{
  margin:0 auto 16px;
  max-width:320px;
  color:rgba(233,238,246,.72);
  font-size:12px;
  line-height:1.45;
}
.dl-btn{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, #7b2cff, #4b16ff);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  transition: transform .15s ease, filter .15s ease;
}
.dl-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width:900px){
  .nav-center{ display:none; }
  .title{ font-size:34px; }
  .about{ grid-template-columns: 1fr; }
  .staff-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .dl-grid{ grid-template-columns: 1fr; }

  :root{
    --band-h: clamp(420px, 60vh, 720px);
    --band-to-btn: 14px;
  }
}
