

    header {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav a {
      margin-left: 20px;
      color: #ccc;
      text-decoration: none;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-box {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, #ff2f6b, #ffcc33);
      border-radius: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      color: #000;
      font-size: 18px;
    }

    /* HERO */
    .hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      margin-top: -55px
    }

    .hero-text {
      flex: 1;
    }

.hero-text h1 {
  font-size: 45px;
  font-weight: 900;
  color: #e0e0e0;
}

.hero-text span {
  color: #ff2b2b; 
  text-shadow: 0 0 10px rgba(255,20,20,0.7);
}

    .hero-buttons a {
      display: inline-block;
      margin-right: 15px;
      margin-top: 20px;
      padding: 12px 22px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
    }

    .btn-download {
     background: linear-gradient(135deg, #7a0000, #b10000);
     color: #fff;
     border: 1px solid #ff2b2b;
     box-shadow: 0 0 12px rgba(255,0,0,0.45);
     transition: .2s;
    }

    .btn-download:hover {
     background: #ff1b1b;
     box-shadow: 0 0 18px rgba(255,0,0,0.75);
    }

    .btn-discord {
     border: 1px solid #551010;
     background: rgba(30,0,0,0.4);
     color: #ffdddd;
     transition: .2s;
    }

    .btn-discord:hover {
     border-color: #ff2b2b;
     background: rgba(80,0,0,0.6);
    }

    .hero-img {
      flex: 1;
      height: 330px;
      border-radius: 20px;
      background: #111;
      border: 1px solid #333;
      position: relative;
      overflow: hidden;
      margin-top: 90px; /* ou o valor que tu quiser */
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
    }

    /* FEATURES */
    section {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 10px;
    }

#features h2 {
  text-align: center;
  width: 100%;
  margin: 0 auto 40px auto;
  font-size: px;
  color: #ff2f2f; /* vermelho sangue, opcional */
  text-shadow: 0 0 10px #600;
}

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .card {
      padding: 20px;
      background: linear-gradient(145deg, #0b0000, #1a0000);
      border: 1px solid #420000;
      border-radius: 15px;
      color: #e8e8e8;
      box-shadow: 0 0 12px rgba(100,0,0,0.4);
      transition: .2s;
    }

    .card:hover {
      border-color: #ff2b2b;
      box-shadow: 0 0 20px rgba(255,0,0,0.45);
    }   

    .card h3 {
     margin: 0 0 10px;
     color: #ff2b2b;
     font-size: 20px;
     font-weight: 700;
     text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    }

    .card p {
      margin: 0;
      color: #e2e2e2;
      font-size: 15px;
      line-height: 1.4;
    }
    /* CLASSES */
    

    /* DOWNLOAD / STATUS */
    .download-box,
    .status-box {
      background: linear-gradient(145deg, #0b0000, #150000);
      border: 1px solid #420000;
      color: #e0e0e0;
      box-shadow: 0 0 14px rgba(120,0,0,0.35);
      transition: .2s;
    }

    .download-box:hover,
    .status-box:hover {
      border-color: #ff2b2b;
      box-shadow: 0 0 22px rgba(255,0,0,0.55);
    }

    /* FOOTER */
footer {
  border-top: 1px solid #222;
  padding: 10px 0;
  text-align: center;
  color: #777;
}

#download {
  margin-bottom: 0 !important;
}

#features {
  margin-bottom: 0 !important;
}

footer {
  margin-top: 10px !important;
  padding: 4px 0 !important;
}


/* CAROUSEL BLOOD THEME */

.blood-carousel {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  margin-top: -25px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #500000;
  box-shadow: 0 0 25px rgba(255,0,0,0.3);
  height: 700px; /* controla altura total aqui */
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* preenche tudo sem distorcer */

}

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.6s ease-in-out;
}

.carousel-content {
  position: absolute;
  top: 40px; /* controla a altura aqui */
  left: 40px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #ff2b2b;
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
  max-width: 500px; /* opcional, mas recomendado */
}

.carousel-content h2 {
  margin: 0 0 10px;
  color: #ff2b2b;
  text-shadow: 0 0 10px #900;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  background: rgba(40,0,0,0.7);
  border: 1px solid #ff2b2b;
  color: #fff;
  font-size: 32px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.2s;
  z-index: 10;
  line-height: 35px; /* ajusta aqui */
    
}

.prev:hover,
.next:hover {
  background: #c41818;
  box-shadow: 0 0 15px #c41818;
}

.prev {
  left: 25px;
  right: auto;
}

.next {
  right: 25px;
  left: auto;
}

.carousel-wrapper {
  max-width: 1200px;
  padding: 0 20px;
}

.carousel-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #ff2b2b;
  text-shadow: 0 0 12px rgba(255,0,0,0.6);
  margin-bottom: 35px;
}

.carousel-title::after {
  content: "";
  display: block;
  width: 500px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(to right, transparent, #ff2b2b, transparent);
  box-shadow: 0 0 10px red;
}



/* CONTAINER DOS BOTÕES */
.social-float {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BOTÃO */
.social-btn {
  display: flex;
  align-items: center;
    justify-content: space-between;
  gap: 10px;

  padding: 10px 15px;
  width: 180px;

  text-decoration: none;
  color: #fff;
  font-weight: bold;

  border-radius: 0 10px 10px 0;

  transform: translateX(-130px);
  transition: all 0.3s ease;

  box-shadow: 0 0 10px rgba(0,0,0,0.5);

    border: 1px solid #ff2b2b;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
  border-radius: 10px;
  transition: 0.2s;
  background: rgba(20, 0, 0, 0.6);
}

/* ÍCONE */
.social-btn img {
  width: 30px;
  height: 30px;
  display: block;
}
/* Hover aparece */
.social-btn:hover {
  transform: translateX(0);
    border-color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

/* CORES OFICIAIS */
.whatsapp {
  background: #25D366;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.discord {
  background: #5865F2;
}

.hero-socials{
    display:flex;
    gap:15px;
    margin-top:20px;
    align-items:center;
}

.hero-socials a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255, 0, 0, 0.35);

    border-radius:12px;

    transition:0.25s;
    backdrop-filter: blur(5px);

    box-shadow:0 0 10px rgba(255, 0, 0, 0.15);
}

.hero-socials a:hover{
    transform:translateY(-4px);

    background:rgba(255, 0, 0, 0.12);

    border-color:#ff2a2a;

    box-shadow:
        0 0 12px rgba(255, 0, 0, 0.4),
        0 0 25px rgba(255, 0, 0, 0.25);
}

.hero-socials img{
    width:22px;
    height:22px;
}

.server-info{
    list-style:none;
    padding:0;
    margin:0;
}

.server-info li{
    padding:8px 0;
    border-bottom:1px solid rgba(255,0,0,0.15);
    color:#e2e2e2;
}

.server-info li:last-child{
    border-bottom:none;
}

.info-link{
    margin-left:8px;
    padding:2px 8px;
    border:1px solid #ff2b2b;
    border-radius:5px;
    color:#ff2b2b;
    text-decoration:none;
    font-size:12px;
    font-weight:bold;
    transition:.2s;
}

.info-link:hover{
    background:#ff2b2b;
    color:#fff;
}

.online-count{
    color:#00ff66;
    font-weight:bold;
    text-shadow:0 0 8px #00ff66;
}

@keyframes fadeIn {
  from { opacity: 0.3; }
  to { opacity: 1; }
}