/* mutaciones.css — Estilos propios de Mutaciones
   El tema base Basho vive en screen.css — no editar.
   Todo lo de Mutaciones va aquí.
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colores de marca */
  --mo: #9D67FF;
  --ve: #AFF757;
  --na: #FB6200;
  --ro: #FFD4FC;
  --ne: #000000;
  --bl: #FFFFFF;
  --fo: #FAFAFA;
  --ink: #161618;
  --gray-100: #F1F1EE;
  --gray-300: #D9D9D2;
  --gray-500: #8A8A85;
  --gray-700: #4A4A48;

  /* Tipografía */
  --ft: 'Space Grotesk', system-ui, sans-serif;
  --fc: 'DM Sans', system-ui, sans-serif;
}

/* ============================================
   RESET OVERRIDES
   Override Basho defaults where needed.
   ============================================ */
body {
  font-family: var(--ft);
  background: var(--fo);
  color: var(--ink);
}

/* ============================================
   NAV / HEADER
   ============================================ */
.mo-nav-wrap {
  background: var(--mo);
  height: 131px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}
.mo-nav {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mo-nav__logo { display: flex; align-items: center; }
.mo-nav__logo-img { width: 120px; height: 41px; display: block; }
.mo-nav__menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.mo-nav__item { position: relative; }
.mo-nav__menu { margin-left: auto; }
.mo-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.mo-nav__link:hover,
.mo-nav__item--open .mo-nav__link { background: rgba(255,255,255,0.15); }
.mo-nav__chev { transition: transform 0.2s; flex-shrink: 0; }
.mo-nav__item--open .mo-nav__chev { transform: rotate(180deg); }
.mo-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white;
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(20,20,40,0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  padding: 0;
  overflow: hidden;
}
.mo-nav__item--open .mo-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mo-nav__dropdown a {
  display: block;
  padding: 12px 18px;
  font-family: var(--fc);
  font-size: 20px;
  color: #000000;
  transition: background 0.15s;
  border-radius: 0;
}
.mo-nav__dropdown a:first-child { border-radius: 12px 12px 0 0; }
.mo-nav__dropdown a:last-child  { border-radius: 0 0 12px 12px; }
.mo-nav__dropdown a:only-child  { border-radius: 12px; }
.mo-nav__dropdown a:hover { background: #F0EAFF; color: var(--mo); }

/* Nav action buttons */
.mo-nav__actions { display: flex; align-items: center; gap: 8px; }
.mo-nav__search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #000000;
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 500;
  width: 139px;
  height: 52px;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.mo-nav__search-btn:hover { opacity: 0.88; }
.mo-nav__join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ne);
  color: white;
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 500;
  width: 149px;
  height: 52px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.mo-nav__join-btn:hover { background: #7B33FF; color: white; }

/* Hamburger (hidden on desktop) */
.mo-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: background 0.15s;
}
.mo-nav__hamburger:hover { background: rgba(255,255,255,0.15); }
.mo-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.mo-nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mo-nav__hamburger--open span:nth-child(2) { opacity: 0; }
.mo-nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mo-nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  visibility: hidden;
}
.mo-nav-mobile--open {
  pointer-events: all;
  visibility: visible;
}
.mo-nav-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mo-nav-mobile--open .mo-nav-mobile__backdrop { opacity: 1; }
.mo-nav-mobile__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: white;
  overflow-y: auto;
  padding: 24px 0 40px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.mo-nav-mobile--open .mo-nav-mobile__panel { transform: translateX(0); }
.mo-nav-mobile__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 20px;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 4px;
}
.mo-nav-mobile__close button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--ink);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mo-nav-mobile__section { border-bottom: 1px solid #F0F0F0; }
.mo-nav-mobile__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-family: var(--fc);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  min-height: 52px;
}
.mo-nav-mobile__trigger svg { transition: transform 0.2s; flex-shrink: 0; }
.mo-nav-mobile__section--open .mo-nav-mobile__trigger svg { transform: rotate(180deg); }
.mo-nav-mobile__sub {
  display: none;
  flex-direction: column;
  background: #FAFAFA;
  padding: 4px 0 8px;
}
.mo-nav-mobile__section--open .mo-nav-mobile__sub { display: flex; }
.mo-nav-mobile__sub a {
  padding: 13px 32px;
  font-family: var(--fc);
  font-size: 16px;
  color: #555;
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.mo-nav-mobile__sub a:hover { background: #F0EAFF; color: var(--mo); }
.mo-nav-mobile__actions {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid #F0F0F0;
}
.mo-nav-mobile__actions .mo-nav__search-btn,
.mo-nav-mobile__actions .mo-nav__join-btn {
  width: 100%;
  font-size: 16px;
  height: 48px;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.mo-hero {
  background: var(--mo);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 70px 60px;
  min-height: 515px;
}
.mo-hero__title {
  font-family: var(--ft);
  font-size: 72px;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.08;
  max-width: 1100px;
}
.mo-hero .mo-hero-subscribe {
  flex-direction: row;
  align-items: center;
  margin-top: 48px;
}
.mo-hero .mo-hero-subscribe__form button {
  background: var(--ne);
}
.mo-hero .mo-hero-subscribe__form button:hover {
  background: #7B33FF;
}

/* ============================================
   FILTER ("Quiero...")
   ============================================ */
.mo-filter-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  margin: 60px 0;
}
.mo-filter {
  position: relative;
  background: white;
  border-radius: 999px;
  padding: 18px 28px;
  min-width: 380px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(20,20,40,0.08);
  border: 1px solid var(--gray-300);
  transition: box-shadow 0.2s;
}
.mo-filter:hover { box-shadow: 0 6px 32px rgba(20,20,40,0.14); }
.mo-filter__label {
  font-family: var(--ft);
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.mo-filter__prefix { /* "Quiero:" label, hidden on non-default */ }
.mo-filter__selected { color: var(--mo); font-weight: 600; }
.mo-filter__chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mo);
  display: grid;
  place-items: center;
  color: white;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mo-filter--open .mo-filter__chevron { transform: rotate(180deg); }
.mo-filter__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -6px);
  width: max-content;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  border-top: 2px solid var(--mo);
  padding: 0 16px;
  box-shadow: 0 12px 40px rgba(20,20,40,0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mo-filter--open .mo-filter__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mo-filter__menu a {
  display: block;
  padding: 14px 12px;
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  border-bottom: 1px solid var(--gray-300);
  transition: background 0.15s, color 0.15s;
}
.mo-filter__menu a:last-child { border-bottom: none; }
.mo-filter__menu a:hover { background: #F0EAFF; color: var(--mo); }
.mo-filter__menu a.mo-filter__option--active { color: var(--mo); font-weight: 500; }

/* ============================================
   CARDS GRID
   ============================================ */
.mo-grid-section { padding: 0 70px 80px; }
.mo-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mo-card {
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.mo-card:hover { transform: translateY(-4px); }
.mo-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.mo-card__body {
  padding: 16px 20px 24px;
}
.mo-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Card tags */
.mo-card__tag {
  position: absolute;
  top: 0; left: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 0 16px 0;
  font-family: var(--fc);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.mo-tag--servicios { background: var(--na); color: var(--bl); width: 115px; }
.mo-tag--comunidad { background: var(--ve); color: var(--ne); width: 141px; }
.mo-tag--about     { background: var(--mo); color: var(--bl); width: 185px; }
.mo-tag--historia  { background: var(--ro); color: var(--ne); width: 114px; }
.mo-tag--training  { background: var(--na); color: var(--bl); width: 117px; }
.mo-tag--mutalab   { background: var(--mo); color: var(--bl); width: 116px; }
.mo-tag--proyecto  { background: var(--mo); color: var(--bl); width: 126px; }
.mo-tag--especial  { background: var(--ne); color: var(--bl); }
.mo-tag--mutashop  { background: var(--mo); color: var(--bl); width: 130px; }

/* Card meta pills */
.mo-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}
.mo-card__pill {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 500;
}

/* Card text */
.mo-card__title {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.mo-card__desc {
  font-family: var(--fc);
  font-weight: 400;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mo-card__desc p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mo-card__desc strong { font-weight: 600; color: var(--ne); }

/* Solid-color media variants */
.mo-card__media--lime {
  background: var(--ve);
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
}
.mo-card__media--dark {
  background: var(--ink);
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
}
.mo-card__media--morado {
  background: var(--mo);
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
}

/* Card decorative shapes */
.mo-face-eyes { display: flex; gap: 14px; }
.mo-face-eyes span {
  width: 14px; height: 14px;
  background: var(--ink);
  border-radius: 50%;
}
.mo-ghost-shape {
  width: 55%; height: 65%;
  background: var(--mo);
  border-radius: 50% 50% 18% 18% / 60% 60% 18% 18%;
  position: relative;
}
.mo-ghost-shape::before, .mo-ghost-shape::after {
  content: '';
  position: absolute;
  top: 38%;
  width: 14px; height: 14px;
  background: var(--ink);
  border-radius: 50%;
}
.mo-ghost-shape::before { left: 28%; }
.mo-ghost-shape::after  { right: 28%; }
.mo-star-burst {
  font-size: 48px;
  line-height: 1;
  color: var(--ve);
  text-align: center;
}

/* Dark overlay card */
.mo-card--dark .mo-card__media { background: var(--ink); }
.mo-card--dark .mo-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78) 100%);
}
.mo-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  color: white;
  z-index: 2;
}
.mo-card__overlay h3 {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
.mo-card__overlay p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.7;
  font-family: var(--fc);
}
.mo-card__overlay .mo-card__meta { margin: 0; }
.mo-card__overlay .mo-card__pill {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
}

/* Ver más button */
.mo-more-wrap { display: flex; justify-content: center; margin-top: 56px; }
.mo-btn-pill {
  background: var(--ne);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}
.mo-btn-pill:hover { background: #7B33FF; }

/* ============================================
   TEAM BANNER
   ============================================ */
.mo-team-banner {
  background: var(--ro);
  padding: 72px 0 72px 70px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  column-gap: 56px;
  align-items: center;
  overflow: hidden;
}
.mo-team-banner__text { max-width: 580px; }
.mo-team-banner__heading {
  font-family: var(--ft);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ne);
  margin-bottom: 24px;
}
.mo-hl--lime {
  background: var(--ve);
  color: var(--ne);
  padding: 2px 16px 4px;
  border-radius: 37px;
  line-height: inherit;
  display: inline-block;
}
.mo-hl--orange {
  background: var(--na);
  color: white;
  padding: 2px 16px 4px;
  border-radius: 37px;
  line-height: inherit;
  display: inline-block;
}
.mo-team-banner__sub {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 500;
  color: var(--ne);
  line-height: 1.4;
  max-width: 460px;
}
.mo-team-banner__carousel { overflow: hidden; }
.mo-team-banner__track {
  display: flex;
  gap: 0;
  will-change: transform;
  animation: carousel-scroll 32s linear infinite;
}
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-2196px); }
}
.mo-team-banner__slide {
  flex-shrink: 0;
  width: 350px; height: 424px;
  margin-right: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
}
.mo-team-banner__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.mo-footer {
  background: var(--mo);
  color: white;
}
.mo-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 70px 48px;
}

/* Newsletter */
.mo-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 56px;
}
.mo-newsletter h2 {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.mo-newsletter h2 em {
  font-style: italic;
  color: white;
}
.mo-newsletter__right { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.mo-newsletter__label {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 500;
  color: white;
}
.mo-newsletter__form {
  display: flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  background: white;
  width: 561px;
  height: 52px;
}
.mo-newsletter__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 16px 0 24px;
  color: var(--ne);
  font-family: var(--fc);
  font-size: 20px;
  outline: none;
}
.mo-newsletter__form input::placeholder { color: #666666; }
.mo-newsletter__form button {
  background: var(--ne);
  color: var(--bl);
  border: none;
  width: 192px;
  height: 52px;
  flex-shrink: 0;
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.mo-newsletter__form button:hover { background: #7B33FF; color: #ffffff; }

/* Footer grid */
.mo-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 48px;
  align-items: start;
  color: var(--bl);
}
.mo-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.mo-footer__logo-img { width: 120px; height: 41px; display: block; fill: var(--bl); }
.mo-footer__tagline {
  font-family: var(--fc);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #ffffff;
  max-width: none;
}
.mo-footer__copyright { font-family: var(--fc); font-size: 14px; font-weight: 400; color: #ffffff; }
.mo-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mo-footer__col a {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.15s;
}
.mo-footer__col a:hover { color: var(--ve); }
.mo-footer__social { display: flex; gap: 16px; align-items: center; }
.mo-footer__social a {
  color: var(--bl);
  opacity: 0.7;
  transition: opacity 0.15s;
}
.mo-footer__social a:hover { opacity: 1; }

/* ============================================
   MUTASHOP — Variables de animación
   ============================================ */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.45s;
  --dur-slow: 0.65s;
}

/* ============================================
   MUTASHOP — Todo el bloque aislado
   ============================================ */

.page-mutashop .mo-shop-hero {
  background: var(--mo);
  padding: 36px 70px 48px;
  text-align: center;
}
.page-mutashop .mo-shop-hero__title {
  font-size: 160px;
  font-weight: 600;
  line-height: 1;
  color: white;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.page-mutashop .mo-shop-hero__o {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -0.06em;
}
.page-mutashop .mo-shop-hero__o img {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  vertical-align: middle;
}

/* ============================================
   MUTASHOP — Marquee
   ============================================ */
.page-mutashop .mo-marquee {
  background: var(--ve);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-top: 1.5px solid rgba(0,0,0,0.08);
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
}
.page-mutashop .mo-marquee__track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}
.page-mutashop .mo-marquee__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ne);
  padding-right: 4px;
  white-space: nowrap;
}

/* @keyframes extracted */


/* ============================================
   MUTASHOP — Transitions
   ============================================ */
/* variables ya declaradas en :root al inicio del bloque Mutashop */

/* ============================================
   MUTASHOP — Stage
   ============================================ */
.page-mutashop .mo-stage-wrap {
  position: relative;
  background: var(--fo);
  cursor: default;
}
.page-mutashop .mo-stage {
  position: relative;
  width: 1440px;
  max-width: 100%;
  height: 814px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--fo);
}
/* Black floor */
.page-mutashop .mo-stage::after {
  content: '';
  position: absolute;
  top: 363px;
  left: 0; right: 0;
  height: 451px;
  background: var(--ne);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.page-mutashop .mo-stage.state-2::after,
.page-mutashop .mo-stage.state-3::after { opacity: 1; }

/* ============================================
   MUTASHOP — Products base
   ============================================ */
.page-mutashop .mo-product {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  user-select: none;
  transform-origin: bottom center;
  transition: transform 0.2s var(--ease-spring);
}

/* Mutito XL — hero product */
.page-mutashop .mo-product--mutito-xl {
  left: 548px;
  top: 80px;
  width: 344px;
  height: 324px;
  z-index: 5;
  transition: left 300ms ease, top 300ms ease;
}
.page-mutashop .mo-product--mutito-xl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-mutashop .mo-stage.state-2 .mo-product--mutito-xl,
.page-mutashop .mo-stage.state-3 .mo-product--mutito-xl {
  left: 959px;
  top: 80px;
}

/* Mutito XL — fill control (inline SVG) */
.mo-product--mutito-xl .fill-body { fill: var(--ro); stroke: none; }
.mo-stage.state-2 .mo-product--mutito-xl .fill-body,
.mo-stage.state-3 .mo-product--mutito-xl .fill-body {
  fill: white;
  stroke: black;
  stroke-width: 0.332889px;
}

/* Secondary products — hidden in state1 */
.page-mutashop .mo-product--secondary {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.94);
  transition:
    opacity  420ms ease-out,
    transform 420ms cubic-bezier(0.2, 0, 0.1, 1);
}
.page-mutashop .mo-product--secondary.revealed {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Exact bodegón positions (1440×814) */
.page-mutashop .mo-product--mutote-bag { left: 540px;  top: 203px; width: 278px; height: 402px; }
.page-mutashop .mo-product--mutaza-colapso { left: 126px;  top: 272px; width: 148px; height: 131px; }
.page-mutashop .mo-product--mutarot-2025 { left: 196px;  top: 495px; width: 281px; height: 141px; }
.page-mutashop .mo-product--mutito-l { left: 1186px; top: 280px; width: 180px; height: 164px; }
.page-mutashop .mo-product--workbook-mutante { left: 316px;  top: 169px; width: 306px; height: 216px; }
.page-mutashop .mo-product--mutito-portatil-m { left: 805px;  top: 405px; width: 119px; height: 184px; }
.page-mutashop .mo-product--mutalibreta { left: 870px;  top: 216px; width: 149px; height: 188px; }
.page-mutashop .mo-product--mutaza-pasivo-agresiva { left: 1162px; top: 493px; width: 148px; height: 131px; }
.page-mutashop .mo-product--mutito-portatil-o { left: 55px;   top: 383px; width: 96px;  height: 182px; }
.page-mutashop .mo-product--mutastickers { left: 938px;  top: 431px; width: 163px; height: 116px; }

/* Hover image swap (state3) */
.page-mutashop .mo-product__hover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 2;
}
.page-mutashop .mo-stage.state-3 .mo-product:hover .mo-product__hover-img { opacity: 1; }
.page-mutashop .mo-stage.state-3 .mo-product:hover > img:not(.mo-product__hover-img) {
  opacity: 0;
  transition: opacity 0.15s;
}
.page-mutashop .mo-stage.state-3 .mo-product--mutito-xl:hover > svg {
  opacity: 0;
  transition: opacity 0.15s;
}

/* Hover in state3 */
.page-mutashop .mo-stage.state-3 .mo-product:hover {
  transform: scale(1.04) translateY(-4px);
  z-index: 50;
}

/* Product name tooltip */
.page-mutashop .mo-product__label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ne);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 40;
}
.page-mutashop .mo-stage.state-3 .mo-product:hover .mo-product__label { opacity: 1; }

/* Intro text + catalog button */
.page-mutashop .mo-stage__intro {
  position: absolute;
  top: 430px;
  left: 0; right: 0;
  text-align: center;
  z-index: 20;
  transition: top 400ms var(--ease-out), opacity 300ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}
/* When products appear, slide text up to clear upper area */
.page-mutashop .mo-stage.state-2 ~ .mo-stage__intro,
.page-mutashop .mo-stage.state-3 ~ .mo-stage__intro {
  top: 70px;
}
.page-mutashop .mo-stage__intro p {
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
  transition: opacity 300ms ease;
}
.page-mutashop .mo-stage:not(.state-1) .mo-stage__intro p {
  opacity: 0;
  pointer-events: none;
}

/* CTA (state3) */
.page-mutashop .mo-stage__cta {
  position: absolute;
  bottom: 462px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.3);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow);
}
.page-mutashop .mo-stage.state-3 .mo-stage__cta { opacity: 1; }

/* ============================================
   MUTASHOP — Modal
   ============================================ */
.page-mutashop .mo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med), visibility var(--dur-med);
  padding: 32px;
}
.page-mutashop .mo-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.page-mutashop .mo-modal {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  width: 858px;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--dur-med) var(--ease-spring);
}
.page-mutashop .mo-modal-overlay.open .mo-modal {
  transform: translateY(0) scale(1);
}
.page-mutashop .mo-modal__accent {
  height: 52px;
  background: var(--mo);
  flex-shrink: 0;
  position: relative;
}
.page-mutashop .mo-modal__body {
  display: flex;
  flex: 1;
  min-height: 434px;
}
.page-mutashop .mo-modal__photo-col {
  width: 50.4%;
  flex-shrink: 0;
  background: var(--ro);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-mutashop .mo-modal__photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-mutashop .mo-modal__info {
  flex: 1;
  padding: 30px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.page-mutashop .mo-modal__name {
  font-family: var(--ft);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #333333;
  margin-bottom: 30px;
}
.page-mutashop .mo-modal__badge {
  display: inline-block;
  background: var(--ro);
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 500;
  color: var(--ne);
  padding: 6px 16px;
  border-radius: 0;
  margin-bottom: 30px;
  line-height: 1.4;
}
.page-mutashop .mo-modal__desc {
  font-family: var(--fc);
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  flex: 1;
  margin-bottom: 30px;
}
.page-mutashop .mo-modal__cta {
  font-family: var(--fc);
  font-size: 16px;
  font-weight: 400;
  color: var(--mo);
  align-self: flex-start;
  transition: opacity 0.15s;
}
.page-mutashop .mo-modal__cta strong {
  font-weight: 700;
  color: var(--mo);
  text-decoration: underline;
}
.page-mutashop .mo-modal__cta:hover { opacity: 0.75; }
.page-mutashop .mo-modal__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.15s;
  cursor: pointer;
  border: none;
}
.page-mutashop .mo-modal__close:hover { background: rgba(255,255,255,0.35); }
.page-mutashop .mo-modal__close svg { pointer-events: none; }

/* ============================================
   MUTASHOP — Mobile Sequence + Bodegón (hidden on desktop)
   ============================================ */
.mo-sequence { display: none; }

/* ============================================
   MUTASHOP — Mobile ≤ 768px
   ============================================ */
@media (max-width: 768px) {
  /* Shop hero */
  .page-mutashop .mo-shop-hero { padding: 24px 20px 28px; overflow: hidden; }
  .page-mutashop .mo-shop-hero__title { font-size: clamp(36px, 11vw, 58px); letter-spacing: -0.03em; }

  /* Marquee */
  .mo-marquee__text { font-size: 16px; }

  /* Stage desktop → hidden */
  .mo-stage-wrap { display: none; }

  /* Mobile sequence */
  .mo-sequence {
    display: block;
    background: var(--ne);
  }
  .mo-sequence__viewer {
    width: 100%;
    aspect-ratio: 390 / 560;
    overflow: hidden;
    line-height: 0;
    background: var(--ne);
  }
  .mo-sequence__frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .mo-sequence__frame:not([src]) { visibility: hidden; }
  .mo-sequence__bodegon { display: none; }
  .mo-sequence__bodegon.mo-visible { display: block; }

  /* Bodegón — imagen completa + enlace solo sobre el texto */
  .mo-bodegon {
    position: relative;
    display: block;
    width: 100%;
    line-height: 0;
  }
  .mo-bodegon__bg {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
  }
  .mo-bodegon__link {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 66%;
    height: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
    text-decoration: none;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
  }

  /* Modal → bottom sheet */
  .mo-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .mo-modal {
    width: 100%;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .mo-modal-overlay.open .mo-modal {
    transform: translateY(0);
  }
  .mo-modal__accent {
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: grab;
  }
  .mo-modal__accent::before {
    content: '';
    width: 40px;
    height: 4px;
    background: rgba(0,0,0,0.18);
    border-radius: 2px;
  }
  .mo-modal__close {
    background: rgba(0,0,0,0.07);
    top: 50%;
    right: 12px;
    width: 28px;
    height: 28px;
  }
  .mo-modal__close:hover { background: rgba(0,0,0,0.14); }
  .mo-modal__close svg path { stroke: #444; }
  .mo-modal__body {
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mo-modal__photo-col {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
  }
  .mo-modal__info {
    padding: 20px 20px 32px;
    overflow-y: visible;
  }
  .mo-modal__name  { font-size: 26px; margin-bottom: 12px; }
  .mo-modal__badge { font-size: 16px; margin-bottom: 16px; }
  .mo-modal__desc  { font-size: 15px; margin-bottom: 24px; }
  .mo-modal__cta {
    display: block;
    text-align: center;
    background: var(--mo);
    color: white !important;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    align-self: stretch;
  }
  .mo-modal__cta strong {
    color: white;
    text-decoration: none;
  }
  .mo-modal__cta:hover { opacity: 0.85; }
}

/* ============================================
   RESPONSIVE
   Breakpoints: tablet 769–1024px | mobile ≤768px
   ============================================ */

/* ── Tablet 769–1024px ───────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .mo-nav-wrap { height: 90px; padding: 0 40px; }
  .mo-nav__link { font-size: 16px; padding: 8px 10px; }
  .mo-nav__dropdown a { font-size: 16px; }
  .mo-nav__search-btn { font-size: 16px; width: 110px; height: 44px; }
  .mo-nav__join-btn  { font-size: 16px; width: 110px; height: 44px; }
  .mo-hero { padding: 60px 40px 48px; }
  .mo-hero__title { font-size: 52px; }
  .mo-grid-section { padding: 0 40px 60px; }
  .mo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mo-team-banner { padding: 56px 0 56px 40px; }
  .mo-team-banner__heading { font-size: 38px; }
  .mo-footer__inner { padding: 56px 40px 40px; }
  .mo-newsletter__form { width: 100%; max-width: 480px; }
  .mo-filter { min-width: 320px; }
  .mo-filter__label { font-size: 26px; }
}

/* ── Mobile ≤768px ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .mo-nav-wrap { height: 72px; padding: 0 20px; }
  .mo-nav { gap: 0; }
  .mo-nav__logo-img { width: 90px; }
  .mo-nav__menu, .mo-nav__actions { display: none; }
  .mo-nav__hamburger { display: flex; }

  /* Hero */
  .mo-hero {
    min-height: 0;
    padding: 48px 20px 40px;
  }
  .mo-hero__title { font-size: 36px; }
  .mo-hero .mo-hero-subscribe { flex-direction: column; align-items: flex-start; margin-top: 32px; }

  /* Filter */
  .mo-filter-wrap { margin: 36px 0; padding: 0 16px; }
  .mo-filter { min-width: 0; width: 100%; padding: 14px 18px; }
  .mo-filter__label { font-size: 22px; gap: 6px; }

  /* Cards */
  .mo-grid-section { padding: 0 16px 56px; }
  .mo-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Team Banner */
  .mo-team-banner {
    grid-template-columns: 1fr;
    padding: 48px 20px 0;
    gap: 36px;
  }
  .mo-team-banner__text { max-width: 100%; }
  .mo-team-banner__heading { font-size: 32px; }
  .mo-team-banner__sub { font-size: 18px; max-width: 100%; }

  /* Carrusel → swipe táctil */
  .mo-team-banner__carousel {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mo-team-banner__carousel::-webkit-scrollbar { display: none; }
  .mo-team-banner__track {
    animation: none;
    width: max-content;
    padding: 0 20px 40px;
  }
  .mo-team-banner__slide {
    scroll-snap-align: start;
    width: 260px;
    height: 316px;
  }

  /* Newsletter */
  .mo-footer__inner { padding: 48px 20px 32px; }
  .mo-newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
  .mo-newsletter h2 { font-size: 22px; }
  .mo-newsletter__label { font-size: 17px; }
  .mo-newsletter__form { width: 100%; height: 48px; }
  .mo-newsletter__form input { font-size: 16px; padding: 0 12px 0 18px; }
  .mo-newsletter__form button { width: 130px; height: 48px; font-size: 16px; }

  /* Footer */
  .mo-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .mo-footer__col a { font-size: 16px; }
  .mo-footer__social { justify-content: flex-start; }

  /* Botón ver más */
  .mo-more-wrap { margin-top: 40px; }
}

/* ============================================
   LLUVIA DE MUTITOS — confetti animation
   ============================================ */
.page-mutashop .mo-lluvia-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
.page-mutashop .mo-lluvia-el {
  position: absolute;
  transform-origin: center;
}

/* @keyframes extracted */

.page-mutashop .mo-lluvia-overlay--out {
  animation: lluvia-fade 0.45s ease forwards;
}

/* @keyframes extracted */


@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lluvia-burst {
  0%   { transform: translate(0, 0) scale(0); opacity: 0; }
  8%   { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1); opacity: 1; }
}
@keyframes lluvia-fade { to { opacity: 0; } }
.mo-lluvia-overlay--out {
  animation: lluvia-fade 0.45s ease forwards;
}


/* ============================================================
   HISTORIAS — landing, hub, archive & post detail
   ============================================================ */

/* ── Hero (verde 2-col) ─────────────────────────────── */
.mo-hero-historias {
  height: 515px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.mo-hero-historias__left {
  background: var(--mo);
  display: flex;
  align-items: center;
  padding: 0 70px;
}
.mo-hero-historias__title {
  font-family: var(--ft);
  font-size: 60px;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.1;
}
.mo-hero-historias__desc {
  font-family: var(--fc);
  font-size: 16px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  max-width: 480px;
}
.mo-hero-historias__right { background: url(../images/banner-nuestras-historias.png) center/cover no-repeat var(--mo); width: 100%; height: 100%; }

/* Subscribe form in hero */
.mo-hero-subscribe {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}
.mo-hero-subscribe__form {
  display: flex;
  align-items: stretch;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  height: 56px;
  width: 100%;
}
.mo-hero-subscribe__form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 16px 0 24px;
  color: var(--ne);
  font-family: var(--fc);
  font-size: 16px;
}
.mo-hero-subscribe__form input::placeholder { color: #999; }
.mo-hero-subscribe__form button {
  background: var(--na);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0 28px;
  font-family: var(--fc);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.mo-hero-subscribe__form button:hover { background: #e05800; }
.mo-hero-subscribe__help {
  font-family: var(--fc);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* Tag page variant — single column, centered title, no image */
.mo-hero-historias--tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 360px;
  background: var(--mo);
  padding: 0 70px;
}
.mo-hero-historias--tag .mo-hero-historias__title {
  font-size: 52px;
}
.mo-hero-historias--tag .mo-hero-historias__desc {
  max-width: 560px;
}
.mo-hero-historias--tag .mo-hero-historias__count {
  margin-top: 12px;
}

/* ── Breadcrumb ─────────────────────────────────────── */
.mo-breadcrumb {
  background: white;
  padding: 16px 70px;
}
.mo-breadcrumb__text { font-family: var(--fc); font-size: 14px; color: #666; }
.mo-breadcrumb__text a { color: #666; text-decoration: none; transition: color .15s; }
.mo-breadcrumb__text a:hover { color: var(--mo); }
.mo-breadcrumb__sep { margin: 0 6px; color: #666; }

/* ── Historia card additions (reuses .mo-card / __media / __body / __title / __desc) ── */
.mo-card--historia { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.mo-card--historia:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.mo-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #D2D2D2;
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.mo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mo-card__topics { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.mo-card__topic {
  height: 28px;
  display: inline-flex;
  align-items: center;
  background: #E6E6E6;
  border-radius: 999px;
  padding: 7px 10px;
  font-family: var(--fc);
  font-size: 14px;
  color: #000;
}
.mo-card__date { font-family: var(--fc); font-size: 12px; color: #999; margin-top: 8px; }

/* ── Generic sections ───────────────────────────────── */
.mo-section { padding: 80px 70px 28px; }
.mo-section + .mo-section { padding-top: 28px; }
.mo-section--white { background: white; }
.mo-section--fo { background: var(--fo); }
.mo-section-title { font-family: var(--ft); font-size: 32px; font-weight: 700; color: var(--ne); margin-bottom: 16px; }
.mo-section-bajada { font-family: var(--fc); font-size: 20px; color: #555; margin-bottom: 40px; max-width: 720px; }
.mo-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}
.mo-section__title { font-family: var(--ft); font-size: 32px; font-weight: 700; color: var(--ne); }

/* ── Carousel ───────────────────────────────────────── */
.mo-carousel { position: relative; container-type: inline-size; }
.mo-carousel__track-wrap { overflow: hidden; padding-bottom: 16px; margin-bottom: -16px; }
.mo-carousel__track { display: flex; gap: 28px; transition: transform 0.4s ease; }
/* Default: 3 full cards visible */
.mo-carousel__track .mo-card { flex: 0 0 calc((100cqi - 56px) / 3); }
/* Destacadas: slightly smaller so the 4th card peeks in */
#carousel-destacadas .mo-carousel__track .mo-card { flex: 0 0 calc((100cqi - 56px) / 3.33); }
.mo-carousel__arrows { display: flex; align-items: center; gap: 19px; flex-shrink: 0; }
.mo-arrow { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
.mo-arrow--disabled { cursor: default; }
.mo-arrow svg path { fill: #888; }
.mo-arrow:hover svg path { fill: var(--mo); }

/* ── Landing hero (verde — landing-historias, landing-exploraciones) ── */
.mo-hero-landing {
  height: 515px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.mo-hero-landing__left {
  background: var(--ve);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 70px;
  gap: 20px;
}
.mo-hero-landing__title {
  font-family: var(--ft);
  font-size: 48px;
  font-weight: 700;
  color: var(--ne);
  line-height: 1.1;
}
.mo-hero-landing__desc {
  font-family: var(--fc);
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  max-width: 480px;
}
.mo-hero-landing__right {
  background: #D2D2D2;
  width: 100%;
  height: 100%;
}

/* ── Archive grid ───────────────────────────────────── */
.mo-section-historias { background: white; padding: 32px 70px 80px; }
.mo-historias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mo-historias-grid .mo-card__img { aspect-ratio: 4 / 3; }
.mo-historias-grid .mo-card__title { font-size: 30px; font-weight: 700; }
.mo-historias-grid .mo-card__desc { font-size: 18px; }
/* Archive grid cards use same base card styling */

/* ── Pill button ────────────────────────────────────── */
.mo-btn-center { display: flex; justify-content: center; margin-top: 32px; }
/* btn-pill defined earlier — no duplicate needed */

/* ── Post detail (vista-historia) ───────────────────── */
.mo-post-hero {
  min-height: 515px;
  background: var(--mo);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.mo-post-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 70px;
  gap: 20px;
}
.mo-post-hero__topics { display: flex; gap: 8px; flex-wrap: wrap; }
.mo-post-hero__topic {
  height: 28px;
  display: inline-flex;
  align-items: center;
  background: #E6E6E6;
  color: #000000;
  font-family: var(--fc);
  font-size: 14px;
  font-weight: 400;
  border-radius: 999px;
  padding: 0 12px;
}
.mo-post-hero__title { font-family: var(--ft); font-size: 60px; font-weight: 700; color: white; line-height: 1.1; }
.mo-post-hero__bajada { font-family: var(--ft); font-size: 20px; font-weight: 500; color: white; line-height: 1.4; }
.mo-post-hero__info { font-family: var(--fc); font-size: 16px; color: rgba(255,255,255,.8); }
.mo-post-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mo-post-hero__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.mo-post-hero__author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mo-post-hero__author-name {
  font-family: var(--fc);
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.mo-post-hero__author-date {
  font-family: var(--fc);
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.mo-post-hero__right { display: flex; align-items: center; justify-content: center; padding: 40px 70px 40px 24px; }
.mo-post-hero__img {
  width: 100%;
  max-width: 580px;
  height: 400px;
  background: #D2D2D2;
  border-radius: 24px;
  object-fit: cover;
}

.mo-post-body { background: white; padding: 0 70px 80px; }
.mo-post-inner { max-width: 800px; margin: 0 auto; }

.mo-post-text { font-family: var(--fc); font-size: 18px; line-height: 1.7; color: #333; }
.mo-post-text p { margin-bottom: 28px; }
.mo-post-text h2 { font-family: var(--ft); font-size: 24px; font-weight: 700; color: var(--ne); margin: 40px 0 20px; }
.mo-post-text h3 { font-family: var(--ft); font-size: 20px; font-weight: 700; color: var(--ne); margin: 32px 0 16px; }
.mo-post-text img { max-width: 100%; height: auto; border-radius: 16px; margin: 12px 0; }
.mo-post-text a { color: var(--mo); text-decoration: underline; }
.mo-post-text ul, .mo-post-text ol { margin: 0 0 28px; padding-left: 24px; }
.mo-post-text li { margin-bottom: 10px; }
.mo-post-text blockquote {
  border-left: 4px solid var(--mo);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  font-style: italic;
  color: #555;
}

/* ── Audio card — reverted to native Basho kg-audio-card design (no overrides) ── */
.mo-spotify-link {
  display: inline-block;
  font-family: var(--fc);
  font-size: 14px;
  color: var(--ne);
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.15s;
}
.mo-spotify-link:hover { color: var(--mo); }

/* ── Post navigation (prev/next) ───────────────────── */
.mo-post-nav {
  display: flex;
  gap: 28px;
  padding: 40px 70px;
  background: #fff;
  border-top: 1px solid #E6E6E6;
}
.mo-navcard {
  display: flex;
  align-items: stretch;
  flex: 1;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #E6E6E6;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s;
}
.mo-navcard:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: #ccc;
}
.mo-navcard--anterior { flex-direction: row-reverse; }
.mo-navcard__img {
  width: 160px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: #D2D2D2;
  overflow: hidden;
}
.mo-navcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mo-navcard__body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mo-navcard__label {
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 400;
  color: #999;
  margin-bottom: 16px;
  line-height: 1.2;
}
.mo-navcard__title {
  font-family: var(--ft);
  font-size: 28px;
  font-weight: 500;
  color: var(--ne);
  line-height: 1.2;
}

/* ── "Te podría gustar" section ────────────────────── */
.mo-mas-serie { background: #fff; padding: 80px 70px; }
.mo-mas-serie .mo-section-title { margin-bottom: 40px; }
.mo-rcard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.mo-rcard {
  text-decoration: none;
  display: block;
}
.mo-rcard__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #D2D2D2;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.mo-rcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mo-rcard__title {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 500;
  color: var(--ne);
  line-height: 1.35;
  transition: color 0.15s;
}
.mo-rcard:hover .mo-rcard__title { color: var(--mo); }

/* ── Legacy cards-grid (kept for backward compat) ──── */
.mo-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── Responsive: historias ≤768px ───────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .mo-hero-historias__left { padding: 0 40px; }
  .mo-hero-historias__title { font-size: 38px; }
  .mo-hero-landing__left { padding: 0 40px; }
  .mo-hero-landing__title { font-size: 38px; }
  .mo-section, .mo-section-historias, .mo-mas-serie { padding: 56px 40px; }
  .mo-breadcrumb { padding: 16px 40px; }
  .mo-historias-grid, .mo-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mo-post-hero__left { padding: 48px 32px 48px 40px; }
  .mo-post-hero__title { font-size: 44px; }
  .mo-post-body { padding: 0 40px 60px; }
  .mo-post-nav { padding: 32px 40px; }
  .mo-navcard__title { font-size: 22px; }
  .mo-rcard-grid { grid-template-columns: repeat(3, 1fr); }
  .mo-mas-serie { padding: 56px 40px; }
}

@media (max-width: 768px) {
  /* Hero */
  .mo-hero-historias { height: auto; display: flex; flex-direction: column; }
  .mo-hero-historias__left { padding: 40px 20px 24px; align-items: flex-start; }
  .mo-hero-historias__title { font-size: 34px; }
  .mo-hero-historias__right { height: 220px; }
  .mo-hero-historias--tag { height: auto; padding: 48px 24px; }
  .mo-hero-historias--tag .mo-hero-historias__title { font-size: 34px; }
  .mo-hero-landing { height: auto; grid-template-columns: 1fr; }
  .mo-hero-landing__left { padding: 40px 20px; }
  .mo-hero-landing__title { font-size: 34px; }
  .mo-hero-landing__right { height: 220px; }

  /* Breadcrumb */
  .mo-breadcrumb { padding: 12px 20px; }
  .mo-breadcrumb__text { white-space: normal; }

  /* Sections */
  .mo-section, .mo-section-historias, .mo-mas-serie { padding: 48px 20px; }
  .mo-section-title { font-size: 26px; }
  .mo-section__title { font-size: 24px; }
  .mo-section-bajada { font-size: 17px; margin-bottom: 28px; }
  .mo-section__header { flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

  /* Carousels → native horizontal scroll */
  .mo-carousel__arrows { display: none; }
  .mo-carousel__track-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }
  .mo-carousel__track-wrap::-webkit-scrollbar { display: none; }
  .mo-carousel__track {
    width: max-content;
    transform: none !important;
    transition: none;
    gap: 16px;
  }
  .mo-carousel__track .mo-card { flex: 0 0 280px; scroll-snap-align: start; }
  .mo-carousel__track .mo-card__img { aspect-ratio: 1/1; height: auto; }
  .mo-carousel__track .mo-card__body { height: auto; min-height: 158px; }

  /* Archive grid → 1 col */
  .mo-historias-grid { grid-template-columns: 1fr; gap: 20px; }
  .mo-historias-grid .mo-card__img { aspect-ratio: 4/3; height: auto; }
  .mo-historias-grid .mo-card__body { height: auto; min-height: 160px; }

  /* Related grid → horizontal scroll */
  .mo-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    gap: 16px;
  }
  .mo-cards-grid::-webkit-scrollbar { display: none; }
  .mo-cards-grid .mo-card { width: 280px; flex-shrink: 0; scroll-snap-align: start; }

  /* Buttons */
  .mo-btn-pill { width: 100%; max-width: 320px; text-align: center; }

  /* Post detail */
  .mo-post-hero { min-height: 0; display: flex; flex-direction: column; overflow: visible; }
  .mo-post-hero__left { padding: 36px 20px 32px; gap: 14px; }
  .mo-post-hero__title { font-size: 34px; }
  .mo-post-hero__bajada { font-size: 17px; }
  .mo-post-hero__info { font-size: 14px; }
  .mo-post-hero__right { padding: 0 20px 32px; justify-content: flex-start; }
  .mo-post-hero__img { height: 220px; max-width: 100%; border-radius: 16px; }
  .mo-post-body { padding: 0 20px 60px; }
  .mo-post-inner { max-width: 100%; }
  .mo-post-text { font-size: 16px; }

  /* Post navigation */
  .mo-post-nav { flex-direction: column; gap: 16px; padding: 32px 20px; }
  .mo-navcard { flex-direction: row !important; }
  .mo-navcard__img { width: 100px; }
  .mo-navcard__body { padding: 16px; }
  .mo-navcard__label { font-size: 14px; margin-bottom: 8px; }
  .mo-navcard__title { font-size: 18px; }

  /* Related cards */
  .mo-rcard-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mo-rcard__title { font-size: 15px; }

  /* Busca temas (handled in dedicated block below) */

  /* Post tags & share */
  .mo-post-tags { flex-wrap: wrap; }
  .mo-post-share { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ══════════════════════════════════════════════════════════
   HISTORIAS — Busca por temas
   ══════════════════════════════════════════════════════════ */
.mo-busca-temas {
  padding: 56px 70px 28px;
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
}
.mo-busca-temas + .mo-section { padding-top: 28px; }
.mo-busca-temas__title {
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 700;
  color: var(--ne);
  margin-bottom: 16px;
}
.mo-busca-temas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mo-busca-temas__tag {
  font-family: var(--fc);
  font-size: 14px;
  color: var(--ne);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid #D0D0D0;
  background: #fff;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.mo-busca-temas__tag:hover {
  background: #EFE5FF;
  border-color: var(--mo);
  color: var(--mo);
}
.mo-busca-temas__tag--active {
  background: #EFE5FF;
  border-color: var(--mo);
  color: var(--mo);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   HISTORIAS — Breadcrumb inline (inside hero)
   ══════════════════════════════════════════════════════════ */
.mo-breadcrumb-inline {
  font-family: var(--fc);
  font-size: 14px;
  color: rgba(0,0,0,.5);
  margin-bottom: 8px;
}
.mo-breadcrumb-inline a {
  color: rgba(0,0,0,.5);
  transition: color .15s;
}
.mo-breadcrumb-inline a:hover { color: var(--ne); }

/* ══════════════════════════════════════════════════════════
   HISTORIAS — Hero count
   ══════════════════════════════════════════════════════════ */
.mo-hero-historias__count {
  font-family: var(--fc);
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   POST — Topic pills as links (clickable)
   ══════════════════════════════════════════════════════════ */
.mo-post-hero__topic {
  text-decoration: none;
  transition: background .15s, color .15s;
}
a.mo-post-hero__topic:hover {
  background: white;
  color: var(--mo);
}

/* ══════════════════════════════════════════════════════════
   POST — Tag cloud at bottom
   ══════════════════════════════════════════════════════════ */
.mo-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E6E6E6;
}
.mo-post-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #E6E6E6;
  background: white;
  font-family: var(--fc);
  font-size: 14px;
  color: #333;
  transition: background .15s, color .15s, border-color .15s;
}
.mo-post-tag:hover {
  background: var(--mo);
  color: white;
  border-color: var(--mo);
}

/* ══════════════════════════════════════════════════════════
   POST — Share bar
   ══════════════════════════════════════════════════════════ */
.mo-post-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E6E6E6;
}
.mo-post-share__label {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 600;
  color: var(--ne);
}
.mo-post-share__icons {
  display: flex;
  gap: 12px;
}
.mo-post-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  background: white;
  color: #555;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.mo-post-share__link:hover {
  background: var(--mo);
  color: white;
  border-color: var(--mo);
}
.mo-post-share__copy--done {
  background: var(--ve) !important;
  border-color: var(--ve) !important;
  color: var(--ne) !important;
}

/* ══════════════════════════════════════════════════════════
   BUSCA TEMAS — Responsive 1024px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mo-busca-temas { padding: 28px 40px; }
}

/* ══════════════════════════════════════════════════════════
   BUSCA TEMAS — Responsive 768px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mo-busca-temas { padding: 24px 20px; }
  .mo-busca-temas__title { font-size: 17px; margin-bottom: 12px; }
  .mo-busca-temas__tag { font-size: 12px; padding: 6px 12px; }
  .mo-post-tags { gap: 8px; }
  .mo-post-tag { font-size: 12px; padding: 6px 12px; }
  .mo-post-share { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   PROYECTOS — landing, case study
   ============================================================ */

/* ── Banner Principal Proyectos (55/45 grid) ───────────── */
.mo-banner-proyectos {
  height: 515px;
  background: var(--mo);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.mo-banner-proyectos__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 70px;
  gap: 20px;
}
.mo-banner-proyectos__title {
  font-family: var(--ft);
  font-size: 60px;
  font-weight: 700;
  color: var(--bl);
  line-height: 1.0;
}
.mo-banner-proyectos__desc {
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  max-width: 480px;
}
.mo-banner-proyectos__right {
  position: relative;
  overflow: hidden;
}
.mo-banner-proyectos__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Proyectos grid ────────────────────────────────────── */
.mo-proyectos-section {
  padding: 60px 70px;
}
.mo-proyectos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1307px;
  gap: 28px;
}

/* ── Ver más (proyectos) ───────────────────────────────── */
.mo-ver-mas {
  display: flex;
  justify-content: center;
  padding: 0 70px 60px;
}

/* ── Card Proyecto (Card Seccion variant) ──────────────── */
.mo-card--proyecto {
  display: block;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mo-card--proyecto:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mo-card--proyecto .mo-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E5E5E5;
  border-radius: 26px 26px 0 0;
}
.mo-card--proyecto .mo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mo-card--proyecto .mo-card__body {
  padding: 16px 20px 24px;
}
.mo-card--proyecto .mo-card__title {
  font-family: var(--ft);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ne);
  margin-bottom: 12px;
}
.mo-card--proyecto .mo-card__desc {
  font-family: var(--fc);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}

/* ── Section Introduction ──────────────────────────────── */
.mo-section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 70px;
  background: white;
  border-bottom: 1px solid #E6E6E6;
}
.mo-section-intro__title {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 700;
  color: var(--ne);
  position: sticky;
  top: 148px;
  align-self: start;
}
.mo-section-intro__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mo-section-intro__text {
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}
.mo-section-intro__link {
  font-family: var(--fc);
  font-size: 18px;
  font-weight: 500;
  color: var(--mo);
  text-decoration: none;
  transition: color .15s;
}
.mo-section-intro__link:hover { color: #7B33FF; }

/* ── Case Study: header ────────────────────────────────── */
.mo-cs-header {
  padding: 48px 70px 40px;
  background: var(--fo);
}

/* Tag outlined — sin fondo, solo borde gris */
.mo-cs-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  border: 1px solid #666666;
  border-radius: 999px;
  padding: 0 14px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 20px;
}

/* Heading XL: Space Grotesk Bold 48px */
.mo-cs-title {
  font-family: var(--ft);
  font-size: 48px;
  font-weight: 700;
  color: var(--ne);
  line-height: 1.1;
  max-width: 840px;
}

/* ── Case Study: two-column layout ────────────────────── */
.mo-cs-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  padding: 56px 70px;
  align-items: start;
}

.mo-cs-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Section labels — H2 inside post content → purple uppercase */
.mo-cs-content h2 {
  font-family: var(--fc);
  font-size: 22px;
  font-weight: 700;
  color: var(--mo);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Body text */
.mo-cs-content p {
  font-family: var(--fc);
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 14px;
}
.mo-cs-content p:last-child { margin-bottom: 0; }

/* Highlight verde — apply via HTML card in Ghost editor */
.mo-highlight {
  background: var(--ve);
  padding: 0 4px;
  border-radius: 3px;
}

/* Arrow bullet lists */
.mo-cs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}
.mo-cs-list li {
  font-family: var(--fc);
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.mo-cs-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mo);
  font-weight: 600;
}

/* Ghost content lists inside case study → arrow style */
.mo-cs-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 14px;
  list-style: none;
  padding: 0;
}
.mo-cs-content ul li {
  font-family: var(--fc);
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.mo-cs-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mo);
  font-weight: 600;
}

/* ── Case Study: sticky image (right column) ──────────── */
.mo-cs-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #D2D2D2;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 160px;
}
.mo-cs-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── Related sections (proyectos + historias) ─────────── */
.mo-related {
  padding: 0 70px 60px;
}
.mo-related__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--ne);
}
.mo-related__title {
  font-family: var(--ft);
  font-size: 22px;
  font-weight: 700;
  color: var(--ne);
}
.mo-related__grid {
  display: grid;
  max-width: 1307px;
  gap: 28px;
}
.mo-related__grid--proyectos { grid-template-columns: repeat(3, 1fr); }
.mo-related__grid--historias  { grid-template-columns: repeat(3, 1fr); }

/* ── Banner Secundario (pink CTA) ─────────────────────── */
.mo-banner-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 423px;
  align-items: stretch;
}
.mo-banner-sec__left {
  background: var(--ro);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.mo-banner-sec__title {
  font-family: var(--ft);
  font-size: 60px;
  font-weight: 700;
  color: var(--ne);
  line-height: 1.1;
}
.mo-banner-sec__right {
  overflow: hidden;
}
.mo-banner-sec__right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.mo-btn-primary {
  font-family: var(--fc);
  font-size: 18px; font-weight: 500;
  color: var(--bl); background: var(--ne);
  border: none; padding: 0 40px;
  height: 52px; width: 195px;
  border-radius: 999px; cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.mo-btn-primary:hover { background: #7B33FF; color: var(--bl); }

/* ── Responsive: ≤ 1200px ──────────────────────────────── */
@media (max-width: 1200px) {
  .mo-cs-layout { grid-template-columns: 1fr 380px; gap: 40px; }
  .mo-cs-title { font-size: 40px; }
}

/* ── Responsive: ≤ 1024px ──────────────────────────────── */
@media (max-width: 1024px) {
  /* Proyectos listing */
  .mo-banner-proyectos { grid-template-columns: 1fr; height: auto; }
  .mo-banner-proyectos__left { padding: 60px 40px; }
  .mo-banner-proyectos__title { font-size: 56px; }
  .mo-banner-proyectos__right { display: none; }
  .mo-proyectos-section { padding: 40px; }
  .mo-proyectos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mo-ver-mas { padding: 0 40px 40px; }
  .mo-section-intro { padding: 56px 40px; gap: 48px; }
  .mo-section-intro__title { font-size: 28px; }

  /* Case study internal */
  .mo-cs-layout { grid-template-columns: 1fr; }
  .mo-cs-media { order: -1; }
  .mo-cs-img {
    position: static;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    max-height: 360px;
  }
  .mo-related__grid--proyectos,
  .mo-related__grid--historias { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: ≤ 768px ───────────────────────────────── */
@media (max-width: 768px) {
  /* Proyectos listing */
  .mo-banner-proyectos { height: auto; grid-template-columns: 1fr; }
  .mo-banner-proyectos__left { padding: 40px 24px; gap: 16px; }
  .mo-banner-proyectos__title { font-size: 40px; }
  .mo-banner-proyectos__desc { font-size: 16px; }
  .mo-banner-proyectos__right { display: none; }
  .mo-proyectos-section { padding: 32px 24px; }
  .mo-proyectos-grid { grid-template-columns: 1fr; gap: 20px; }
  .mo-ver-mas { padding: 0 24px 40px; }
  .mo-section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 20px;
  }
  .mo-section-intro__title {
    position: static;
    font-size: 26px;
  }
  .mo-section-intro__text { font-size: 17px; }

  /* Case study internal */
  .mo-breadcrumb { padding: 12px 24px; }
  .mo-cs-header { padding: 32px 24px 28px; }
  .mo-cs-title { font-size: 28px; }
  .mo-cs-layout { padding: 32px 24px; gap: 32px; }
  .mo-related { padding: 0 24px 40px; }
  .mo-related__grid--proyectos,
  .mo-related__grid--historias { grid-template-columns: 1fr; }

  /* Banner secundario */
  .mo-banner-sec { grid-template-columns: 1fr; height: auto; }
  .mo-banner-sec__left { padding: 48px 24px; }
  .mo-banner-sec__title { font-size: 36px; }
  .mo-banner-sec__right { height: 200px; }
}

/* ============================================================
   EXPLORACIONES — landing & vista-exploración
   ============================================================ */

/* ── Landing hero (green) ──────────────────────────────── */
.mo-hero-exp {
  height: 515px;
  background: var(--ve);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.mo-hero-exp__left {
  display: flex;
  align-items: center;
  padding: 0 70px;
}
.mo-hero-exp__title {
  font-family: var(--ft);
  font-size: 48px;
  font-weight: 700;
  color: var(--ne);
  line-height: 1.1;
}
.mo-hero-exp__right {
  background: #D2D2D2;
}

/* ── Intro section: reuses .mo-section-intro from Proyectos ── */

/* ── Series grid (landing: all explorations) ───────────── */
.mo-series-section {
  background: var(--fo);
  padding: 80px 70px;
}
.mo-series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Exploration card (landing grid) ───────────────────── */
.mo-excard {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
}
.mo-excard:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.mo-excard__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #D2D2D2;
  overflow: hidden;
}
.mo-excard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mo-excard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mo-excard__title {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 500;
  color: var(--ne);
  line-height: 1.25;
}
.mo-excard__desc {
  font-family: var(--fc);
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mo-excard__count {
  font-family: var(--fc);
  font-size: 14px;
  color: #999;
}

/* ── Vista exploración: hero (purple) ──────────────────── */
.mo-serie-hero {
  height: 515px;
  background: var(--mo);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.mo-serie-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 0 70px;
  gap: 20px;
}
.mo-serie-hero__pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.2);
  color: white;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 999px;
  width: fit-content;
}
.mo-serie-hero__title {
  font-family: var(--ft);
  font-size: 74px;
  font-weight: 700;
  color: white;
  line-height: 1.0;
}
.mo-serie-hero__desc {
  font-family: var(--fc);
  font-size: 16px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  max-width: 480px;
}
.mo-serie-hero__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 70px 32px 0;
}
.mo-serie-hero__img {
  width: 100%;
  max-width: 716px;
  height: 451px;
  background: #D2D2D2;
  border-radius: 16px;
  object-fit: cover;
}

/* ── Vista exploración: historias section ──────────────── */
.mo-historias {
  background: var(--fo);
  padding: 64px 70px;
}
.mo-historias__title {
  font-family: var(--ft);
  font-size: 28px;
  font-weight: 700;
  color: var(--ne);
  margin-bottom: 32px;
}
.mo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Unified card (ucard) — historias inside exploration ── */
.mo-ucard {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
}
.mo-ucard:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.mo-ucard__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #D2D2D2;
  overflow: hidden;
}
.mo-ucard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mo-ucard__body {
  background: white;
  border-radius: 0 0 16px 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mo-ucard__pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.mo-ucard__pill {
  height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: #E6E6E6;
  border-radius: 999px;
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.mo-ucard__title {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 500;
  color: var(--ne);
  line-height: 1.25;
}
.mo-ucard__desc {
  font-family: var(--fc);
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Exploraciones responsive: ≤ 1024px ──────────────── */
@media (max-width: 1024px) {
  .mo-hero-exp { height: auto; min-height: 400px; }
  .mo-hero-exp__left { padding: 0 40px; }
  .mo-hero-exp__title { font-size: 40px; }

  .mo-serie-hero { height: auto; min-height: 400px; }
  .mo-serie-hero__left { padding: 40px; }
  .mo-serie-hero__title { font-size: 56px; }
  .mo-serie-hero__right { padding: 32px 40px 32px 0; }
  .mo-serie-hero__img { height: 360px; }

  .mo-series-section { padding: 56px 40px; }
  .mo-series-grid { grid-template-columns: repeat(2, 1fr); }

  .mo-historias { padding: 48px 40px; }
  .mo-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Exploraciones responsive: ≤ 768px ───────────────── */
@media (max-width: 768px) {
  .mo-hero-exp {
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
  }
  .mo-hero-exp__left { padding: 48px 24px; }
  .mo-hero-exp__title { font-size: 32px; }
  .mo-hero-exp__right { display: none; }

  .mo-serie-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
  }
  .mo-serie-hero__left {
    padding: 40px 24px;
    gap: 14px;
  }
  .mo-serie-hero__title { font-size: 44px; }
  .mo-serie-hero__right {
    padding: 0 24px 32px;
    justify-content: center;
  }
  .mo-serie-hero__img {
    height: 240px;
    max-width: 100%;
    border-radius: 12px;
  }

  .mo-series-section { padding: 40px 24px; }
  .mo-series-grid { grid-template-columns: 1fr; }

  .mo-historias { padding: 40px 24px; }
  .mo-historias__title { font-size: 24px; margin-bottom: 24px; }
  .mo-cards-grid { grid-template-columns: 1fr; }
}
