/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('inc/wallbg.jpg') center top no-repeat fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
  text-align: center;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  z-index: 0;
}

/* ===== LOGO ===== */
.logo {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  margin-bottom: 20px;
}
.logo img {
  height: 160px;
  filter: drop-shadow(0 0 18px rgba(0,255,150,0.7));
  max-width: 90%;
}

/* ===== GRID ===== */
.section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1100px;
  margin: 20px auto 50px;
  flex-wrap: nowrap;
  padding: 0 20px;
}

/* ===== BOX BASE ===== */
.server-box {
  flex: 1;
  min-width: 30%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}
.server-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,255,255,0.3);
}

/* ===== COLOR VARIANTS ===== */
.server-hard {
  background: linear-gradient(180deg, rgba(0,255,120,0.2), rgba(0,80,40,0.7));
  border: 1px solid rgba(0,255,150,0.4);
}
.server-easy {
  background: linear-gradient(180deg, rgba(0,160,255,0.2), rgba(0,40,100,0.7));
  border: 1px solid rgba(0,170,255,0.4);
}
.server-semi {
  background: linear-gradient(180deg, rgba(255,200,0,0.2), rgba(100,70,0,0.7));
  border: 1px solid rgba(255,200,0,0.4);
}

/* ===== BOX CONTENT ===== */
.server-content {
  padding: 30px 15px 40px;
  position: relative;
  z-index: 2;
}
.server-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.server-sub {
  font-size: 16px;
  color: #fffd5c;
  margin-bottom: 20px;
}
.server-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 30px;
  padding: 0 10px;
}

/* ===== BUTTON ===== */
.server-button {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(90deg,#00ffaa,#0077ff);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0,255,200,0.5);
}
.server-button:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg,#00ffcc,#0066ff);
  color: #fff;
  box-shadow: 0 0 30px rgba(0,255,200,0.8);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  color: #bbb;
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets */
@media (max-width: 992px) {
  .section {
    flex-wrap: wrap;
    gap: 25px;
  }

  .server-box {
    flex: 1 1 45%;
    min-width: 45%;
  }

  .server-title {
    font-size: 24px;
  }
}

/* Celulares */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .server-box {
    width: 90%;
    min-width: auto;
    margin: 0 auto;
  }

  .server-content {
    padding: 25px 15px 35px;
  }

  .server-title {
    font-size: 22px;
  }

  .server-sub {
    font-size: 15px;
  }

  .server-desc {
    font-size: 14px;
  }

  .server-button {
    width: 100%;
    font-size: 14px;
  }

  .logo img {
    height: 120px;
    max-width: 80%;
  }
}

/* Telas muito pequenas (≤480px) */
@media (max-width: 480px) {
  .server-title {
    font-size: 20px;
  }

  .server-desc {
    font-size: 13px;
  }

  footer {
    font-size: 12px;
  }
}
