/* ===============================
   SERVERS – PROTECCIÓN DE SERVIDORES IA
   =============================== */

/* HERO */
.servers-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #05070b;
}

/* VIDEO */
.servers-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

/* OVERLAY */
.servers-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 1;
}

/* CONTENEDOR */
.servers-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 6%;
  margin: 0 auto;
  color: #ffffff;
}

/* ACCIONES HERO */
.server-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

/* ===============================
   SECCIONES
   =============================== */

.servers-section {
  padding: 110px 6%;
  background: radial-gradient(circle at top, #0b1f1c, #050505);
  color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.servers-dark {
  padding: 110px 6%;
  background: #05070b;
  color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

/* TITULOS */
.servers-section h2,
.servers-dark h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  color: #00ffcc;
}

/* ===============================
   GRID
   =============================== */

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===============================
   CARD
   =============================== */

.servers-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(0, 255, 204, 0.18);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
}

.servers-card:hover,
.servers-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 255, 204, 0.12);
  outline: none;
}

.servers-card h3 {
  color: #00ffcc;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.3rem;
}

.servers-card p {
  color: rgba(245, 247, 251, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.servers-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.servers-card li {
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: rgba(245, 247, 251, 0.75);
}

/* PRECIO */
.server-price {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: #00ffcc;
  font-size: 1rem;
}

/* ===============================
   CTA FINAL
   =============================== */

.servers-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .servers-section,
  .servers-dark {
    padding: 90px 6%;
  }
}

@media (max-width: 600px) {
  .servers-container {
    padding: 0 5%;
  }

  .server-actions {
    flex-direction: column;
  }

  .servers-section h2,
  .servers-dark h2 {
    margin-bottom: 35px;
  }
}

/* TV / PANTALLAS GRANDES */
@media (min-width: 1600px) {
  .servers-container {
    max-width: 1400px;
  }
}
