/* ======================================
   HERO CLOUD BACKUPS
====================================== */

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

  background:
  radial-gradient(
    circle at top left,
    rgba(0,198,255,0.16),
    transparent 32%
  ),

  radial-gradient(
    circle at top right,
    rgba(0,123,255,0.12),
    transparent 28%
  ),

  linear-gradient(
    180deg,
    #dff4ff 0%,
    #edf7ff 22%,
    #f4faff 48%,
    #e8f5ff 75%,
    #d9efff 100%
  );

  padding: 60px 0 80px;

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

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

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255,255,255,0.9),
      transparent 18%
    ),

    radial-gradient(
      circle at 80% 10%,
      rgba(255,255,255,0.65),
      transparent 22%
    );

  pointer-events: none;
}

/* GLOW CORPORATIVO */
#hero-backups::after {
  content: "";
  position: absolute;

  width: 480px;
  height: 480px;

  left: 50%;
  top: 45%;

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

  background:
    radial-gradient(
      circle,
      rgba(0,198,255,0.10),
      transparent 72%
    );

  filter: blur(90px);

  pointer-events: none;
}

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

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

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

  border-radius: 50px;

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

  border: 1px solid rgba(0,102,204,0.10);

  color: #0066cc;

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

  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 25px rgba(15,23,42,0.04);
}

.hero-backup-badge i {
  color: #00b9ff;
}

/* TITULO */
.hero-backup-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-backup-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-backup-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BOTONES */
.hero-backup-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-backup-btn.primary {
  background:
    linear-gradient(
      135deg,
      #007bff,
      #00c6ff
    );

  color: #fff;

  box-shadow:
    0 15px 40px rgba(0,198,255,0.20);
}

/* BOTON SECUNDARIO */
.hero-backup-btn.secondary {
  background: rgba(255,255,255,0.82);

  border: 1px solid rgba(0,102,204,0.10);

  color: #0f172a;

  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 30px rgba(15,23,42,0.05);
}

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

/* ======================================
   EXPLAINER SECTION
====================================== */

.backup-explainer {
  position: relative;
  overflow: hidden;

  background:

    /* GLOW SUPERIOR */
    radial-gradient(
      circle at top left,
      rgba(0,198,255,0.10),
      transparent 28%
    ),

    /* GLOW DERECHO */
    radial-gradient(
      circle at 85% 20%,
      rgba(0,123,255,0.08),
      transparent 24%
    ),

    /* BASE */
    linear-gradient(
      180deg,
      #f7fbff 0%,
      #eef7ff 45%,
      #f8fbff 100%
    );

  padding: 110px 0;
}

/* TEXTURA SUAVE */
.backup-explainer::before {
  content: "";
  position: absolute;
  inset: 0;

  background:

    radial-gradient(
      circle at -10% 20%,
      rgba(255,255,255,0.22),
      transparent 22%
    ),

    radial-gradient(
      circle at 110% 10%,
      rgba(255,255,255,0.18),
      transparent 24%
    );

  pointer-events: none;
}

/* BRILLO CENTRAL SUAVE */
.backup-explainer::after {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  left: 50%;
  top: 50%;

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

  background:
    radial-gradient(
      circle,
      rgba(0,198,255,0.08),
      transparent 72%
    );

  filter: blur(90px);

  pointer-events: none;
}

/* MINI BADGE */
.section-mini-badge {
  display: inline-block;

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

  border-radius: 50px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.72)
    );

  border: 1px solid rgba(0,102,204,0.12);

  color: #0066cc;

  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 1px;

  backdrop-filter: blur(14px);

  box-shadow:
    0 10px 30px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

/* TITULO */
.backup-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;

  color: #0f172a;

  margin-bottom: 30px;
}

/* TEXTO */
.backup-text {
  font-size: 1.05rem;
  line-height: 1.9;

  color: #475569;

  margin-bottom: 22px;
}

/* BENEFICIOS */
.backup-points {
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.backup-point {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #0f172a;

  font-weight: 600;
}

.backup-point i {
  color: #00b9ff;
}

/* VISUAL */
.backup-visual {
  position: relative;
  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* GLOW */
.backup-glow {
  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
    rgba(0,198,255,0.18),
    transparent 70%);

  filter: blur(70px);
}

/* CARD */
.backup-card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 480px;

  padding: 45px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.82),
      rgba(255,255,255,0.72)
    );

  border: 1px solid rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);

  box-shadow:
    0 25px 70px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

/* ICONO */
.backup-card-icon {
  width: 85px;
  height: 85px;

  border-radius: 22px;

  background:
    linear-gradient(135deg, #007bff, #00c6ff);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;
}

.backup-card-icon i {
  font-size: 2rem;
  color: #fff;
}

/* TITULO */
.backup-card h3 {
  font-size: 1.7rem;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 18px;
}

/* TEXTO */
.backup-card p {
  color: #475569;
  line-height: 1.8;
}

/* FEATURES */
.backup-card-features {
  margin-top: 35px;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.backup-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;

  border-radius: 50px;

  background: rgba(0,102,204,0.06);

  color: #0066cc;

  font-size: 0.9rem;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {

  #hero-backups {
    padding: 90px 0 80px;
  }

  .hero-backup-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-backup-btn {
    width: 100%;
    justify-content: center;
  }

  .backup-explainer {
    padding: 80px 0;
  }

  .backup-visual {
    min-height: auto;
  }

  .backup-card {
    padding: 35px 28px;
  }

}



/* ======================================
   BENEFICIOS Y VENTAJAS
====================================== */

.backup-benefits {
  position: relative;

  overflow: hidden;

  padding: 120px 0;

  background:

    radial-gradient(
      circle at top left,
      rgba(0,123,255,0.10),
      transparent 30%
    ),

    radial-gradient(
      circle at 85% 20%,
      rgba(0,198,255,0.08),
      transparent 26%
    ),

    linear-gradient(
      180deg,
      #edf6ff 0%,
      #e4f2ff 45%,
      #f2f8ff 100%
    );
}

.backup-benefits::before {
  content: "";

  position: absolute;
  inset: 0;

  background:

    radial-gradient(
      circle at 15% 20%,
      rgba(255,255,255,0.20),
      transparent 18%
    ),

    radial-gradient(
      circle at 90% 10%,
      rgba(255,255,255,0.12),
      transparent 20%
    );

  pointer-events: none;
}

/* BADGE */
.benefits-badge {
  display: inline-block;

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

  border-radius: 50px;

  background: rgba(0,102,204,0.08);

  color: #0066cc;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* TITULO */
.benefits-title {
  font-size: clamp(2.2rem, 4vw, 4rem);

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

  color: #0f172a;

  margin-bottom: 28px;

  letter-spacing: -1px;
}

/* SUBTITULO */
.benefits-subtitle {
  max-width: 950px;

  margin: 0 auto;

  font-size: 1.1rem;
  line-height: 1.9;

  color: #475569;
}

/* CARD */
.benefit-card {
  height: 100%;

  padding: 45px;

  border-radius: 28px;

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

  border: 1px solid rgba(15,23,42,0.06);

  box-shadow:
    0 20px 50px rgba(15,23,42,0.05);

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

/* HOVER */
.benefit-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 28px 65px rgba(15,23,42,0.08);
}

/* ICONO */
.benefit-icon {
  width: 82px;
  height: 82px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;
}

.benefit-icon i {
  font-size: 2rem;
  color: #fff;
}

/* VARIANTES */
.benefit-icon.blue {
  background:
    linear-gradient(
      135deg,
      #0066cc,
      #008cff
    );
}

.benefit-icon.cyan {
  background:
    linear-gradient(
      135deg,
      #00a2ff,
      #00d4ff
    );
}

/* TITULO CARD */
.benefit-card h3 {
  font-size: 1.8rem;
  font-weight: 800;

  color: #0f172a;

  margin-bottom: 22px;
}

/* INTRO */
.benefit-intro {
  color: #475569;

  line-height: 1.85;

  margin-bottom: 36px;
}

/* LISTA */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ITEM */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ICONO */
.benefit-item i {
  color: #00b9ff;

  font-size: 1.05rem;

  margin-top: 4px;
}

/* TEXTO */
.benefit-item strong {
  display: block;

  margin-bottom: 6px;

  color: #0f172a;

  font-size: 1rem;
}

.benefit-item span {
  display: block;

  color: #64748b;

  line-height: 1.7;

  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {

  .backup-benefits {
    padding: 85px 0;
  }

  .benefit-card {
    padding: 35px 28px;
  }

  .benefits-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

}


/* ======================================
   SPECIAL STORAGE SECTION
====================================== */

.special-storage-section {
  position: relative;

  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 100%
    );

  overflow: hidden;
}

/* HEADER */
.storage-mini-badge {
  display: inline-block;

  padding: 8px 18px;
  margin-bottom: 26px;

  border-radius: 50px;

  background: rgba(0,102,204,0.08);

  color: #0066cc;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.storage-title {
  font-size: clamp(2rem, 4vw, 3.5rem);

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

  color: #0f172a;

  margin-bottom: 28px;
}

.storage-subtitle {
  font-size: 1.08rem;

  line-height: 1.9;

  color: #475569;

  max-width: 900px;
  margin: 0 auto;
}

/* CONTENT */
.storage-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ITEM */
.storage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ICON */
.storage-icon {
  width: 58px;
  height: 58px;

  min-width: 58px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #007bff,
      #00c6ff
    );

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 28px rgba(0,198,255,0.18);
}

.storage-icon i {
  color: #fff;
  font-size: 1.3rem;
}

/* TEXT */
.storage-item h4 {
  font-size: 1.2rem;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 10px;
}

.storage-item p {
  color: #475569;

  line-height: 1.8;

  margin: 0;
}

/* VISUAL */
.storage-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 560px;
}

/* GLOW */
.storage-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0,198,255,0.16),
      transparent 70%
    );

  filter: blur(80px);
}

/* CARD */
.storage-card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 500px;

  padding: 48px;

  border-radius: 30px;

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

  border: 1px solid rgba(255,255,255,0.7);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 60px rgba(15,23,42,0.08);
}

/* CARD ICON */
.storage-card-icon {
  width: 90px;
  height: 90px;

  border-radius: 24px;

  margin-bottom: 30px;

  background:
    linear-gradient(
      135deg,
      #007bff,
      #00c6ff
    );

  display: flex;
  align-items: center;
  justify-content: center;
}

.storage-card-icon i {
  color: #fff;
  font-size: 2.1rem;
}

/* CARD TITLE */
.storage-card h3 {
  font-size: 1.8rem;
  font-weight: 800;

  color: #0f172a;

  margin-bottom: 20px;
}

/* CARD TEXT */
.storage-card p {
  color: #475569;

  line-height: 1.9;
}

/* TAGS */
.storage-tags {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.storage-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 18px;

  border-radius: 50px;

  background: rgba(0,102,204,0.06);

  color: #0066cc;

  font-size: 0.9rem;
  font-weight: 700;
}

.storage-tags i {
  color: #00b9ff;
}

/* MOBILE */
@media (max-width: 768px) {

  .special-storage-section {
    padding: 90px 0;
  }

  .storage-visual {
    min-height: auto;
  }

  .storage-card {
    padding: 36px 28px;
  }

  .storage-item {
    align-items: flex-start;
  }

}
