* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

/* FUNDO */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  z-index: 0;
  pointer-events: none;
}

.glow-red {
  width: 420px;
  height: 420px;
  background: rgba(255, 0, 0, 0.16);
  top: 20px;
  left: -90px;
}

.glow-purple {
  width: 380px;
  height: 380px;
  background: rgba(129, 70, 255, 0.10);
  right: -100px;
  top: 180px;
}

/* NEVE */
.snow {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  filter: blur(0.4px);
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% {
    transform: translateY(-20px) translateX(0);
  }
  100% {
    transform: translateY(110vh) translateX(30px);
  }
}

/* HEADER */
.downloads-header {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-area h1 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-area h1 span {
  color: #ff0000;
}

.logo-area p {
  color: #989898;
  margin-top: 5px;
  font-size: 14px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.header-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.header-btn.primary {
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 0, 0, 0.22);
}

.header-btn.secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.header-btn:hover {
  transform: translateY(-2px);
}

/* MAIN */
.downloads-main {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 80px;
}

/* HERO */
.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-bottom: 28px;
}

.hero-left,
.hero-right {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.hero-left {
  padding: 32px;
}

.hero-right {
  padding: 24px;
}

.mini-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.10);
  color: #ff6c6c;
  border: 1px solid rgba(255, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-left h2 {
  font-size: 54px;
  line-height: 0.98;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.hero-left h2 span {
  color: #ff0000;
}

.hero-left p {
  color: #b3b3b3;
  line-height: 1.8;
  font-size: 16px;
  max-width: 700px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.hero-mini-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.hero-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-mini-card span {
  color: #b0b0b0;
  font-size: 13px;
  line-height: 1.6;
}

.hero-mini-card.red { border-color: rgba(255,0,0,0.18); }
.hero-mini-card.purple { border-color: rgba(129,70,255,0.20); }
.hero-mini-card.green { border-color: rgba(0,255,163,0.16); }

/* INFO CARD */
.info-card {
  height: 100%;
}

.card-top {
  margin-bottom: 16px;
}

.red-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.18);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.card-top h3 {
  font-size: 30px;
  line-height: 1.05;
}

.card-text {
  color: #b3b3b3;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.video-placeholder {
  min-height: 270px;
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
}

.video-inner span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff6666;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.video-inner strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.video-inner small {
  color: #a4a4a4;
  line-height: 1.7;
  font-size: 14px;
}

/* TÍTULO */
.section-title-box {
  margin-bottom: 18px;
}

.section-title-box h2 {
  font-size: 40px;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.section-title-box h2 span {
  color: #ff0000;
}

.section-title-box p {
  color: #a4a4a4;
  font-size: 15px;
  line-height: 1.7;
}

/* GRID DOWNLOADS */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transition: .25s ease;
}

.download-card:hover {
  transform: translateY(-4px);
}

.red-card {
  background: linear-gradient(180deg, rgba(255,0,0,0.10), rgba(255,255,255,0.02));
  border-color: rgba(255,0,0,0.16);
}

.purple-card {
  background: linear-gradient(180deg, rgba(129,70,255,0.12), rgba(255,255,255,0.02));
  border-color: rgba(129,70,255,0.18);
}

.green-card {
  background: linear-gradient(180deg, rgba(0,255,163,0.10), rgba(255,255,255,0.02));
  border-color: rgba(0,255,163,0.14);
}

.orange-card {
  background: linear-gradient(180deg, rgba(255,145,0,0.12), rgba(255,255,255,0.02));
  border-color: rgba(255,145,0,0.16);
}

.dark-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.download-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.download-card h3 {
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.download-card p {
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.download-meta div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}

.download-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.download-meta span {
  color: #b5b5b5;
  font-size: 13px;
}

.download-btn {
  min-height: 50px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .25s ease;
  width: 100%;
}

.red-btn {
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
}

.purple-btn {
  background: linear-gradient(180deg, #8a4dff 0%, #5b1de2 100%);
}

.green-btn {
  background: linear-gradient(180deg, #19d68b 0%, #0aa06a 100%);
}

.orange-btn {
  background: linear-gradient(180deg, #ff9a1a 0%, #d66f00 100%);
}

.dark-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.download-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* FINAL */
.final-box {
  margin-top: 30px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,0,0,0.11), rgba(129,70,255,0.08));
  border: 1px solid rgba(255,0,0,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-mini {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff6d6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.final-box h2 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.final-box p {
  color: #d0d0d0;
  line-height: 1.8;
  max-width: 760px;
}

.final-btn {
  min-width: 220px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
}

.final-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,0,0,0.20);
}

/* BOTÃO FLUTUANTE */
.support-float-btn {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 20px rgba(255,0,0,0.28),
    0 12px 30px rgba(0,0,0,0.34);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBtn 2.6s ease-in-out infinite;
}

.support-float-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* MODAL SUPORTE */
.support-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(12px);
}

.support-box {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(19,19,19,0.98), rgba(7,7,7,0.98));
  border: 1px solid rgba(255,0,0,0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 32px rgba(255,0,0,0.12),
    0 16px 50px rgba(0,0,0,0.50);
  padding: 22px;
  position: relative;
  animation: modalIn .3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.support-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: .25s ease;
}

.support-close:hover {
  background: rgba(255,0,0,0.18);
  color: #ff6666;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.support-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-avatar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.support-header h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.support-header p {
  color: #9d9d9d;
  font-size: 13px;
}

.support-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.msg {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
  font-size: 14px;
}

.user-msg {
  align-self: flex-end;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.bot-msg {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  color: #dddddd;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom-left-radius: 6px;
}

.support-go-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  transition: .25s ease;
}

.support-go-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .downloads-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left h2 {
    font-size: 40px;
  }

  .hero-mini-grid,
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-btn {
    flex: 1;
  }

  .hero-left,
  .hero-right,
  .download-card,
  .final-box {
    padding: 20px;
  }

  .section-title-box h2,
  .final-box h2 {
    font-size: 30px;
  }

  .download-meta {
    grid-template-columns: 1fr;
  }

  .support-float-btn {
    right: 10px;
    width: 56px;
    height: 56px;
  }
}

/* FOOTER RED NETWORK */
.footer-red {
  margin-top: 60px;
  padding: 40px 20px 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 0 -10px 40px rgba(255, 0, 0, 0.1);
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-left h2 {
  font-size: 28px;
}

.footer-left span {
  color: #ff0000;
}

.footer-left p {
  margin-top: 10px;
  color: #aaa;
  line-height: 1.6;
}

/* LINKS */
.footer-center h3,
.footer-right h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-center ul {
  list-style: none;
}

.footer-center ul li {
  margin-bottom: 8px;
}

.footer-center a,
.footer-right a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
  color: #ff0000;
}

/* CONTATO */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVO */
@media(max-width:900px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right{
    align-items: center;
  }
}