/* =========================
   SOBRE SPOT
========================= */

.sobre-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  overflow-x: hidden;
}

.sobre-slider-section {
  min-height: 100vh;
  padding: 120px 3vw 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.sobre-intro {
  width: 100%;
  text-align: center;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
}

.sobre-intro h1 {
  max-width: 600px;
  font-size: clamp(40px, 9vw, 40px);
  line-height: 0.88;
  letter-spacing: 1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.sobre-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-right: 18vw;
  -webkit-overflow-scrolling: touch;
}

.swipe-hint {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 0 8px 14px;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: 13px;
  opacity: 0.75;
}

.swipe-hint .arrow {
  display: inline-block;
}

.sobre-card {
  flex: 0 0 auto;
  width: 72vw;
  height: 56vh;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* TARJETA IMAGEN INICIAL */

.sobre-card-image {
  padding: 0;
  background: #eeeeee;
}

.sobre-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* mueve la imagen hacia abajo */
  object-position: center 33%;
}

.sobre-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.24) 45%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.image-text {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 38px;
  z-index: 2;
  color: #ffffff;
}

.image-text h2,
.image-text p {
  color: #ffffff;
}

.image-text h2 {
  letter-spacing: 1px;
  max-width: 650px;
  font-size: clamp(42px, 6vw, 42px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.image-text p {
  max-width: 560px;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.35;
}

/* TARJETAS CON IMAGEN A LA DERECHA */

.sobre-card-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: stretch;
  padding: 0;
}

.sobre-card-content {
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-card-content span {
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.65;
  margin-bottom: 18px;
}

.sobre-card-content h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 36px);
  line-height: 1.;
  letter-spacing: 1px;
  color: --var(--text);
}

.sobre-card-content p {
  max-width: 430px;
  margin-top: 22px;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.35;
  color: --var(--text);
}

.sobre-card-media {
  width: calc(100% - 18px);
  height: calc(100% - 36px);

  overflow: hidden;

  border-radius: 24px;

  /* separación arriba, derecha y abajo */
  margin: 18px;

  align-self: center;
  justify-self: end;
}

.sobre-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sobre-card-split {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  padding: 0;
}


/* COLORES */

/* COLORES ORIGINALES */

.card-pink {
  background: linear-gradient(
    135deg,
    rgba(242, 152, 192, 0.95),
    rgba(242, 152, 192, 0.28)
  );
}

.card-yellow {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 153, 1),
    rgba(255, 255, 153, 0.25)
  );
}

.card-orange {
  background: linear-gradient(
    135deg,
    rgba(236, 99, 56, 0.95),
    rgba(236, 99, 56, 0.28)
  );
}

.card-white {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
}

/* =========================
   MÓVIL
========================= */

@media (max-width: 1024px) {
  .sobre-slider-section {
    min-height: 100vh;
    padding: 108px 16px 28px;
  }

  .sobre-intro {
    text-align: center;
    margin-bottom: 18px;
  }

  .sobre-intro h1 {
    font-size: 26px;
    line-height: 0.88;
  }

  .sobre-track {
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sobre-track::-webkit-scrollbar {
    display: none;
  }

  .sobre-card {
    width: 86vw;
    height: 58vh;
    min-height: 420px;
    border-radius: 28px;
  }

  .image-text {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .image-text h2 {
    font-size: 30px;
  }

  .sobre-card-split {
    grid-template-columns: 1fr;
    grid-template-rows: 52% 48%;
  }

  .sobre-card-content {
    padding: 28px;
    justify-content: center;
  }

  .sobre-card-content h2 {
    font-size: 28px;
    line-height: 0.9;
  }

  .sobre-card-content p {
    margin-top: 14px;
    font-size: 14px;
  }

  .sobre-card-media {
    border-radius: 24px 24px 28px 28px;
  }
  .sobre-card-media {
    width: calc(100% - 36px);
    margin: 0 auto 18px;
    justify-self: center;
    align-self: center;
  }

  .sobre-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}