/*==================================================
 HERO
==================================================*/

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding-top: 48px; /* altura del navbar */
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../img/hero/server-cloud1.webp");
  background-size: cover;
  background-repeat: no-repeat;

  /* mueve la imagen un poco hacia la derecha */
  background-position: 55% center;

  z-index: 0;
}

.hero h1 {
  font-size: 64px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: 0.08em;

  margin: 50px 0 28px;

  max-width: 700px;
}

.hero p {
  font-size: 24px;

  line-height: 1.8;

  color: #d6e0f0;

  max-width: 650px;

  margin-bottom: 50px;
}

.hero-buttons {
  display: flex;

  gap: 18px;

  width: 572px;

  margin-top: 45px;
  margin-bottom: 50px;
}

.hero-buttons a {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 26px;
  box-sizing: border-box;
}

.btn-primary {
  background: #2563eb;

  color: #fff;

  text-decoration: none;

  padding: 18px 40px;

  border-radius: 12px;

  font-weight: 700;

  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 28px;
  width: 572px;
  flex-wrap: nowrap;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 10px;

  flex: 1;

  color: #dbe8f8;
  font-size: 0.95rem;
}

.hero-features i {
  flex-shrink: 0;

  width: 20px;
  height: 20px;
  min-width: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #22c55e;
  color: #ffffff;

  font-size: 12px;
  line-height: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(8, 17, 31, 0.98) 0%,
    rgba(8, 17, 31, 0.95) 25%,
    rgba(8, 17, 31, 0.82) 45%,
    rgba(8, 17, 31, 0.45) 68%,
    rgba(8, 17, 31, 0.08) 100%
  );

  z-index: 1;
}

/*==============================
 HERO CARDS
==============================*/

.hero-highlights {
  display: flex;

  gap: 16px;

  margin: 35px 0 45px;

  flex-wrap: nowrap;
}

.highlight-card {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px 20px;

  border-radius: 18px;

  background: rgba(16, 25, 46, 0.55);

  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(18px);

  transition: 0.35s;

  width: 180px;
}

.highlight-card:hover {
  transform: translateY(-8px);

  border-color: rgba(37, 99, 235, 0.45);

  box-shadow: 0 0 35px rgba(37, 99, 235, 0.2);
}

.highlight-card i {
  font-size: 30px;

  width: 46px;

  height: 46px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 12px;

  background: rgba(37, 99, 235, 0.15);

  color: #38bdf8;
}

.highlight-card strong {
  display: block;

  font-size: 17px;

  margin-bottom: 4px;
}

.highlight-card span {
  font-size: 13px;

  color: #a8b6cc;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 0px;
}
