/* ======================================
   WHY CLOUD WEB SERVICES
====================================== */

.why-cws-section {

  position: relative;

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

  padding: 100px 0;

  overflow: hidden;
}

/* TITULO */
.why-cws-title {

  font-size: clamp(2rem, 3vw, 3.3rem);

  line-height: 1.2;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 24px;

  letter-spacing: -0.5px;
}

/* SUBTITULO */
.why-cws-subtitle {

  font-size: clamp(1rem, 1.3vw, 1.15rem);

  line-height: 1.85;

  color: #475569;

  max-width: 860px;

  margin: 0 auto;
}

/* ======================================
   IMAGENES DATACENTER
====================================== */

.fade-container {

  position: relative;

  width: 100%;

  min-height: 500px;

  border-radius: 26px;

  overflow: hidden;

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

.fade-bg {

  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  opacity: 0;

  transition: opacity 1s ease-in-out;
}

.fade-bg.active {
  opacity: 1;
}

/* ======================================
   FEATURES
====================================== */

.why-cws-features {

  display: flex;

  flex-direction: column;

  gap: 22px;
}

/* ITEM */
.why-feature {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding-bottom: 18px;

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

/* ICONO */
.why-feature i {

  color: #00a6ff;

  font-size: 1.1rem;

  margin-top: 3px;

  flex-shrink: 0;
}

/* TEXTO */
.why-feature span {

  color: #0f172a;

  font-size: 1rem;

  line-height: 1.6;

  font-weight: 500;
}

/* MICRO GLOW */
.why-cws-section::after {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

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

  bottom: -180px;
  left: -180px;

  pointer-events: none;
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 992px) {

  .why-cws-section {
    padding: 75px 0;
  }

  .fade-container {
    min-height: 340px;
  }

}

@media (max-width: 768px) {

  .why-cws-title {
    margin-bottom: 18px;
  }

  .why-cws-subtitle {
    line-height: 1.7;
  }

  .why-cws-features {
    gap: 18px;
  }

  .why-feature span {
    font-size: 0.96rem;
  }

}
