/* ======================================
   HERO CLOUD SERVERS
====================================== */

#hero-servers {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(124,58,237,0.16),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(59,130,246,0.14),
      transparent 34%
    ),

    linear-gradient(
      180deg,
      #f3f0ff 0%,
      #eef4ff 26%,
      #e8f5ff 58%,
      #eaf8ff 100%
    );

  padding: 60px 0 80px;

  border-bottom: 1px solid rgba(15,23,42,0.05);
}

/* TEXTURA PREMIUM */
#hero-servers::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(255,255,255,0.92),
      transparent 18%
    ),

    radial-gradient(
      circle at 82% 12%,
      rgba(255,255,255,0.70),
      transparent 22%
    );

  pointer-events: none;
}

/* GLOW DIFERENCIADOR */
#hero-servers::after {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  left: 50%;
  top: 42%;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(124,58,237,0.12),
      transparent 72%
    );

  filter: blur(95px);

  pointer-events: none;
}

/* CONTENIDO */
#hero-servers .container {
  position: relative;
  z-index: 2;
}

/* BADGE */
.hero-server-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  padding: 10px 18px;
  margin-bottom: 18px;

  border-radius: 50px;

  background: rgba(255,255,255,0.72);

  border: 1px solid rgba(124,58,237,0.12);

  color: #5b21b6;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 28px rgba(91,33,182,0.06);
}

.hero-server-badge i {
  color: #7c3aed;
}

/* TITULO */
.hero-server-title {
  font-size: clamp(2.8rem, 5vw, 5rem);

  line-height: 1.08;
  font-weight: 800;

  color: #0f172a;

  margin-bottom: 20px;

  letter-spacing: -1px;
}

/* SUBTITULO */
.hero-server-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.45rem);

  line-height: 1.8;

  color: #475569;

  max-width: 920px;

  margin:
    0 auto
    35px auto;
}

/* CTA */
.hero-server-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BOTONES */
.hero-server-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 34px;

  border-radius: 50px;

  text-decoration: none;

  font-size: 1rem;
  font-weight: 600;

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease;
}

/* BOTON PRINCIPAL */
.hero-server-btn.primary {
  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #3b82f6
    );

  color: #fff;

  box-shadow:
    0 15px 40px rgba(124,58,237,0.20);
}

/* HOVER */
.hero-server-btn:hover {
  transform: translateY(-4px);
}
