/**
 * Landing Home - Header + Hero section
 */

/* ----- Header ----- */
.landing-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0.9rem 1.35rem;
}

.landing-header__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  flex-wrap: wrap;
  padding: 0.45rem 1.35rem 0.45rem 0.675rem;
}

.landing-header__logo {
  display: block;
  flex-shrink: 0;
}

.landing-header__logo img {
  height: 55px;
  width: auto;
  display: block;
 /* filter: brightness(0) invert(1);*/
}

.landing-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .landing-header__logo { order: 1; }
  .landing-header__nav {
    order: 2;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
  }
  .landing-header__actions { order: 3; }
}

.landing-header__link {
  color: #2E2E2E;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.landing-header__link:hover {
  color: #d37c8a;
}

.landing-header__link--cta-mobile {
  display: none;
}

.landing-header__right,
.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.landing-header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #2E2E2E;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.landing-header__hamburger:hover {
  background: rgba(211, 124, 138, 0.12);
  color: #d37c8a;
}

.landing-header__hamburger-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.landing-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: #b25865;
  color: #fff;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}

.landing-header__cta:hover {
  background: #9a4654;
  box-shadow: 0 4px 14px rgba(178, 88, 101, 0.4);
}

/* Locale selector en header landing: sobre fondo blanco */
.landing-header .language-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
}

.landing-header .language-selector__current-pill {
  display: none;
}

.landing-header .language-selector__item {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c2c2c;
  transition: color 0.2s, background 0.2s;
}

.landing-header .language-selector__item:hover,
.landing-header .language-selector__item.is-active {
  color: #d37c8a;
  background: rgba(211, 124, 138, 0.12);
}

.landing-header .language-selector__divider {
  color: #999;
  margin: 0 0.15rem;
  font-weight: 300;
}

.landing-header .language-selector__more {
  position: relative;
  display: inline-flex;
}

.landing-header .language-selector__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  color: #2c2c2c;
}

.landing-header .language-selector__trigger:hover {
  color: #d37c8a;
  background: rgba(211, 124, 138, 0.12);
}

.landing-header .language-selector__globe,
.landing-header .language-selector__chevron {
  color: inherit;
}

.landing-header .language-selector__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.35rem;
  min-width: 10rem;
  padding: 0.35rem 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 20;
}

.landing-header .language-selector__menu.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-header .language-selector__menu-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.landing-header .language-selector__menu-item:hover {
  background: #f5f5f5;
}

/* ----- Hero ----- */
.landing-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  /* Padding-top compensa la altura del header absoluto para que la badge / título no queden bajo él. */
  padding: 110px 0 0;
  overflow: hidden;
  color: #ffffff;
}
/* El inner ocupa el espacio disponible y mantiene su grid interno centrado
   verticalmente; el reel queda automáticamente al pie del hero. */
.landing-hero > .landing-hero__inner {
  flex: 1;
  display: grid;
  align-content: center;
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}

/* ----- Banda ancho pantalla ----- */
.landing-band {
  width: 100%;
  background: #e7dfda;
  padding: 1rem 1.5rem;
  text-align: center;
  margin-top: -1px;
}

.landing-band__text {
  margin: 0;
  color: #f4edea;
  font-family: 'Allura', cursive;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.landing-band--cta {
  padding: 1.5rem 1.5rem;
 
  background: #a96872;
}

.landing-band--cta .landing-band__text {
  margin-bottom: 0.25rem;
  color: #f4edea;
}

.landing-band--cta .landing-band__text:last-of-type {
  margin-bottom: 1rem;
}

/* ----- Cita entre secciones ----- */
.landing-quote {
  padding: 1rem 1.5rem 0.5rem;
  text-align: center;
  background: #fff;
}

.landing-quote__text {
  margin: 0;
  font-family: 'Allura', cursive;
  font-size: 52px;
  color: #3a2f2f;
  opacity: 0.9;
}

/* Solo visible en móvil (estilos en @media max-width: 768px) */
.landing-intro-mobile {
  display: none;
}

.landing-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  background: transparent;
  
  transition: background 0.2s, color 0.2s;
  border: 1px solid #e9dcd9;
    color: #f4edea;
}

.landing-band__btn:hover {
  background: #a85c64;
  color: #fff;
}

/* ----- Footer (mismo fondo que band) ----- */
.landing-footer {
  width: 100%;
  background: #7f4a4f;
  padding: 3.5rem 2rem;
  color: #fff;
}

.landing-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .landing-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.landing-footer__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: fit-content;
}

.landing-footer__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.landing-footer__social {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s, transform 0.15s;
}
.landing-footer__social:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.landing-footer__logo {
  display: inline-block;
}

.landing-footer__logo-img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .landing-footer__logo-img {
    max-width: 380px;
  }
}

/* Columna enlaces: iconos en círculo, texto ~18-22px, espaciado generoso */
.landing-footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.landing-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #f6f1ef; 
  
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.landing-footer__link:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.landing-footer__link--text {
  cursor: default;
  pointer-events: none;
}

.landing-footer__link.landing-footer__link--text:hover {
  text-decoration: none;
  opacity: 1;
}

.landing-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}

/* Iconos de enlaces: círculo rosa claro ~44px, icono blanco dentro */
.landing-footer__icon--circle {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.landing-footer__icon--circle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Iconos contacto: outline ~30-36px */
.landing-footer__icon--small svg {
  width: 1.875rem;
  height: 1.875rem;
}

/* Columna contacto: label pequeño, valor 18-20px */
.landing-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.landing-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.landing-footer__contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color:  rgba(246,241,239,.80);
}

.landing-footer__contact-value {
  color: #f6f1ef;;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.landing-footer__contact-value:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ----- Lo hacemos a tu medida ----- */
.landing-tailor {
  background: linear-gradient(to bottom, #f8eef0, #fdf5f6);
  padding: 4rem 1.5rem;
}

.landing-tailor__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-tailor__title {
  font-family: 'Parisienne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #a85c64;
  margin: 0 0 0.5rem;
  text-align: center;
}

.landing-tailor__subtitle {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 560px;
  color: #8b6f73;
  letter-spacing: 0.02em;
}

.landing-tailor__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .landing-tailor__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.landing-tailor-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(216, 138, 146, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.landing-tailor-card__image {
  height: 280px;
  background: #f5e6e8;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.landing-tailor-card__video,
.landing-tailor-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-tailor-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.landing-tailor-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 0.5rem;
}

.landing-tailor-card__desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.45;
  margin: 0 0 1rem;
  flex: 1;
}

.landing-tailor-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #d37c8a;
  transition: background 0.2s, box-shadow 0.2s;
  align-self: center;
}

.landing-tailor-card__btn:hover {
  background: #c46b7a;
  box-shadow: 0 4px 14px rgba(211, 124, 138, 0.4);
}

/* ----- Elige tu estilo ----- */
.landing-styles {
  background: #f9f6f4;
  padding: 4rem 1.5rem;
}

.landing-styles__inner {
  max-width: 1200px;
  margin: 45px auto 0;
}

.landing-styles__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.landing-styles__title {
  font-family: 'Parisienne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #a85c64;
  margin: 0;
  text-align: center;
}

.landing-styles__subtitle {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 2rem;
  color: #8b6f73;
  letter-spacing: 0.2em;
}

.landing-styles__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.landing-styles__view-all {
  display: block;
  text-align: center;
  margin: 1rem 0 2rem;
  font-size: 14px;
  font-weight: 500;
  color: #b85f6b;
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s ease, transform 0.2s ease;
}

.landing-styles__view-all:hover {
  color: #a85c64;
}

.landing-styles__filter {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: white;
  border: 1.5px solid #d88a92;
  color: #c96f7a;
}

.landing-styles__filter:hover {
  background: #f7e7ea;
  color: #2c2c2c;
}

.landing-styles__filter.is-active {
  background: #f5d8db;
  color: #a85c64;
}

.landing-styles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .landing-styles__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- ¿Qué incluye tu invitación? ----- */
.landing-includes {
  background: #f2ebe7;
  padding: 3rem 1.5rem;
}

/* ----- Detalles Únicos (sección exclusive) ----- */
.landing-exclusive {
  background: #fff;
  padding: 2rem 1.5rem;
}

.landing-includes__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-includes__title {
  font-family: 'Parisienne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #a85c64;
  margin: 0 0 0.5rem;
  text-align: center;
}

.landing-includes__subtitle {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 2.5rem;
  color: #8b6f73;
  letter-spacing: 0.2em;
}

.landing-includes__grid {
  display: grid;
  /* En móvil: 2 columnas para que las 6 cards quepan en 3 filas en lugar de 6 */
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .landing-includes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .landing-includes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Móvil: cards compactas — texto, icono y descripción más pequeños */
@media (max-width: 599px) {
  .landing-includes__card-icon {
    padding: 0.75rem 0 0 !important;
  }
  .landing-includes__card-icon img {
    width: 56px !important;
    height: 56px !important;
  }
  .landing-includes__card-body {
    padding: 0.5rem 0.75rem 1rem !important;
  }
  .landing-includes__card-title {
    font-size: 0.85rem !important;
    line-height: 1.25;
  }
  .landing-includes__card-desc {
    display: none !important;
  }
  .landing-includes__card-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

.landing-includes__card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

a.landing-includes__card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
a.landing-includes__card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.landing-includes__card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.25rem;
}

.landing-includes__card-icon img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.landing-includes__card-body {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
}

.landing-includes__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 0.5rem;
}

.landing-includes__card-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.45;
  margin: 0;
}

.landing-includes__card-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a85c64;
  background: rgba(168, 92, 100, 0.12);
  border-radius: 50px;
}

.landing-includes__cta-wrap {
  display: flex;
  justify-content: center;
}

.landing-includes__cta-wrap--duo {
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.landing-includes__cta-wrap .landing-hero__btn--primary {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}

.landing-includes__btn-outline {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  background: transparent;
  color: var(--smd-coral-deep, #C8466A);
  border: 1.5px solid var(--smd-coral, #E85A7A);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.landing-includes__btn-outline:hover {
  background: var(--smd-coral, #E85A7A);
  color: #fff;
}

.landing-style-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.landing-style-card__top {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

a.landing-style-card__media-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
}
a.landing-style-card__media-link:focus-visible {
  outline: 2px solid var(--smd-coral, #E85A7A);
  outline-offset: -2px;
}

.landing-style-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* En móvil/tablet la card es full-width y los 380px de min-height la dejan demasiado
   ancha para su altura: `cover` recorta agresivamente. Subimos el min-height a 520px
   para que la proporción se acerque a vertical y el recorte sea mínimo. */
@media (max-width: 899px) {
  .landing-style-card__top {
    min-height: 520px;
  }
}

.landing-style-card__top--classic {
  background: linear-gradient(135deg, #e8c4c8 0%, #d4a5aa 50%, #c9b8a8 100%);
}

.landing-style-card__top--garden {
  background: linear-gradient(135deg, #f5e6c8 0%, #e8d4a8 50%, #d4c090 100%);
}

.landing-style-card__top--minimal {
  background: linear-gradient(180deg, #f8f6f4 0%, #ebe8e4 100%);
}

.landing-style-card__top--rustic {
  background: linear-gradient(135deg, #3d2c2a 0%, #5c4033 50%, #4a3530 100%);
}

.landing-style-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.landing-style-card__label {
  font-family: 'Parisienne', sans-serif;
  font-size: 1.5rem;
  color: #2c2c2c;
  text-align: center;
  margin: 0;
}

.landing-style-card__btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 2px solid #d37c8a;
  background: #fff;
  color: #d37c8a;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
}

.landing-style-card__btn-outline:hover {
  background: #d37c8a;
  color: #fff;
}

/* ----- FAQ ----- */
.landing-faq {
  background: #f9f6f4;
  padding: 6rem 1.5rem 4rem;
  min-height: 100vh;
}

.landing-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.landing-faq__title {
  font-family: 'Parisienne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #a85c64;
  text-align: center;
  margin: 0 0 3rem;
}

.landing-faq__item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  padding: 0 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.landing-faq__question {
  padding: 1.25rem 2rem 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.landing-faq__question::-webkit-details-marker {
  display: none;
}

.landing-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #a85c64;
  transition: transform 0.2s;
}

.landing-faq__item[open] .landing-faq__question::after {
  content: "−";
}

.landing-faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .landing-faq {
    padding: 3rem 1.25rem;
  }

  .landing-faq__question {
    font-size: 0.95rem;
  }
}

/* ----- Pricing ----- */
.landing-pricing {
  background: #f9f6f4;
  padding: 6rem 1.5rem 4rem;
  min-height: 100vh;
}

.landing-pricing__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.landing-pricing__title {
  font-family: 'Parisienne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #3a2f2f;
  margin: 0 0 0.75rem;
}

.landing-pricing__title strong {
  font-weight: 700;
}

.landing-pricing__subtitle {
  font-size: 1rem;
  color: #6b6b6b;
  margin: 0 0 3rem;
}

.landing-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.landing-pricing__card {
  background: #fff;
  border: 1px solid #f0e8e5;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
}

.landing-pricing__card--featured {
  border: 2px solid #d28a8f;
  padding-top: 3rem;
}

.landing-pricing__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d28a8f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  white-space: nowrap;
}

.landing-pricing__card-header {
  margin-bottom: 1rem;
}

.landing-pricing__card-name {
  font-family: 'Parisienne', sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #3a2f2f;
  margin: 0 0 0.25rem;
}

.landing-pricing__card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #3a2f2f;
  margin: 0;
}

.landing-pricing__card-badge--promo {
  background: #c9a86c;
}

.landing-pricing__price-old {
  font-size: 1.1rem;
  font-weight: 400;
  color: #9a8a90;
  text-decoration: line-through;
  margin-right: 0.35rem;
}

.landing-pricing__card-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.landing-pricing__card-includes {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3a2f2f;
  margin: 0 0 0.5rem;
}

.landing-pricing__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.landing-pricing__card-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: #3a2f2f;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.landing-pricing__card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d28a8f;
  font-weight: 600;
}

.landing-pricing__card-features--excluded {
  opacity: 0.5;
}

.landing-pricing__card-btn {
  display: inline-block;
  text-align: center;
  background: #d28a8f;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}

.landing-pricing__card-btn:hover {
  background: #c27a80;
  transform: translateY(-1px);
}

.landing-pricing__card-btn--featured {
  background: #d28a8f;
}

.landing-pricing__card-btn--disabled {
  background: #ccc;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.landing-pricing__card-btn--disabled:hover {
  background: #ccc;
  transform: none;
}

/* Coming soon cards */
.landing-pricing__card--coming-soon {
  position: relative;
  filter: grayscale(100%);
  opacity: 0.55;
}

.landing-pricing__card-badge--soon {
  background: #9a8a90;
}

.landing-pricing__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

.landing-pricing__ondemand {
  background: #fff;
  border: 1px solid #f0e8e5;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
}

.landing-pricing__ondemand-name {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #3a2f2f;
  margin: 0;
  display: inline;
}

.landing-pricing__ondemand-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3a2f2f;
  margin: 0.5rem 0 1rem;
  display: inline;
  margin-left: 1rem;
}

.landing-pricing__ondemand-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin: 1rem 0 0.25rem;
  line-height: 1.5;
}

.landing-pricing__ondemand-text {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.5;
}

.landing-pricing__notes {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.landing-pricing__notes-line {
  font-size: 1.1rem;
  color: #3a2f2f;
  margin: 0;
}

.landing-pricing__notes-checks {
  font-size: 0.95rem;
  color: #6b6b6b;
  margin: 0;
}

.landing-pricing__notes-checks span {
  margin-right: 0.5rem;
}

.landing-pricing__notes .landing-pricing__card-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .landing-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-pricing {
    padding: 4rem 1.25rem 3rem;
  }

  .landing-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-pricing__bottom {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-pricing__notes {
    text-align: center;
    align-items: center;
  }

  .landing-pricing__notes .landing-pricing__card-btn {
    align-self: center;
  }
}

/* ----- Cómo funciona ----- */
.landing-how {
  background: #fff;
  padding: 4rem 1.5rem;
}

.landing-how__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.landing-how__title {
  font-family: 'Parisienne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #a85c64;
  margin: 0 0 0.5rem;
}

.landing-how__subtitle {
  font-size: 1rem;
  color: #8b6f73;
  margin: 0 auto 3rem;
  max-width: 560px;
  letter-spacing: 0.02em;
}

.landing-how__image {
  margin: 0 auto 3rem;
  max-width: 800px;
}

.landing-how__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.landing-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .landing-how__steps {
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}

/* En móvil: pasos más compactos para que no se haga eterna la sección */
@media (max-width: 767px) {
  .landing-how__step-number {
    width: 1.75rem !important;
    height: 1.75rem !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }
  .landing-how__step-icon {
    margin-bottom: 0.5rem !important;
  }
  .landing-how__step-icon svg {
    width: 26px;
    height: 26px;
  }
  .landing-how__step-title {
    font-size: 0.82rem !important;
    line-height: 1.25;
    margin-bottom: 0.35rem !important;
  }
  .landing-how__step-desc {
    display: none !important;
  }
}

.landing-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.landing-how__step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #d37c8a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.landing-how__step-icon {
  color: #a85c64;
  margin-bottom: 1rem;
}

.landing-how__step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 0.5rem;
}

.landing-how__step-desc {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.landing-how__cta-wrap {
  margin-bottom: 2rem;
}

.landing-how__cta-note {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0.75rem 0 0;
}

.landing-how__trust {
  font-size: 0.85rem;
  color: #a85c64;
  font-weight: 500;
  margin: 0;
}

/* ----- Hero ----- */
.landing-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-hero__bg--desktop {
  background-color: #e7dfda;
}

.landing-hero__bg--mobile {
  display: none;
}

@media (max-width: 768px) {
  .landing-hero {
    /* Padding-top compensa la altura del header absoluto (logo 55px + paddings ~ 100px)
       para que el contenido no quede oculto debajo. */
    padding: 100px 0 0;
    box-sizing: border-box;
    align-items: flex-start;
    overflow: visible;
  }

  .landing-hero__bg--desktop {
    display: none;
  }

  .landing-hero__bg--mobile {
    display: block;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100%;
  }
}

.landing-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: center;
}

/* Mobile: contenido a la izquierda, móvil a la derecha; note debajo ocupando ambas columnas. */
.landing-hero__content {
  grid-column: 1;
  grid-row: 1;
}
.landing-hero__phone-wrap {
  grid-column: 2;
  grid-row: 1;
}
.landing-hero__note-wrap {
  grid-column: 1 / -1;
  grid-row: 2;
}

@media (min-width: 769px) {
  .landing-hero__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    align-items: start;
  }

  .landing-hero__content {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    padding-top: 0;
  }

  .landing-hero__phone-wrap {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .landing-hero__note-wrap {
    grid-column: 1;
    grid-row: 2;
  }

}

@media (min-width: 769px) {
  .landing-hero__inner {
    z-index: 2;
  }

  .landing-header {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }

  .landing-header__inner {
    padding-top: 0.36rem;
    padding-bottom: 0.36rem;
  }

  .landing-header__logo img {
    height: 60px;
  }

  .landing-hero__bg--desktop {
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .landing-hero__bg--mobile {
    display: none;
  }

  .landing-hero__phone-wrap {
    transform: none;
    min-height: 0;
    align-self: start;
    justify-self: end;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0;
  }

  .landing-hero__phone--desktop {
    display: none;
  }

  .landing-hero__phone--mobile {
    display: block;
  }

  .landing-hero__content {
    color: #ffffff;
    text-align: left;
  }

  .landing-hero__title {
    color: #ffffff;
  }

  .landing-hero__title-accent {
    color: #e8a0a8;
  }

  .landing-hero__title-underline {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cpath d='M 0 12 Q 60 4 120 12' fill='none' stroke='%23d37c8a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M 0 15 Q 60 8 120 15' fill='none' stroke='%23d37c8a' stroke-width='0.9' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .landing-hero__subtitle {
    color: rgba(255, 255, 255, 0.95);
  }

  .landing-hero__ctas {
    justify-content: flex-start;
  }

  .landing-hero__btn--secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    box-shadow: none;
  }

  .landing-hero__btn--secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .landing-hero__note-wrap {
    align-self: start;
    padding-top: 0.5rem;
  }

  .landing-hero__note {
    background: rgba(0, 0, 0, 0.28);
    color: rgb(255 236 236);
    padding: 6px 14px;
    border-radius: 9999px;
    justify-content: flex-start;
  }

  .landing-hero__note-bullet {
    background: rgba(255, 255, 255, 0.7);
  }
}

.landing-hero__content {
  color: #2c2c2c;
  text-align: left;
  text-shadow: none;
  align-self: center;
}

/* Badge "INVITACIONES DIGITALES PREMIUM" sobre el título */
.landing-hero__badge {
  display: none;
  padding: 0.4rem 1rem;
  border: 1.5px solid #d37c8a;
  border-radius: 999px;
  color: #d37c8a;
  font-family: var(--smd-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(0.6rem, 1.6vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.landing-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: #2c2c2c;
}

.landing-hero__title-line {
  display: inline;
}

.landing-hero__title-accent {
  color: #d37c8a;
  font-size: 1.05em;
}

.landing-hero__title-underline {
  text-decoration: none;
  padding-bottom: 0.45em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cpath d='M 0 12 Q 60 4 120 12' fill='none' stroke='%23d37c8a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M 0 15 Q 60 8 120 15' fill='none' stroke='%23d37c8a' stroke-width='0.9' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 0.41em;
  background-position: bottom left;
}

.landing-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin: 0 0 2.5rem;
  line-height: 1.5;
  max-width: 420px;
  color: #444;
  text-align: left;
}

.landing-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}

.landing-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 9999px;
  font-size: clamp(0.78rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.landing-hero__btn:active {
  transform: scale(0.98);
}

.landing-hero__btn-arrow {
  font-size: 1.1em;
  line-height: 1;
}

.landing-hero__btn--primary {
  background: #b25865;
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(178, 88, 101, 0.45);
}

.landing-hero__btn--primary:hover {
  background: #9a4654;
  box-shadow: 0 6px 20px rgba(178, 88, 101, 0.5);
}

.landing-hero__btn--secondary {
  background: transparent;
  color: #7a4a4f;
  border: 2px solid #d28a8f;
  box-shadow: none;
}

.landing-hero__btn--secondary:hover {
  background: #fff;
  color: #7a4a4f;
  border-color: #d28a8f;
  box-shadow: none;
}

.landing-hero__note-wrap {
  margin: 0;
}

.landing-hero__note {
  font-size: 0.85rem;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  color: #2c2c2c;
  text-align: center;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
}

.landing-hero__note-part {
  display: inline;
}

.landing-hero__note-bullet {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d37c8a;
  vertical-align: middle;
  flex-shrink: 0;
}

.landing-hero__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 656px;
}

@media (min-width: 900px) {
  .landing-hero__phone-wrap {
    justify-content: flex-end;
    min-height: 813px;
    align-items: center;
    padding-right: 0;
  }
}

.landing-hero__phone {
  width: auto;
  height: auto;
  max-height: 813px;
  max-width: min(406px, 85vw);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.landing-hero__phone--desktop {
  display: none;
}

.landing-hero__phone--mobile {
  display: block;
}

@media (min-width: 600px) {
  .landing-hero__phone {
    max-width: 340px;
    max-height: 640px;
  }
}

@media (min-width: 900px) {
  .landing-hero__phone {
    max-width: 380px;
    max-height: 720px;
  }
}

/* ----- Mobile (≤768px): Header + Hero ----- */
@media (max-width: 768px) {
  .landing-header {
    padding: 0.35rem 0.5rem;
  }

  .landing-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 0.5rem;
    padding: 0.3rem 0.5rem 0.3rem 0.35rem;
  }

  .landing-header__logo {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .landing-header__logo img {
    height: 48px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
    vertical-align: middle;
  }

  .landing-header__actions {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Espaciadores iguales para centrar el selector entre logo y hamburguesa */
  .landing-header__actions::before {
    content: '';
    flex: 1;
    min-width: 0;
    order: -2;
  }

  .landing-header__actions::after {
    content: '';
    flex: 1;
    min-width: 0;
    order: 0;
  }

  .landing-header__actions .language-selector {
    flex: 0 0 auto;
    order: -1;
  }

  .landing-header__actions .landing-header__hamburger {
    flex: 0 0 auto;
    order: 1;
  }

  .landing-header__actions .landing-header__cta {
    order: 2;
  }

  .landing-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .landing-header__nav {
    width: 100%;
    order: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0.25rem;
  }

  .landing-header__inner.is-mobile-open .landing-header__nav {
    display: flex;
  }

  /* Cuando el menú está desplegado, el contenedor pasa a ser una tarjeta blanca
     para que el texto y los enlaces sean legibles sobre cualquier fondo de hero. */
  .landing-header__inner.is-mobile-open {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .landing-header__link {
    padding: 0.6rem 0.5rem;
    font-size: 0.9rem;
  }

  .landing-header .language-selector {
    align-items: center;
    line-height: 1;
    padding: 0.35rem 0.5rem;
  }

  .landing-header .language-selector__item,
  .landing-header .language-selector__divider {
    display: none;
  }

  .landing-header .language-selector__more {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    line-height: 1;
  }

  .landing-header .language-selector__current-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    min-width: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d37c8a;
    background: rgba(211, 124, 138, 0.12);
    border-radius: 50%;
  }

  .landing-header .language-selector__more .language-selector__trigger {
    display: inline-flex;
    padding: 0.35rem 0.5rem;
  }

  .landing-header .language-selector__more .language-selector__trigger-label,
  .landing-header .language-selector__more .language-selector__chevron {
    display: none;
  }

  .landing-header .language-selector__more .language-selector__globe {
    margin-right: 0;
  }

  .landing-header__cta {
    display: none;
  }

  .landing-header__link--cta-mobile {
    display: block;
    font-weight: 600;
    color: #d37c8a;
  }

  .landing-page {
    display: flex;
    flex-direction: column;
  }

  .landing-hero {
    order: 0;
    /* Padding-top compensa el header absoluto (~100px) en móvil. */
    padding: 100px 0 0;
    box-sizing: border-box;
  }

  .landing-how {
    order: 1;
  }

  .landing-includes {
    order: 2;
  }

  .landing-quote {
    order: 3;
  }

  .landing-quote__text {
    font-size: 42px;
  }

  .landing-band__text {
    font-size: 39px;
  }

  .landing-band:not(.landing-band--cta) {
    display: none;
  }

  .landing-exclusive {
    order: 4;
  }

  .landing-band--cta {
    order: 5;
  }

  .landing-styles {
    order: 6;
  }

  .landing-faq {
    order: 7;
  }

  .landing-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 1.25rem 1.25rem;
    text-align: left;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .landing-hero__content {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .landing-hero__phone-wrap {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-end;
  }

  .landing-hero__note-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0.5rem;
    text-align: center;
  }

  .landing-hero__badge {
    margin-bottom: 1.1rem;
    padding: 0.32rem 0.7rem;
    letter-spacing: 0.08em;
  }

  .landing-hero__title {
    font-size: clamp(1.6rem, 7.5vw, 2.6rem);
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin-bottom: 1.9rem;
  }

  .landing-hero__subtitle {
    display: block;
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0 0 2rem;
    color: #2c2c2c;
    text-align: left;
  }

  .landing-intro-mobile {
    display: block;
    margin-top: 0;
    padding: 1rem 1.25rem;
    text-align: center;
    background: #e7dfda;
  }

  .landing-intro-mobile__text {
    margin: 0 0 1rem;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .landing-intro-mobile__video {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  .landing-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .landing-hero__btn--primary {
    width: 100%;
    max-width: 100%;
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .landing-hero__btn--secondary {
    width: 100%;
    max-width: 100%;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
    border: 2px solid #d28a8f;
  }

  .landing-hero__content {
    order: 0;
  }

  .landing-hero__phone-wrap {
    display: flex;
    order: 1;
    justify-content: center;
    align-items: center;
    min-height: 0;
    padding: 0.5rem 0 1rem;
  }

  .landing-hero__phone--desktop {
    display: none;
  }

  .landing-hero__phone--mobile {
    display: block;
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
    transform: scale(1.04);
    transform-origin: center center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  }

  .landing-styles__view-all {
    position: static;
    display: block;
    text-align: center;
    margin: 1rem 0 1.5rem;
    transform: none;
  }

  .landing-styles__view-all:hover {
    transform: none;
  }

  .landing-styles__filters {
    margin-bottom: 0.75rem;
  }
}

.landing-page {
  overflow-x: hidden;
}

/* ─────────────────────────────────────
   Choose template page
   ───────────────────────────────────── */
.choose-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

/* Wizard stepper */
.choose-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.choose-stepper__step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.choose-stepper__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  background: #e8dde0;
  color: #9a8a90;
}

.choose-stepper__step.is-active .choose-stepper__number {
  background: #d28a8f;
  color: #fff;
}

.choose-stepper__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9a8a90;
}

.choose-stepper__step.is-active .choose-stepper__label {
  color: #3a2f2f;
}

.choose-stepper__sep {
  font-size: 1.1rem;
  color: #ccc;
  margin: 0 0.25rem;
}

/* Title */
.choose-page__title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #3a2f2f;
  text-align: center;
  margin: 0 0 2rem;
}

/* Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Explore link */
.choose-page__explore {
  text-align: center;
  margin: 0;
}

.choose-page__explore a {
  font-size: 0.95rem;
  color: #9a8a90;
  text-decoration: none;
  transition: color 0.2s;
}

.choose-page__explore a:hover {
  color: #d28a8f;
}

@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .choose-page__title {
    font-size: 1.35rem;
  }

  .choose-stepper {
    flex-wrap: wrap;
    gap: 0.35rem 0.2rem;
    justify-content: center;
  }

  /* Hide the middle separators, show a line break after step 2 */
  .choose-stepper__sep:nth-of-type(2) {
    flex-basis: 100%;
    height: 0;
    margin: 0;
    visibility: hidden;
  }

  .choose-stepper__label {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .choose-stepper__number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    flex-shrink: 0;
  }
}

/* Stepper done state */
.choose-stepper__step--done .choose-stepper__number {
  background: #7cb07c;
  color: #fff;
  font-size: 0.75rem;
}

.choose-stepper__step--done .choose-stepper__label {
  color: #9a8a90;
}

/* ─────────────────────────────────────
   i/new — Personalizar invitación card
   ───────────────────────────────────── */
.i-new-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(90, 74, 80, 0.08);
}

.i-new-card__template-badge {
  font-family: 'Parisienne', cursive;
  font-size: 1.3rem;
  color: #d37c8a;
  text-align: center;
  margin: 0 0 1.5rem;
}

.i-new-card__alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1rem;
}

.i-new-card__alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.i-new-card__alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

.i-new-card__back {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #9a8a90;
  text-decoration: none;
  transition: color 0.2s;
}

.i-new-card__back:hover {
  color: #d37c8a;
}

/* Form */
.i-new-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.i-new-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.i-new-form__group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9a8a90;
  text-transform: uppercase;
}

.i-new-form__couple-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.i-new-form__couple-row input {
  flex: 1;
  min-width: 0;
}

.i-new-form__couple-sep {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d37c8a;
}

.i-new-form__group input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: #3a2f2f;
  background: #f8f5f6;
  border: 1px solid transparent;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.i-new-form__group input::placeholder {
  color: #baa8ae;
}

.i-new-form__group input:focus {
  outline: none;
  background: #fff;
  border-color: #d4a5a5;
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.15);
}

.i-new-form__submit {
  width: 100%;
  padding: 0.9rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #d37c8a;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 0.25rem;
}

.i-new-form__submit:hover {
  background: #c06a78;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(211, 124, 138, 0.35);
}

.i-new-form__submit:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .i-new-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .i-new-form__couple-row {
    flex-wrap: wrap;
  }

  .i-new-form__couple-sep {
    width: 100%;
    text-align: center;
  }
}

/* Normalizar input date en móvil (iOS Safari) */
@media (max-width: 767px) {
  .i-new-form__group input {
    min-height: 2.75rem;
    -webkit-appearance: none;
    appearance: none;
  }
}

/* ── Footer legal links row ── */
.landing-footer__legal {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}
.landing-footer__legal-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}
.landing-footer__legal-link:hover { color: #fff; text-decoration: underline; }
.landing-footer__legal-link--btn { text-decoration: underline dotted; }
.landing-footer__legal-sep { color: rgba(255, 255, 255, 0.35); }

/* ───── Features dentro del hero (debajo de los CTAs) ───── */
.landing-hero__features {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.landing-hero__feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #2c2c2c;
  font-weight: 500;
}
.landing-hero__feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 124, 138, 0.12);
  color: #d37c8a;
  flex-shrink: 0;
}
.landing-hero__feature-text {
  line-height: 1.3;
}

@media (max-width: 768px) {
  .landing-hero__features {
    margin-top: 1rem;
    gap: 0.6rem;
  }
  .landing-hero__feature {
    font-size: 0.82rem;
    gap: 0.55rem;
  }
  .landing-hero__feature-icon {
    width: 26px;
    height: 26px;
  }
  .landing-hero__feature-icon svg {
    width: 13px;
    height: 13px;
  }
}

/* ───── Trust band (franja oscura con 4 features al final) ───── */
.landing-trust {
  background: #a4626c;
  padding: 1.5rem 1.5rem;
}
.landing-trust__inner {
  max-width: 720px;
  margin: 0 auto;
}
.landing-trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.landing-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  color: #f3e9eb;
}
.landing-trust__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.landing-trust__text {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .landing-trust {
    padding: 1.75rem 1rem;
  }
  .landing-trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .landing-trust__icon {
    width: 38px;
    height: 38px;
  }
  .landing-trust__icon svg {
    width: 20px;
    height: 20px;
  }
  .landing-trust__text {
    font-size: 0.72rem;
  }
}

/* ───── Sección cinematográfica al pie del hero ─────
   El header va en .landing-reel-section (fuera de .landing-reel) para que el
   stacking context del carrusel jamás pueda taparlo. */
.landing-reel-section {
  position: relative;
  z-index: 2;
  padding: 2rem 0 1.5rem;
  margin-top: -40px;
}
.landing-reel {
  background: transparent;
  padding: 0;
  overflow: hidden;
  position: relative;
}
/* Overlay sobre cada clip individual — no afecta a los espacios entre clips */
.landing-reel__clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(248, 242, 236, 0.0),
    rgba(248, 242, 236, 0.25)
  );
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
}
.landing-reel__clip {
  position: relative;
}
.landing-reel__header {
  text-align: center;
  margin: 1.5rem auto 1.25rem;
  padding: 0 1rem;
  max-width: 800px;
  position: relative;
  z-index: 4;
  /* Cuando vive dentro del grid de .landing-hero__inner, debe ocupar ambas columnas */
  grid-column: 1 / -1;
  width: 100%;
}
.landing-reel__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.4rem;
  color: #2c2c2c !important;
  display: block !important;
}
.landing-reel__title-accent {
  font-style: italic;
  color: #d37c8a !important;
  font-weight: 600;
}
.landing-reel__subtitle {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a !important;
  margin: 0;
  display: block !important;
}
/* Mask con foco en el centro: los clips laterales se desvanecen gradualmente
   y sólo los 2-3 del centro quedan plenamente visibles. */
.landing-reel__track-wrap {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.45) 25%,
    #000 42%,
    #000 58%,
    rgba(0, 0, 0, 0.45) 75%,
    rgba(0, 0, 0, 0.15) 88%,
    transparent 100%
  );
          mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.45) 25%,
    #000 42%,
    #000 58%,
    rgba(0, 0, 0, 0.45) 75%,
    rgba(0, 0, 0, 0.15) 88%,
    transparent 100%
  );
  overflow: hidden;
  position: relative;
}
/* En móvil quitamos el overlay por clip y el mask agresivo — caben pocas cards
   y queremos verlas todas con claridad. */
@media (max-width: 768px) {
  .landing-reel__clip::after {
    display: none;
  }
  .landing-reel__track-wrap {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
}
.landing-reel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  /* Movimiento lento y constante, sin pausas — sensación cinematográfica */
  animation: landing-reel-scroll 60s linear infinite;
  will-change: transform;
}
.landing-reel:hover .landing-reel__track {
  animation-play-state: paused;
}
.landing-reel__clip {
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
  color: inherit;
  width: 130px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  /* Fade superior — los clips se difuminan en el borde de arriba para
     integrarse con el fondo del hero. Aplica móvil y desktop. */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 10%,
    rgba(0, 0, 0, 0.55) 25%,
    #000 45%,
    #000 100%
  );
          mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 10%,
    rgba(0, 0, 0, 0.55) 25%,
    #000 45%,
    #000 100%
  );
  overflow: hidden;
  background: #1a1a1a;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  /* Profundidad ligera con leve scale para los del centro vs los de los lados (puramente estético) */
  transform: translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.landing-reel__clip:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.1);
}
.landing-reel__clip video,
.landing-reel__clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Menos saturación/contraste y leve brillo para integrar con la paleta del hero */
  filter: saturate(0.7) contrast(0.9) brightness(1.02);
}

@keyframes landing-reel-scroll {
  from { transform: translate3d(0, 0, 0); }
  /* 2 copias del set de clips: mover -50% (1/2 del track) recupera al inicio
     sin saltos visuales. Bajamos de 5 a 2 copias para no rebasar el límite
     de decoders concurrentes de iOS Safari (~8). */
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .landing-reel {
    padding: 2rem 0;
  }
  .landing-reel__track {
    gap: 0.8rem;
    animation-duration: 45s;
  }
  .landing-reel__clip {
    width: 130px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-reel__track {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Overrides FINALES de desktop (≥769px).
   Colocados al final del archivo para garantizar que ganan en orden
   de cascada sobre cualquier regla default declarada antes.
   ═══════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  /* Hero sin padding superior en desktop — el contenido pega arriba */
  .landing-hero {
    padding: 0 !important;
    justify-content: flex-start !important;
  }
  /* El inner deja de tomar flex:1 y de centrar verticalmente — todo arriba */
  .landing-hero > .landing-hero__inner,
  .landing-hero__inner {
    flex: 0 0 auto !important;
    align-content: start !important;
  }
  /* Ajustes manuales para que todo el conjunto suba */
  .landing-hero__phone-wrap {
    margin-top: -55px;
    padding-top: 56px;
  }
  .landing-hero__content {
    margin-top: -90px;
  }
  .landing-reel-section {
    margin-top: -110px;
  }
  /* Clips del carrusel a 120px en desktop */
  .landing-reel__clip {
    width: 120px;
  }
  /* En desktop ocultamos la badge — el título manda */
  .landing-hero__badge {
    display: none !important;
  }
  /* Conjunto algo más compacto para que el carrusel entre en la primera pantalla */
  .landing-hero__title {
    font-size: 4.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  .landing-hero__subtitle {
    margin-bottom: 2rem;
    font-size: 1.02rem;
    line-height: 1.55;
  }
  .landing-hero__ctas {
    gap: 1.25rem;
    margin-bottom: 0;
  }
  /* Hover del botón secundario "Ver plantillas": se llena de coral con texto blanco. */
  .landing-hero__btn--secondary:hover {
    background: #d37c8a;
    color: #ffffff;
    border-color: #d37c8a;
    box-shadow: 0 6px 20px rgba(211, 124, 138, 0.4);
  }
  /* Inner pegado arriba */
  .landing-hero__inner {
    gap: 1rem 3rem;
    padding-top: 0.75rem;
  }
  /* Phone más compacto */
  .landing-hero__phone {
    max-height: 500px !important;
    max-width: 260px !important;
  }
  .landing-hero__phone-wrap {
    grid-row: 1 !important;
  }
}
