/* ============================================
   LANDING: Machu Picchu + tours complementarios
   Reutiliza las variables de components.css/main.css
   (--color-*, --mct-*, --spacing-*, --transition-*).
   No redefine :root — solo consume tokens existentes.
   ============================================ */

.mpt-landing {
  background: var(--mct-surface-secondary, #f7faf8);
  color: var(--mct-ink, #172b27);
}

.mpt-landing .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.mpt-hero {
  padding: 132px 0 56px;
  background: linear-gradient(135deg, var(--color-primary, #062803) 0%, var(--color-primary-light, #0a3a04) 100%);
  color: #fff;
}

.mpt-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--spacing-2xl, 48px);
  align-items: center;
}

.mpt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--mct-radius-full, 999px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md, 16px);
}

.mpt-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: var(--spacing-md, 16px);
  color: #fff;
}

.mpt-hero__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: var(--spacing-lg, 24px);
}

.mpt-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mpt-hero__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.mpt-hero__benefits i {
  color: var(--color-accent2, #0deb09);
}

.mpt-hero__image {
  border-radius: var(--mct-radius-xl, 24px);
  overflow: hidden;
  box-shadow: var(--mct-shadow-xl, 0 12px 34px rgba(0, 0, 0, 0.14));
  aspect-ratio: 4 / 5;
}

.mpt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Section shell ---------- */
.mpt-section {
  padding: var(--spacing-3xl, 64px) 0;
}

.mpt-section__head {
  max-width: 720px;
  margin: 0 auto var(--spacing-xl, 32px);
  text-align: center;
}

.mpt-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-primary, #062803);
  margin-bottom: 8px;
}

.mpt-section__head p {
  color: var(--mct-muted, #6c7a76);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ---------- Layout: configurator + summary ---------- */
.mpt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--spacing-xl, 32px);
  align-items: start;
}

@media (max-width: 1024px) {
  .mpt-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Main product card (hero product, distinct weight) ---------- */
.mpt-main-product {
  background: #fff;
  border-radius: var(--mct-radius-xl, 24px);
  border: 2px solid rgba(6, 40, 3, 0.14);
  box-shadow: var(--mct-shadow-xl, 0 12px 34px rgba(0, 0, 0, 0.14));
  overflow: hidden;
  margin-bottom: var(--spacing-xl, 32px);
  position: relative;
}

.mpt-main-product__flag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--mct-radius-full, 999px);
  background: var(--color-accent, #eb09a7);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(235, 9, 167, 0.28);
}

.mpt-main-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

@media (max-width: 860px) {
  .mpt-main-product__grid {
    grid-template-columns: 1fr;
  }
}

.mpt-main-product__media {
  position: relative;
  min-height: 260px;
}

.mpt-main-product__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.mpt-main-product__body {
  padding: var(--spacing-xl, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md, 16px);
}

.mpt-main-product__body h3 {
  font-size: 1.5rem;
  color: var(--color-primary, #062803);
  margin: 0;
}

.mpt-main-product__desc {
  color: var(--mct-muted, #6c7a76);
  line-height: 1.6;
  margin: 0;
}

.mpt-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg, 24px);
}

.mpt-price-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mpt-price-pill span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--mct-muted, #6c7a76);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mpt-price-pill strong {
  font-size: 1.35rem;
  color: var(--color-primary, #062803);
}

.mpt-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-md, 16px);
}

@media (max-width: 640px) {
  .mpt-field-grid {
    grid-template-columns: 1fr;
  }
}

.mpt-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mpt-field label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--mct-ink, #172b27);
}

.mpt-field input,
.mpt-field select {
  height: 48px;
  border-radius: var(--mct-radius-sm, 6px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  padding: 0 14px;
  font-size: 0.98rem;
  font-family: inherit;
  background: #fff;
}

.mpt-field input:focus-visible,
.mpt-field select:focus-visible,
.mpt-card__checkbox:focus-visible,
.mpt-close:focus-visible,
.mpt-btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent2, #0deb09);
  outline-offset: 2px;
}

.mpt-field-error {
  color: #b3261e;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 18px;
}

.mpt-includes {
  margin: 0;
  padding-left: 18px;
  color: var(--mct-ink-light, #2c3e3a);
  font-size: 0.92rem;
  line-height: 1.7;
}

.mpt-meal-options {
  display: grid;
  gap: 8px;
}

.mpt-meal-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--mct-radius-sm, 6px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  cursor: pointer;
  font-size: 0.92rem;
}

.mpt-meal-option:has(input:checked) {
  border-color: var(--color-primary, #062803);
  background: rgba(6, 40, 3, 0.05);
}

.mpt-meal-option input {
  accent-color: var(--color-primary, #062803);
}

/* ---------- Add-on cards ---------- */
.mpt-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-lg, 24px);
}

@media (max-width: 720px) {
  .mpt-addons-grid {
    grid-template-columns: 1fr;
  }
}

.mpt-card {
  background: #fff;
  border-radius: var(--mct-radius-xl, 24px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  box-shadow: var(--mct-shadow, 0 4px 16px rgba(0, 0, 0, 0.12));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base, 0.2s ease), transform var(--transition-base, 0.2s ease);
}

.mpt-card.is-highlighted {
  box-shadow: 0 0 0 3px var(--color-accent2, #0deb09), var(--mct-shadow-lg, 0 8px 32px rgba(0, 0, 0, 0.16));
  transform: translateY(-2px);
}

.mpt-card__media {
  position: relative;
  height: 200px;
}

.mpt-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mpt-card__body {
  padding: var(--spacing-lg, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.mpt-card__body h3 {
  font-size: 1.18rem;
  color: var(--color-primary, #062803);
  margin: 0;
}

.mpt-card__price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-primary, #062803);
}

.mpt-card__desc {
  color: var(--mct-muted, #6c7a76);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.mpt-card__includes {
  margin: 0;
  padding-left: 18px;
  font-size: 0.86rem;
  color: var(--mct-ink-light, #2c3e3a);
  line-height: 1.6;
}

.mpt-card__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.mpt-card__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.92rem;
}

.mpt-card__checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary, #062803);
  cursor: pointer;
}

.mpt-card__details {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--mct-border, rgba(23, 43, 39, 0.14));
}

.mpt-card.is-selected .mpt-card__details {
  display: flex;
}

.mpt-card__extra {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.mpt-card__remove {
  align-self: flex-start;
  background: none;
  border: none;
  color: #b3261e;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
}

.mpt-warning {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--mct-radius-sm, 6px);
  background: #fff7e6;
  border: 1px solid #f4c453;
  color: #7a5b06;
  font-size: 0.86rem;
  line-height: 1.5;
  margin-top: 10px;
}

.mpt-warning i {
  margin-top: 2px;
}

/* ---------- Summary panel (desktop sticky, mobile bottom bar) ---------- */
.mpt-summary {
  background: #fff;
  border-radius: var(--mct-radius-xl, 24px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  box-shadow: var(--mct-shadow-lg, 0 8px 32px rgba(0, 0, 0, 0.16));
  padding: var(--spacing-lg, 24px);
  position: sticky;
  top: 96px;
}

.mpt-summary h2 {
  font-size: 1.15rem;
  color: var(--color-primary, #062803);
  margin-bottom: 14px;
}

.mpt-summary__travelers {
  display: flex;
  gap: var(--spacing-md, 16px);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  font-size: 0.9rem;
  color: var(--mct-ink-light, #2c3e3a);
}

.mpt-summary__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.mpt-summary__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
}

.mpt-summary__item-name {
  font-weight: 800;
  color: var(--color-primary, #062803);
}

.mpt-summary__item-meta {
  color: var(--mct-muted, #6c7a76);
  font-size: 0.82rem;
}

.mpt-summary__totals {
  border-top: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

.mpt-summary__totals-row {
  display: flex;
  justify-content: space-between;
}

.mpt-summary__total {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-primary, #062803);
}

.mpt-summary__discount {
  color: #0a7d2e;
}

.mpt-coupon {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.mpt-coupon input {
  flex: 1;
  height: 44px;
  border-radius: var(--mct-radius-sm, 6px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  padding: 0 12px;
}

.mpt-coupon-message {
  font-size: 0.82rem;
  min-height: 18px;
  margin-bottom: 8px;
}

.mpt-coupon-message.is-error { color: #b3261e; }
.mpt-coupon-message.is-success { color: #0a7d2e; }

.mpt-summary__alert {
  font-size: 0.8rem;
  color: #7a5b06;
  background: #fff7e6;
  border: 1px solid #f4c453;
  border-radius: var(--mct-radius-sm, 6px);
  padding: 8px 10px;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.mpt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 54px;
  border: none;
  border-radius: var(--mct-radius-full, 999px);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition-base, 0.2s ease), box-shadow var(--transition-base, 0.2s ease);
}

.mpt-btn--primary {
  background: linear-gradient(135deg, var(--color-accent, #eb09a7), var(--color-accent-dark, #c8088d));
  color: #fff;
  box-shadow: var(--mct-shadow-accent, 0 8px 18px rgba(235, 9, 167, 0.22));
}

.mpt-btn--primary:hover {
  transform: translateY(-2px);
}

.mpt-btn--secondary {
  background: #fff;
  color: var(--color-primary, #062803);
  border: 2px solid var(--color-primary, #062803);
}

.mpt-availability-note {
  font-size: 0.78rem;
  color: var(--mct-muted, #6c7a76);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ---------- Mobile sticky summary bar ---------- */
.mpt-mobile-bar {
  display: none;
}

@media (max-width: 1024px) {
  .mpt-summary {
    position: static;
  }

  .mpt-mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mpt-mobile-bar__total {
    display: flex;
    flex-direction: column;
  }

  .mpt-mobile-bar__total strong {
    font-size: 1.15rem;
    color: var(--color-primary, #062803);
  }

  .mpt-mobile-bar__total span {
    font-size: 0.74rem;
    color: var(--mct-muted, #6c7a76);
  }

  .mpt-mobile-bar .mpt-btn {
    width: auto;
    padding: 0 22px;
    height: 46px;
  }

  /* Give the page room so the fixed bar never covers the last section on mobile. */
  .mpt-landing {
    padding-bottom: 84px;
  }
}

/* ---------- Upsell modal ---------- */
.mpt-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.mpt-modal[hidden] {
  display: none;
}

.mpt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 40, 3, 0.55);
}

.mpt-modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--mct-radius-xl, 24px);
  max-width: 480px;
  width: 100%;
  padding: var(--spacing-xl, 32px);
  box-shadow: var(--mct-shadow-xl, 0 12px 34px rgba(0, 0, 0, 0.14));
}

.mpt-modal h2 {
  color: var(--color-primary, #062803);
  font-size: 1.35rem;
  margin-bottom: 12px;
  padding-right: 28px;
}

.mpt-modal p {
  color: var(--mct-ink-light, #2c3e3a);
  line-height: 1.6;
  margin-bottom: 12px;
}

.mpt-modal__benefit {
  background: rgba(13, 235, 9, 0.08);
  border: 1px solid rgba(13, 235, 9, 0.3);
  border-radius: var(--mct-radius-sm, 6px);
  padding: 10px 14px;
  font-weight: 700;
  color: #0a7d2e;
  font-size: 0.9rem;
}

.mpt-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mpt-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--color-primary, #062803);
}

/* ---------- FAQ ---------- */
.mpt-faq {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}

.mpt-faq details {
  background: #fff;
  border-radius: var(--mct-radius, 14px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  padding: 14px 18px;
}

.mpt-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--color-primary, #062803);
}

.mpt-faq p {
  margin-top: 10px;
  color: var(--mct-muted, #6c7a76);
  line-height: 1.6;
}

/* ---------- Trust strip ---------- */
.mpt-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-md, 16px);
}

@media (max-width: 720px) {
  .mpt-trust {
    grid-template-columns: 1fr;
  }
}

.mpt-trust__item {
  background: #fff;
  border-radius: var(--mct-radius-lg, 18px);
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  padding: var(--spacing-lg, 24px);
  text-align: center;
}

.mpt-trust__item i {
  font-size: 1.6rem;
  color: var(--color-primary, #062803);
  margin-bottom: 8px;
}

/* ---------- Final CTA ---------- */
.mpt-final-cta {
  background: var(--color-primary, #062803);
  color: #fff;
  border-radius: var(--mct-radius-xl, 24px);
  padding: var(--spacing-2xl, 48px);
  text-align: center;
}

.mpt-final-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.mpt-final-cta .mpt-btn {
  max-width: 340px;
  margin: 20px auto 0;
}

/* ---------- Notices ---------- */
.mpt-notice-banner {
  background: #eef5f1;
  border-top: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  border-bottom: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  padding: 18px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--mct-ink-light, #2c3e3a);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   V2 — Ajustes visuales solicitados (2026-08-03)
   ============================================ */

/* Respeto entre logo, navegación y acciones en escritorio intermedio. */
@media (min-width: 1121px) and (max-width: 1480px) {
  .mpt-page .header-container {
    width: 100%;
    max-width: none;
    grid-template-columns: 176px minmax(0, 1fr) auto;
    gap: 20px;
    padding-inline: 18px;
  }

  .mpt-page .header .logo {
    width: 176px;
    min-width: 176px;
    padding-right: 10px;
  }

  .mpt-page .header .logo img {
    width: 166px;
    max-width: 100%;
    height: 64px;
    object-fit: contain;
    object-position: left center;
  }

  .mpt-page .header .nav-menu {
    gap: clamp(7px, 0.8vw, 13px);
  }

  .mpt-page .header .nav-menu a {
    font-size: clamp(0.72rem, 0.72vw, 0.84rem);
  }

  .mpt-page .header .header-actions {
    margin-left: 4px;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .mpt-page .header .wa-header {
    display: none;
  }

  .mpt-page .header-container {
    grid-template-columns: 162px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mpt-page .header .logo {
    width: 162px;
    min-width: 162px;
  }

  .mpt-page .header .logo img {
    width: 154px;
  }
}

/* Hero con el mismo video del index y una capa verde legible. */
.mpt-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 660px;
  padding: 132px 0 64px;
  background: #062803;
}

.mpt-hero__media,
.mpt-hero__overlay {
  position: absolute;
  inset: 0;
}

.mpt-hero__media {
  z-index: -2;
}

.mpt-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpt-hero__video--mobile {
  display: none;
}

.mpt-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 41, 24, 0.91) 0%, rgba(4, 41, 24, 0.83) 48%, rgba(4, 41, 24, 0.59) 100%),
    linear-gradient(rgba(6, 40, 3, 0.33), rgba(5, 50, 32, 0.67));
}

.mpt-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  grid-template-areas:
    "eyebrow image"
    "content image";
  column-gap: clamp(24px, 3.5vw, 54px);
  row-gap: 12px;
  align-items: center;
}

.mpt-hero__eyebrow-wrap {
  grid-area: eyebrow;
  align-self: end;
}

.mpt-hero__content {
  grid-area: content;
  align-self: start;
}

.mpt-hero__image {
  grid-area: image;
  width: 100%;
  max-width: 610px;
  justify-self: end;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mpt-hero__eyebrow {
  margin: 0;
}

.mpt-hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.mpt-hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 760px;
}

.mpt-hero__benefits li {
  align-items: flex-start;
  line-height: 1.4;
}

.mpt-hero__benefits i {
  margin-top: 3px;
}

/* Beneficios colocados debajo del encabezado del configurador. */
.mpt-trust--configurator {
  margin-top: 34px;
  margin-bottom: 0;
}

.mpt-trust--configurator .mpt-trust__item {
  box-shadow: 0 10px 28px rgba(6, 40, 3, 0.07);
}

/* Card principal. */
.mpt-main-product__flag {
  background: #eb09a7;
}

.mpt-field--wide {
  grid-column: 1 / -1;
}

/* Cards adicionales: limpias en escritorio y desplegables en móvil. */
.mpt-addons-grid {
  align-items: stretch;
}

.mpt-card__summary {
  display: grid;
  gap: 6px;
}

.mpt-card__expandable {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.mpt-card__disclosure {
  display: none;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(6, 40, 3, 0.18);
  border-radius: 12px;
  background: #f5faf7;
  color: var(--color-primary, #062803);
  font: 800 0.9rem/1.2 "Montserrat", sans-serif;
  cursor: pointer;
}

.mpt-card__disclosure i {
  transition: transform 0.2s ease;
}

.mpt-card.is-expanded .mpt-card__disclosure i {
  transform: rotate(180deg);
}

.mpt-card__excludes {
  margin: 0;
  color: #9c2f24;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.mpt-card__toggle-row {
  padding-top: 12px;
  border-top: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
}

.mpt-card__checkbox {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 2px solid var(--color-primary, #062803);
  border-radius: 999px;
  color: var(--color-primary, #062803);
  background: #fff;
}

.mpt-card__checkbox:has(input:checked) {
  color: #fff;
  background: var(--color-primary, #062803);
}

.mpt-card__details {
  background: #f7faf8;
  border-radius: 14px;
  padding: 14px;
}

/* Botón de cupón más compacto. */
.mpt-coupon {
  align-items: center;
}

.mpt-coupon input {
  min-width: 0;
}

.mpt-coupon__apply {
  flex: 0 0 auto;
  width: auto;
  min-width: 102px;
  height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
  box-shadow: none;
}

/* Bloque informativo SEO visible y natural. */
.mpt-seo {
  background: #fff;
}

.mpt-seo__shell {
  border: 1px solid var(--mct-border, rgba(23, 43, 39, 0.14));
  border-radius: 28px;
  background: linear-gradient(145deg, #f2f8f4 0%, #ffffff 72%);
  box-shadow: 0 18px 44px rgba(6, 40, 3, 0.08);
  padding: clamp(28px, 5vw, 58px);
}

.mpt-seo__content {
  max-width: 920px;
  margin: 0 auto;
}

.mpt-seo__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #0a7d2e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mpt-seo h2 {
  margin-bottom: 18px;
  color: var(--color-primary, #062803);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.mpt-seo p {
  margin: 0 0 14px;
  color: var(--mct-ink-light, #2c3e3a);
  line-height: 1.75;
}

.mpt-seo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mpt-seo__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 40, 3, 0.07);
  color: var(--color-primary, #062803);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .mpt-hero {
    min-height: auto;
    padding: 112px 0 50px;
  }

  .mpt-hero__video--desktop {
    display: none;
  }

  .mpt-hero__video--mobile {
    display: block;
  }

  .mpt-hero__overlay {
    background: linear-gradient(180deg, rgba(4, 41, 24, 0.89) 0%, rgba(4, 41, 24, 0.83) 55%, rgba(4, 41, 24, 0.91) 100%);
  }

  .mpt-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "image"
      "content";
    row-gap: 20px;
  }

  .mpt-hero__image {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
  }

  .mpt-hero h1 {
    max-width: none;
    margin: 2px 0 24px;
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .mpt-hero__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .mpt-landing .container {
    width: min(100% - 28px, 1180px);
  }

  .mpt-section {
    padding: 46px 0;
  }

  .mpt-section__head {
    margin-bottom: 24px;
  }

  .mpt-hero {
    padding-top: 104px;
  }

  .mpt-hero__eyebrow {
    font-size: 0.72rem;
    padding: 8px 13px;
  }

  .mpt-hero__image {
    aspect-ratio: 4 / 3;
  }

  .mpt-hero h1 {
    font-size: clamp(1.85rem, 9.6vw, 2.55rem);
    line-height: 1.08;
  }

  .mpt-hero__benefits li {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
  }

  .mpt-trust--configurator {
    gap: 12px;
    margin-top: 26px;
    margin-bottom: 0;
  }

  .mpt-trust--configurator .mpt-trust__item {
    padding: 18px;
    text-align: left;
  }

  .mpt-trust--configurator .mpt-trust__item i {
    font-size: 1.25rem;
  }

  .mpt-main-product__body {
    padding: 22px 18px 26px;
  }

  .mpt-main-product__media,
  .mpt-main-product__media img {
    min-height: 220px;
    max-height: 260px;
  }

  .mpt-main-product__flag {
    top: 14px;
    left: 14px;
    padding: 7px 13px;
  }

  .mpt-addons-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mpt-card {
    width: 100%;
    border-radius: 20px;
  }

  .mpt-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .mpt-card__body {
    padding: 18px;
    gap: 12px;
  }

  .mpt-card__body h3 {
    font-size: 1.16rem;
    line-height: 1.28;
  }

  .mpt-card__price {
    font-size: 1.08rem;
  }

  .mpt-card__disclosure {
    display: flex;
  }

  .mpt-card__expandable {
    display: none;
    padding-top: 2px;
  }

  .mpt-card.is-expanded .mpt-card__expandable,
  .mpt-card.is-selected .mpt-card__expandable {
    display: flex;
  }

  .mpt-card__desc,
  .mpt-card__includes {
    font-size: 0.88rem;
  }

  .mpt-coupon {
    gap: 8px;
  }

  .mpt-coupon__apply {
    min-width: 92px;
    padding-inline: 12px;
  }

  .mpt-summary {
    padding: 22px 18px;
  }

  .mpt-seo__shell {
    width: 100%;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .mpt-modal {
    padding: 12px;
  }

  .mpt-modal__panel {
    padding: 24px 18px;
  }
}


/* V3: hero más visible y con mejor aprovechamiento horizontal. */
.mpt-hero .container {
  width: min(1260px, calc(100% - 28px));
}

@media (max-width: 900px) {
  .mpt-hero .container {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 720px) {
  .mpt-hero .container {
    width: calc(100% - 20px);
  }

  .mpt-hero__image {
    width: calc(100% + 4px);
    margin-left: -2px;
    margin-right: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mpt-hero__video {
    display: none;
  }
}


/* ============================================
   V4 — Main product horizontal media, 3-column add-ons and lighter hero
   ============================================ */

/* Reveal slightly more of the background video while preserving text contrast. */
.mpt-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 41, 24, 0.87) 0%, rgba(4, 41, 24, 0.79) 48%, rgba(4, 41, 24, 0.55) 100%),
    linear-gradient(rgba(6, 40, 3, 0.29), rgba(5, 50, 32, 0.63));
}

/* Main Machu Picchu card: horizontal image first, all content below it. */
.mpt-main-product__grid {
  grid-template-columns: minmax(0, 1fr);
}

.mpt-main-product__media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.mpt-main-product__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center 47%;
}

/* Check-circle bullets matching the hero's visual language. */
.mpt-includes {
  display: grid;
  gap: 9px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

.mpt-includes li {
  position: relative;
  min-height: 22px;
  padding-left: 31px;
}

.mpt-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary, #062803);
  color: #fff;
  font: 900 0.75rem/1 "Montserrat", sans-serif;
}

/* Three add-on cards per row on standard desktop widths. */
.mpt-addons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mpt-card__body {
  padding: 20px;
}

@media (min-width: 721px) and (max-width: 1020px) {
  .mpt-addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mpt-hero__overlay {
    background: linear-gradient(180deg, rgba(4, 41, 24, 0.85) 0%, rgba(4, 41, 24, 0.79) 55%, rgba(4, 41, 24, 0.87) 100%);
  }
}

@media (max-width: 720px) {
  .mpt-hero h1 {
    font-size: clamp(1.66rem, 8.4vw, 2.22rem);
    line-height: 1.08;
  }

  .mpt-main-product__media {
    aspect-ratio: 16 / 10;
  }

  .mpt-main-product__media,
  .mpt-main-product__media img {
    min-height: 0;
    max-height: none;
  }

  .mpt-addons-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V5 — Desktop two-column configurator + sticky booking summary
   Mobile rules remain unchanged.
   ========================================================= */
@media (min-width: 1025px) {
  html,
  body.mpt-page {
    overflow-x: clip !important;
    overflow-y: visible !important;
  }

  .mpt-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 370px);
    align-items: start;
  }

  .mpt-addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mpt-summary {
    position: sticky;
    top: var(--mpt-sticky-offset, 104px);
    align-self: start;
    max-height: calc(100vh - var(--mpt-sticky-offset, 104px) - 18px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
}
