/* =========================================================
   Values — Driven by Purpose Section
   ========================================================= */

.val-purpose {
  background-color: #ffffff;
  padding: 80px 40px;
}

.val-purpose__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ── Left: text ─────────────────────────────────────────── */
.val-purpose__text {
  flex: 1 1 45%;
  min-width: 0;
}

.val-purpose__title {
  font-family: 'Oxygen', sans-serif;
  font-size: 48px;
  font-weight: 700 !important;
  line-height: 57px;
  letter-spacing: -0.3px;
  color: #292929;
  margin-bottom: 28px;
}

.val-purpose__bold {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111111;
  margin-bottom: 20px;
}

.val-purpose__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #404040;
}

/* ── Right: cards column ────────────────────────────────── */
.val-purpose__cards {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Dots + label: ocultos en desktop */
.val-purpose__mobile-footer {
  display: none;
}

.val-purpose__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.val-purpose__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-brilliant-rose-30);
  transition: background var(--transition-base);
}

.val-purpose__dot.is-active {
  background-color: var(--primary-brilliant-rose-100);
}

.val-purpose__swipe-label {
  font-family: var(--font-body); /* Nunito */
  font-size: 16px;
  font-weight: 700;
  color: #585858;
  text-align: center;
  margin: 0;
}

.val-purpose__cards-track {
  display: flex;
  gap: 24px;
}

.val-founder-slide {
  flex: 0 0 auto;
  display: flex;
}

/* ── Founder Card ─────────────────────────────────────────── */
.val-founder-card {
  flex: 0 0 310px;
  width: 310px;
  height: 310px;
  position: relative;
  background-color: #FBDCF1; /* rose-20 aprox */
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Toggle button — círculo top-right */
.val-founder-card__toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #292929;
  background: transparent !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base);
  padding: 0;
}

.val-founder-card__toggle:hover,
.val-founder-card__toggle:focus,
.val-founder-card__toggle:active {
  background-color: rgba(41, 41, 41, 0.08) !important;
}

/* Íconos + y − */
.val-founder-card__icon-plus,
.val-founder-card__icon-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #292929;
  line-height: 0;
}

/* Estado colapsado: muestra plus, oculta minus */
.val-founder-card .val-founder-card__icon-minus { display: none; }
.val-founder-card .val-founder-card__icon-plus  { display: flex; }

/* Estado expandido: muestra minus, oculta plus */
.val-founder-card.is-open .val-founder-card__icon-plus  { display: none; }
.val-founder-card.is-open .val-founder-card__icon-minus { display: flex; }

/* ── Foto ──────────────────────────────────────────────── */
.val-founder-card__photo-wrap {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.val-founder-card.is-open .val-founder-card__photo-wrap {
  opacity: 0;
  pointer-events: none;
}

.val-founder-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 24px;
}

/* ── Detalles ──────────────────────────────────────────── */
.val-founder-card__details {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0.05s;
}

.val-founder-card.is-open .val-founder-card__details {
  opacity: 1;
  pointer-events: auto;
}

/* Redes sociales */
.val-founder-card__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.val-founder-card__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #292929;
  transition: color var(--transition-base);
}

.val-founder-card__social-link:hover {
  color: var(--primary-royal-blue-100);
}

/* Nombre */
.val-founder-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 4px;
}

/* Rol */
.val-founder-card__role {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #404040;
  margin-bottom: 16px;
}

/* Let's talk */
.val-founder-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #292929;
  text-decoration: none;
  transition: color var(--transition-base);
}

.val-founder-card__cta:hover {
  color: var(--primary-royal-blue-100);
}

.val-founder-card__cta svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.val-founder-card__cta:hover svg {
  transform: translateX(3px);
}

/* ── Wide tablet / small desktop ────────────────────────── */
@media (max-width: 1300px) {
  .val-purpose__container {
    flex-direction: column;
  }

  .val-purpose__text,
  .val-purpose__cards {
    flex: none;
    width: 100%;
  }

  .val-purpose__cards-track {
    justify-content: center;
  }
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .val-purpose {
    padding: 64px 24px;
  }

  .val-purpose__container {
    gap: 48px;
  }

  .val-purpose__title {
    font-size: 32px;
  }

  .val-purpose__bold,
  .val-purpose__body {
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  .val-purpose__container {
    flex-direction: column;
  }

  .val-purpose__text,
  .val-purpose__cards {
    flex: none;
    width: 100%;
  }

  .val-purpose__cards-track {
    justify-content: center;
  }

  .val-founder-card {
    flex: 0 0 260px;
    width: 260px;
    height: 260px;
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .val-purpose {
    padding: 48px 20px;
  }

  .val-purpose__container {
    gap: 0;
  }

  .val-purpose__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .val-purpose__bold,
  .val-purpose__body {
    font-size: 16px;
  }

  .val-purpose__mobile-footer {
    display: block;
    margin-top: 16px;
  }

  .val-purpose__cards-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .val-purpose__cards-track::-webkit-scrollbar {
    display: none;
  }

  .val-founder-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    scroll-snap-align: start;
  }

  .val-founder-card {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
  }
}

/* ── Extra small ─────────────────────────────────────────── */
@media (max-width: 350px) {
  .val-founder-