/* =========================================
   COMPONENT · SELLING POINTS
========================================= */

.c-selling-points{
  padding: clamp(64px, 8vh, 96px) 0;
}


/* =========================================
   CONTAINER
========================================= */

.c-selling-points__container{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.c-selling-points__header{
  max-width: 980px;
  margin: 0 auto 27px;
  text-align: center;
}

.c-selling-points__title{
  margin: 0;
  color: #C98028;
  font-family: "Lexend Deca", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.12;
}

.c-selling-points__subtitle{
  margin: 16px 0 0;
  color: #291F46;
  font-family: "Lexend Deca", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.c-selling-points__text{
  margin: 12px auto 0;
  max-width: 760px;

  color: #291F46;
  font-family: "Lexend Deca", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.c-selling-points__text p{
  margin: 0;
}


/* =========================================
   VISUAL AREA
========================================= */

.c-selling-points__visual{
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}


/* =========================================
   BG IMAGE (solo desktop)
========================================= */

.c-selling-points__bg{
  position: absolute;
  left: 0;
  top: 0;

  width: 68%;
  max-width: 720px;

  z-index: 1;
  pointer-events: none;

  opacity: 0.95;
  transform: translateY(20px);

  filter: saturate(1.05) contrast(1.02);
}

.c-selling-points__bg img{
  width: 100%;
  display: block;
  border-radius: 18px;
}


/* =========================================
   LIST
========================================= */

.c-selling-points__list{
  position: relative;
  z-index: 2;

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

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

  margin-left: auto;
}


/* =========================================
   ITEM
========================================= */

.c-selling-points__item{
  position: relative;
  display: flex;
  align-items: stretch;

  width: 100%;
  max-width: 820px;
  min-height: 74px;

  border-radius: 12px;
  overflow: hidden;

  background: linear-gradient(90deg, #10076A 0%, #06003A 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);

  opacity: 0;
  transform: translateY(70px) scale(.97);
  transform-origin: center bottom;

  transition:
    opacity .6s cubic-bezier(.16,1,.3,1),
    transform .8s cubic-bezier(.16,1,.3,1);

  transition-delay: calc(var(--i) * 0.05s);

  will-change: transform, opacity;
}


/* visible */

.c-selling-points__item.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* =========================================
   ACCENT
========================================= */

.c-selling-points__item-accent{
  flex: 0 0 30px;
  border-right: 4px solid #C98028;
}


/* =========================================
   TEXT
========================================= */

.c-selling-points__item-text{
  margin: 0;
  padding: 18px 24px;

  color: #FFF;
  font-family: "Lexend Deca", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px){

  .c-selling-points{
    padding: 64px 0;
  }

  .c-selling-points__container{
    width: calc(100% - 40px);
  }

  .c-selling-points__visual{
    min-height: auto;
  }

  /* 🔥 ocultamos fondo porque no aporta */
  .c-selling-points__bg{
    display: none;
  }

  .c-selling-points__list{
    margin-left: 0;
  }

  .c-selling-points__item{
    opacity: 1;
    transform: none;
  }

  .c-selling-points__item-text{
    font-size: 20px;
  }

}


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

@media (max-width: 640px){

  .c-selling-points{
    padding: 56px 0 32px;
  }

  .c-selling-points__container{
    width: calc(100% - 32px);
  }

  .c-selling-points__bg{
    display: none;
  }

  .c-selling-points__item{
    opacity: 1 !important;
    transform: none !important;
  }

  .c-selling-points__item-text{
    padding: 14px 16px;
    font-size: 16px;
  }

  .c-selling-points__item-accent{
    flex-basis: 18px;
  }

}