:root {
  --cream-50: #fffaf7;
  --cream-100: #f8f0ea;
  --cream-200: #efe2da;
  --burgundy-500: #8c2949;
  --burgundy-600: #761d3d;
  --burgundy-700: #5a1430;
  --burgundy-900: #32101f;
  --rose-200: #e7bcc8;
  --rose-300: #dca4b5;
  --gold-400: #c9aa72;
  --gold-500: #b99252;
  --brown-500: #80666f;
  --brown-700: #594149;
  --ink: #2d2025;
  --white: #ffffff;

  --shadow-soft: 0 22px 60px rgba(81, 28, 48, 0.10);
  --shadow-card: 0 16px 40px rgba(81, 28, 48, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}


/* CABECERA */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(118, 29, 61, 0.08);
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--burgundy-500), var(--burgundy-700));
  box-shadow: 0 10px 26px rgba(118, 29, 61, 0.22);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: currentColor;
  stroke: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--burgundy-700);
}

.brand-text small {
  margin-top: 3px;
  color: var(--brown-500);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
  color: var(--brown-700);
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--burgundy-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--burgundy-600);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}


/* BOTONES */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
  box-shadow: 0 12px 28px rgba(118, 29, 61, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(118, 29, 61, 0.28);
}

.button-small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 0.9rem;
}

.button-secondary {
  color: var(--burgundy-600);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(118, 29, 61, 0.25);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--burgundy-600);
}

.button-light {
  color: var(--burgundy-700);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(34, 9, 21, 0.18);
}

.full-width {
  width: 100%;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 87% 12%, rgba(220, 164, 181, 0.28), transparent 24%),
    linear-gradient(135deg, var(--cream-50), var(--cream-100));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 310px;
  height: 310px;
  right: -120px;
  bottom: -80px;
  background: rgba(201, 170, 114, 0.14);
}

.hero-glow-two {
  width: 180px;
  height: 180px;
  left: -80px;
  top: 80px;
  background: rgba(140, 41, 73, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
  padding-block: 88px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #51484b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.style-copy h2,
.order-copy h2,
.faq-copy h2,
.final-cta h2 {
  font-family: "Playfair Display", serif;
  color: var(--burgundy-700);
  line-height: 1.06;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6vw, 5.8rem);
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 14px;
  color: var(--brown-700);
  font-size: 1.12rem;
}

.hero-slogan {
  margin-bottom: 30px;
  color: var(--burgundy-600);
  font-weight: 700;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--brown-500);
  font-size: 0.88rem;
}

.story-collage {
  position: relative;
  min-height: 560px;
}

.memory-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 250, 247, 0.95);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.memory-card-main {
  inset: 22px 104px 22px 4px;
  border-radius: 44% 56% 43% 57% / 39% 42% 58% 61%;
}

.memory-card-top,
.memory-card-bottom {
  right: 0;
  width: 180px;
  height: 214px;
}

.memory-card-top {
  top: 28px;
}

.memory-card-bottom {
  bottom: 20px;
}

.memory-art {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.memory-art::before,
.memory-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.memory-art::before {
  width: 180px;
  height: 180px;
  top: 12%;
  left: 12%;
  background: rgba(255, 255, 255, 0.28);
}

.memory-art::after {
  width: 120px;
  height: 120px;
  right: 8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.18);
}

.memory-art-couple {
  background:
    linear-gradient(to top, rgba(63, 12, 32, 0.35), transparent 54%),
    linear-gradient(135deg, #6f1f3c, #c9859b 54%, #edc9d4);
}

.memory-art-family {
  background:
    linear-gradient(to top, rgba(80, 35, 16, 0.20), transparent 56%),
    linear-gradient(145deg, #d2ad6f, #f0d2a1);
}

.memory-art-pet {
  background:
    linear-gradient(to top, rgba(29, 35, 31, 0.24), transparent 58%),
    linear-gradient(145deg, #819489, #c9d7cf);
}

.memory-icon {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  text-shadow: 0 12px 32px rgba(36, 10, 20, 0.18);
}

.memory-card-top .memory-icon,
.memory-card-bottom .memory-icon {
  font-size: 4.5rem;
}

.memory-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.memory-caption small {
  margin-bottom: 4px;
  font-size: 0.78rem;
  opacity: 0.86;
}

.memory-caption strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.memory-caption.compact {
  left: 14px;
  right: 14px;
  bottom: 14px;
}

.memory-caption.compact strong {
  font-size: 1rem;
}

.floating-note {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--burgundy-600);
  border: 1px solid rgba(118, 29, 61, 0.10);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.note-one {
  width: 54px;
  height: 54px;
  left: -12px;
  bottom: 72px;
  font-size: 1.5rem;
}

.note-two {
  width: 44px;
  height: 44px;
  right: 56px;
  top: 2px;
}

.note-three {
  width: 38px;
  height: 38px;
  left: 78px;
  top: 2px;
  color: var(--gold-500);
}


/* SECCIONES GENERALES */

.section {
  padding-block: 86px;
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--cream-100);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(220, 164, 181, 0.13), transparent 30%),
    linear-gradient(145deg, var(--burgundy-900), var(--burgundy-700));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.style-copy h2,
.order-copy h2,
.faq-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  letter-spacing: -0.025em;
}

.section-heading p,
.style-copy p,
.order-copy > p,
.faq-copy p {
  color: var(--brown-500);
  font-size: 1.03rem;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light p,
.section-heading-light .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}


/* PASOS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(118, 29, 61, 0.09);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  box-shadow: var(--shadow-card);
}

.step-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--burgundy-500), var(--burgundy-700));
  transform: translateY(-14px);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(118, 29, 61, 0.10);
  font-family: "Playfair Display", serif;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
}

.step-card.featured .step-number {
  color: rgba(255, 255, 255, 0.14);
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  color: var(--burgundy-600);
  border-radius: 18px;
  background: var(--rose-200);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.step-card.featured .step-icon {
  color: var(--burgundy-700);
  background: var(--white);
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.step-card.featured h3 {
  color: var(--white);
}

.step-card p {
  color: var(--brown-500);
}

.step-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}


/* OCASIONES */

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.occasion-card {
  padding: 28px;
  border: 1px solid rgba(118, 29, 61, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.occasion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(118, 29, 61, 0.20);
  box-shadow: var(--shadow-card);
}

.occasion-emoji {
  display: block;
  margin-bottom: 18px;
  font-size: 2rem;
}

.occasion-card h3 {
  margin-bottom: 8px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.occasion-card p {
  color: var(--brown-500);
  font-size: 0.94rem;
}


/* AUDIO */

.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audio-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(19, 5, 11, 0.18);
}

.audio-cover {
  min-height: 230px;
  display: flex;
  align-items: end;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.audio-cover::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -24px;
  top: -24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.audio-cover span {
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(47, 10, 25, 0.36);
  font-size: 0.8rem;
}

.cover-one {
  background: linear-gradient(145deg, #c7899d, #f0c9d5);
}

.cover-two {
  background: linear-gradient(145deg, #8a2e4d, #c56f8a);
}

.cover-three {
  background: linear-gradient(145deg, #7f9486, #c5d4cb);
}

.audio-info {
  padding: 24px;
}

.audio-type {
  margin-bottom: 6px;
  color: var(--rose-200);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audio-info h3 {
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.fake-player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fake-player button {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding-left: 3px;
  color: var(--burgundy-700);
  border: 0;
  border-radius: 50%;
  background: var(--white);
}

.fake-player span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.wave {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wave i {
  width: 3px;
  border-radius: 999px;
  background: var(--rose-200);
}

.wave i:nth-child(1) { height: 8px; }
.wave i:nth-child(2) { height: 18px; }
.wave i:nth-child(3) { height: 26px; }
.wave i:nth-child(4) { height: 14px; }
.wave i:nth-child(5) { height: 28px; }
.wave i:nth-child(6) { height: 20px; }
.wave i:nth-child(7) { height: 11px; }
.wave i:nth-child(8) { height: 25px; }
.wave i:nth-child(9) { height: 16px; }
.wave i:nth-child(10) { height: 9px; }


/* ESTILOS MUSICALES */

.style-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.style-copy {
  max-width: 520px;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--burgundy-600);
  font-weight: 700;
}

.music-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 14px;
}

.music-tags span {
  padding: 15px 20px;
  border: 1px solid rgba(118, 29, 61, 0.12);
  border-radius: 999px;
  color: var(--burgundy-700);
  background: var(--cream-100);
  box-shadow: 0 10px 24px rgba(81, 28, 48, 0.05);
}


/* PRECIOS */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(118, 29, 61, 0.10);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--burgundy-500), var(--burgundy-700));
  transform: translateY(-14px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--burgundy-700);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.plan-name {
  margin-bottom: 8px;
  color: var(--burgundy-600);
  font-weight: 700;
}

.price-card-featured .plan-name {
  color: var(--rose-200);
}

.price-card h3 {
  margin-bottom: 12px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
}

.price-card-featured h3 {
  color: var(--white);
}

.plan-description {
  min-height: 54px;
  margin-bottom: 24px;
  color: var(--brown-500);
}

.price-card-featured .plan-description {
  color: rgba(255, 255, 255, 0.76);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--brown-700);
}

.price-card-featured li {
  color: rgba(255, 255, 255, 0.86);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--burgundy-500);
  font-weight: 700;
}

.price-card-featured li::before {
  color: var(--rose-200);
}

.price-card .button {
  margin-top: auto;
}


/* TESTIMONIOS */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid rgba(118, 29, 61, 0.08);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  box-shadow: var(--shadow-card);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold-500);
  letter-spacing: 0.08em;
}

.testimonial-card > p {
  min-height: 126px;
  margin-bottom: 26px;
  color: var(--brown-700);
  font-family: "Playfair Display", serif;
  font-size: 1.22rem;
  line-height: 1.55;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  border-radius: 50%;
  background: var(--burgundy-500);
  font-weight: 700;
}

.testimonial-card footer div {
  display: flex;
  flex-direction: column;
}

.testimonial-card footer small {
  color: var(--brown-500);
}


/* FORMULARIO */

.order-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(231, 188, 200, 0.22), transparent 24%),
    linear-gradient(135deg, var(--cream-50), var(--cream-100));
}

.order-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 70px;
}

.order-copy {
  position: sticky;
  top: 120px;
}

.order-note {
  margin-top: 30px;
  padding: 22px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.72);
}

.order-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--burgundy-700);
}

.order-note p {
  color: var(--brown-500);
  font-size: 0.9rem;
}

.story-form {
  padding: 34px;
  border: 1px solid rgba(118, 29, 61, 0.09);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.story-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--brown-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.full-field {
  grid-column: 1 / -1;
}

.story-form input,
.story-form textarea,
.story-form select {
  width: 100%;
  border: 1px solid rgba(118, 29, 61, 0.14);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: var(--cream-50);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.story-form input,
.story-form select {
  min-height: 50px;
  padding-inline: 15px;
}

.story-form textarea {
  resize: vertical;
  padding: 14px 15px;
}

.story-form input:focus,
.story-form textarea:focus,
.story-form select:focus {
  border-color: var(--burgundy-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(140, 41, 73, 0.09);
}

.check-field {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  margin-block: 22px;
  font-weight: 400 !important;
}

.check-field input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
}


/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 74px;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(118, 29, 61, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(81, 28, 48, 0.04);
}

.faq-list summary {
  padding: 21px 24px;
  color: var(--burgundy-700);
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 24px 22px;
  color: var(--brown-500);
}


/* CTA FINAL */

.final-cta {
  padding-block: 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(231, 188, 200, 0.18), transparent 26%),
    linear-gradient(145deg, var(--burgundy-700), var(--burgundy-900));
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .section-kicker {
  color: var(--rose-200);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
}


/* FOOTER */

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #241018;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.8fr);
  gap: 44px;
  padding-block: 70px 46px;
}

.brand-footer .brand-text strong {
  color: var(--white);
}

.brand-footer .brand-text small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand > p {
  max-width: 390px;
  margin-top: 20px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--white);
}

.footer-links a:hover {
  color: var(--rose-200);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}


/* RESPONSIVE */

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .header-inner > .button {
    display: none;
  }

  .hero-grid {
    gap: 42px;
  }

  .story-collage {
    min-height: 500px;
  }

  .memory-card-top,
  .memory-card-bottom {
    width: 150px;
    height: 180px;
  }

  .steps-grid,
  .pricing-grid,
  .testimonial-grid,
  .audio-grid {
    gap: 16px;
  }

  .step-card,
  .price-card,
  .testimonial-card {
    padding: 26px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 74px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 70px;
  }

  .hero-copy {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .story-collage {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .steps-grid,
  .occasion-grid,
  .audio-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-card.featured,
  .price-card-featured {
    transform: none;
  }

  .style-layout,
  .order-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .order-copy,
  .faq-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    padding-block: 52px 66px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    gap: 8px;
  }

  .story-collage {
    min-height: 390px;
  }

  .memory-card-main {
    inset: 18px 58px 18px 0;
  }

  .memory-card-top,
  .memory-card-bottom {
    width: 118px;
    height: 140px;
    border-width: 5px;
  }

  .memory-card-top {
    top: 26px;
  }

  .memory-card-bottom {
    bottom: 16px;
  }

  .memory-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .memory-caption strong {
    font-size: 1rem;
  }

  .memory-caption small {
    font-size: 0.67rem;
  }

  .memory-card-top .memory-icon,
  .memory-card-bottom .memory-icon {
    font-size: 3rem;
  }

  .memory-icon {
    font-size: 5rem;
  }

  .floating-note {
    display: none;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .style-copy h2,
  .order-copy h2,
  .faq-copy h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .steps-grid,
  .occasion-grid,
  .audio-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .story-form {
    padding: 22px;
    border-radius: 26px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* PERSONALIZACIÓN MELODÍA ETERNA — IMÁGENES Y LOGO */
.brand-mark {
  width: 52px;
  height: 52px;
  padding: 5px;
  color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

.memory-card {
  background: var(--white);
}

.memory-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-card-main > img {
  object-position: center center;
}

.memory-card-top > img {
  object-position: center 35%;
}

.memory-card-bottom > img {
  object-position: center center;
}

.memory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(50, 16, 31, 0.64), transparent 48%);
}

.memory-caption {
  z-index: 2;
}

.occasion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.occasion-card {
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.occasion-card:hover {
  transform: translateY(-7px);
}

.occasion-image {
  height: 240px;
  overflow: hidden;
  background: var(--cream-200);
}

.occasion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.occasion-card:hover .occasion-image img {
  transform: scale(1.035);
}

.occasion-content {
  padding: 24px 26px 28px;
}

.occasion-content h3 {
  margin-bottom: 7px;
}

.occasion-content p {
  margin: 0;
}

/* Ajustes del encuadre de algunas escenas */
.occasion-card:nth-child(2) .occasion-image img { object-position: center 38%; }
.occasion-card:nth-child(3) .occasion-image img { object-position: center 40%; }
.occasion-card:nth-child(4) .occasion-image img { object-position: center 44%; }
.occasion-card:nth-child(6) .occasion-image img { object-position: center 34%; }
.occasion-card:nth-child(8) .occasion-image img { object-position: center 42%; }

@media (max-width: 860px) {
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .occasion-image {
    height: 285px;
  }
}

/* PÁGINA INDEPENDIENTE PARA CREAR LA CANCIÓN */
.form-page {
  min-height: calc(100vh - 82px);
  background:
    radial-gradient(circle at 85% 15%, rgba(220, 164, 181, 0.24), transparent 26%),
    linear-gradient(135deg, var(--cream-50), var(--cream-100));
}

.form-intro {
  padding-block: 92px;
}

.form-intro-inner {
  max-width: 850px;
  text-align: center;
}

.form-intro h1 {
  margin-bottom: 20px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.form-intro-inner > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--brown-500);
  font-size: 1.08rem;
}

.form-coming-card {
  margin-top: 48px;
  padding: 48px 32px;
  border: 1px solid rgba(118, 29, 61, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.form-coming-card > span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--white);
  border-radius: 50%;
  background: var(--burgundy-600);
  font-size: 1.8rem;
}

.form-coming-card h2 {
  margin-bottom: 10px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.form-coming-card p {
  color: var(--brown-500);
}


/* Ajustes finales de legibilidad y ritmo visual */
.memory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(35, 7, 20, 0.90) 0%,
    rgba(47, 12, 28, 0.64) 36%,
    transparent 70%
  );
}

.memory-caption {
  z-index: 2;
  text-shadow: 0 2px 12px rgba(20, 5, 12, 0.85);
}

.memory-card-main .memory-caption {
  left: 64px;
  right: 64px;
  bottom: 62px;
  align-items: center;
  padding: 12px 18px 14px;
  text-align: center;
  border-radius: 18px;
  background: rgba(45, 10, 26, 0.52);
  backdrop-filter: blur(3px);
}

.memory-card-main .memory-caption small {
  opacity: 1;
}

.memory-card-main .memory-caption strong {
  font-size: 1.55rem;
  line-height: 1.15;
}

.price-card-featured .button {
  color: var(--burgundy-700);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(34, 9, 21, 0.20);
}

.price-card-featured .button:hover {
  color: var(--burgundy-700);
  background: var(--cream-100);
  box-shadow: 0 16px 34px rgba(34, 9, 21, 0.26);
}

@media (max-width: 760px) {
  .memory-card-main .memory-caption {
    left: 32px;
    right: 32px;
    bottom: 44px;
  }
}


.audio-cover{position:relative;overflow:hidden;}
.audio-cover img{width:100%;height:100%;object-fit:cover;display:block;}
.audio-cover span{position:absolute;left:24px;bottom:20px;z-index:2;background:rgba(0,0,0,.35);color:#fff;padding:8px 14px;border-radius:999px;}


/* REPRODUCTORES DE AUDIO FUNCIONALES */
.audio-card audio {
  display: none;
}

.fake-player button {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fake-player button:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(19, 5, 11, 0.2);
}

.fake-player button:focus-visible,
.wave:focus-visible {
  outline: 2px solid var(--rose-200);
  outline-offset: 4px;
}

.wave {
  --progress: 0%;
  position: relative;
  cursor: pointer;
}

.wave::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--progress);
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  opacity: 0.8;
  transition: width 0.15s linear;
}

.wave.is-playing i {
  animation: audio-wave 0.75s ease-in-out infinite alternate;
}

.wave.is-playing i:nth-child(2n) { animation-delay: -0.35s; }
.wave.is-playing i:nth-child(3n) { animation-delay: -0.55s; }

@keyframes audio-wave {
  from { transform: scaleY(0.55); opacity: 0.72; }
  to { transform: scaleY(1.15); opacity: 1; }
}

.audio-time {
  min-width: 66px;
  text-align: right;
  white-space: nowrap;
}

/* PASO 1 DEL FORMULARIO: ELECCIÓN DE EXPERIENCIA */
.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;
}

.form-step-card {
  margin-top: 48px;
  padding: 42px;
  border: 1px solid rgba(118, 29, 61, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.form-step-heading {
  text-align: center;
}

.form-step-number {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--burgundy-600);
  background: var(--cream-100);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step-heading h2 {
  margin-bottom: 8px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.form-step-heading p {
  color: var(--brown-500);
}

.experience-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  border: 0;
}

.experience-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.experience-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.experience-option-inner {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid rgba(118, 29, 61, 0.16);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(81, 28, 48, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.experience-option:hover .experience-option-inner {
  transform: translateY(-4px);
  border-color: rgba(118, 29, 61, 0.34);
  box-shadow: var(--shadow-card);
}

.experience-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 2px solid var(--rose-300);
  border-radius: 50%;
  background: var(--white);
}

.experience-check::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--burgundy-600);
  transform: scale(0);
  transition: transform 0.18s ease;
}

.experience-name {
  margin-bottom: 5px;
  color: var(--burgundy-700);
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.experience-option strong {
  margin-bottom: 14px;
  color: var(--burgundy-600);
  font-size: 1.22rem;
}

.experience-option small {
  margin-top: auto;
  color: var(--brown-500);
  font-size: 0.9rem;
  line-height: 1.55;
}

.experience-option-featured .experience-option-inner {
  border-color: rgba(118, 29, 61, 0.28);
  background: linear-gradient(180deg, #fffafc, var(--white));
}

.experience-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--burgundy-600);
  font-size: 0.68rem;
  font-weight: 700;
}

.experience-option input:checked + .experience-option-inner {
  border-color: var(--burgundy-600);
  background: rgba(248, 240, 234, 0.72);
  box-shadow: 0 18px 42px rgba(118, 29, 61, 0.16);
  transform: translateY(-4px);
}

.experience-option input:checked + .experience-option-inner .experience-check::after {
  transform: scale(1);
}

.experience-option input:focus-visible + .experience-option-inner {
  outline: 3px solid rgba(220, 164, 181, 0.55);
  outline-offset: 4px;
}

.form-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(118, 29, 61, 0.10);
}

.experience-status {
  color: var(--brown-500);
  font-size: 0.92rem;
}

.form-step-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

@media (max-width: 820px) {
  .form-intro {
    padding-block: 64px;
  }

  .form-step-card {
    padding: 32px 24px;
  }

  .experience-options {
    grid-template-columns: 1fr;
  }

  .experience-option-inner {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .form-intro h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  .form-step-card {
    padding: 26px 18px;
    border-radius: 30px;
  }

  .form-step-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-step-actions .button {
    width: 100%;
  }
}

/* FORMULARIO COMPLETO POR PASOS */
.song-wizard {
  width: min(100%, 920px);
  margin: 48px auto 0;
  padding: 34px 42px 38px;
  border: 1px solid rgba(118, 29, 61, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.wizard-progress { margin-bottom: 30px; }
.wizard-progress-top { display:flex; justify-content:space-between; gap:16px; margin-bottom:10px; color:var(--brown-500); font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.wizard-track { height:8px; overflow:hidden; border-radius:999px; background:var(--cream-100); }
.wizard-track span { display:block; width:16%; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--burgundy-600),var(--rose-300)); transition:width .3s ease; }
.wizard-dots { display:grid; grid-template-columns:repeat(6,1fr); gap:7px; margin-top:10px; }
.wizard-dots span { height:4px; border-radius:999px; background:rgba(118,29,61,.12); }
.wizard-dots span.active { background:var(--burgundy-600); }
.wizard-step { display:none; animation:wizard-fade .28s ease; }
.wizard-step.active { display:block; }
@keyframes wizard-fade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.form-grid { display:grid; gap:20px; margin-top:30px; }
.form-grid.two-cols { grid-template-columns:repeat(2,minmax(0,1fr)); }
.form-grid.compact { margin-top:0; }
.field { display:flex; flex-direction:column; gap:8px; color:var(--burgundy-700); font-size:.94rem; font-weight:600; }
.field.full { grid-column:1/-1; }
.field span small { color:var(--brown-500); font-weight:400; }
.field input,.field select,.field textarea { width:100%; border:1px solid rgba(118,29,61,.18); border-radius:16px; padding:14px 16px; background:#fff; color:var(--brown-700); font:inherit; font-weight:400; outline:none; transition:border-color .2s,box-shadow .2s,background .2s; }
.field textarea { resize:vertical; min-height:110px; line-height:1.55; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--burgundy-600); box-shadow:0 0 0 4px rgba(118,29,61,.09); }
.field input::placeholder,.field textarea::placeholder { color:#a98f98; }
.field-invalid { border-color:#b3264a!important; background:#fff7f8!important; }
.field-help { color:var(--brown-500); font-size:.82rem; font-weight:400; line-height:1.45; }
.options-invalid { outline:2px solid #b3264a; outline-offset:8px; border-radius:24px; }
.wizard-actions { display:flex; justify-content:space-between; gap:14px; margin-top:30px; padding-top:24px; border-top:1px solid rgba(118,29,61,.10); }
.wizard-actions .button { min-width:155px; }
.wizard-alert { min-height:24px; margin-top:18px; color:#a32647; font-size:.9rem; font-weight:600; }
.conditional-block { margin-top:28px; padding:20px; border:1px dashed rgba(118,29,61,.25); border-radius:20px; background:var(--cream-100); }
.review-card { margin-top:28px; padding:24px; border-radius:22px; background:#fff8f6; border:1px solid rgba(118,29,61,.12); }
.review-card h3 { margin-bottom:16px; color:var(--burgundy-700); font-family:"Playfair Display",serif; font-size:1.45rem; }
.review-card dl { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.review-card dl div { padding:14px; border-radius:14px; background:#fff; }
.review-card dt { margin-bottom:5px; color:var(--burgundy-600); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.review-card dd { margin:0; color:var(--brown-500); line-height:1.5; }
.review-card .review-story { grid-column:1/-1; }
.consent-check { display:flex; align-items:flex-start; gap:12px; margin-top:20px; color:var(--brown-500); font-size:.88rem; line-height:1.5; cursor:pointer; }
.consent-check input { width:18px; height:18px; margin-top:2px; accent-color:var(--burgundy-600); }
.success-panel { width:min(100%,720px); margin:48px auto 0; padding:48px; border-radius:var(--radius-xl); background:#fff; box-shadow:var(--shadow-soft); text-align:center; }
.success-icon { width:58px;height:58px;display:grid;place-items:center;margin:0 auto 18px;border-radius:50%;background:var(--burgundy-600);color:#fff;font-size:1.5rem; }
.success-panel h2 { color:var(--burgundy-700); font-family:"Playfair Display",serif; font-size:clamp(2rem,5vw,3rem); }
.success-panel p { max-width:560px; margin:14px auto 24px; color:var(--brown-500); line-height:1.6; }
@media(max-width:820px){ .song-wizard{padding:28px 24px}.form-grid.two-cols{grid-template-columns:1fr}.review-card dl{grid-template-columns:1fr}.review-card .review-story{grid-column:auto}.wizard-progress-top{font-size:.72rem}.experience-options{grid-template-columns:1fr}.experience-option-inner{min-height:185px} }
@media(max-width:560px){ .song-wizard{margin-top:32px;padding:24px 17px;border-radius:28px}.wizard-actions{flex-direction:column-reverse}.wizard-actions .button{width:100%}.success-panel{padding:34px 20px}.form-intro-inner>p{font-size:.95rem} }

/* REFINAMIENTO PREMIUM DEL FORMULARIO */
.form-page { background: radial-gradient(circle at 12% 8%, rgba(255,255,255,.9), transparent 28%), radial-gradient(circle at 88% 12%, rgba(220,164,181,.22), transparent 28%), linear-gradient(145deg,#fffaf6,#f8eee7); }
.form-intro { padding-block: 72px 96px; }
.form-intro-inner { max-width: 1080px; }
.form-intro h1 { max-width: 900px; margin-inline:auto; font-size:clamp(2.8rem,6vw,5rem); }
.form-intro-inner>p { max-width:720px; line-height:1.75; }
.song-wizard { margin-top:42px; padding:34px 40px 40px; border-color:rgba(118,29,61,.09); background:rgba(255,255,255,.94); box-shadow:0 24px 70px rgba(80,28,48,.10); }
.wizard-progress { margin-bottom:34px; padding:0 2px 26px; border-bottom:1px solid rgba(118,29,61,.08); }
.wizard-progress-top { color:var(--burgundy-600); }
.wizard-progress-top span:last-child { color:var(--brown-500); font-weight:600; text-transform:none; letter-spacing:0; }
.wizard-track { height:7px; background:#f1e4de; }
.wizard-dots { margin-top:12px; }
.form-step-heading p { max-width:650px; margin-inline:auto; line-height:1.65; }
.experience-options { gap:16px; align-items:stretch; }
.experience-option-inner { min-height:410px; padding:25px 23px 24px; border-radius:24px; }
.experience-card-top { display:flex; align-items:center; justify-content:space-between; min-height:28px; margin-bottom:22px; }
.experience-check { margin:0; }
.experience-select-text { color:var(--brown-500); font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.experience-option input:checked + .experience-option-inner .experience-select-text { color:var(--burgundy-600); }
.experience-option input:checked + .experience-option-inner .experience-select-text::before { content:'Seleccionado'; font-size:0; }
.experience-option input:checked + .experience-option-inner .experience-select-text { font-size:0; }
.experience-option input:checked + .experience-option-inner .experience-select-text::after { content:'Seleccionado'; font-size:.78rem; }
.experience-name { font-size:1.42rem; }
.experience-option strong { margin-bottom:11px; font-size:1.32rem; }
.experience-description { min-height:66px; color:var(--brown-500); font-size:.9rem; line-height:1.55; }
.experience-divider { height:1px; margin:18px 0 15px; background:rgba(118,29,61,.10); }
.experience-feature { display:block; margin-top:9px; color:var(--brown-500); font-size:.86rem; line-height:1.4; }
.experience-option-featured .experience-option-inner { border:1.5px solid rgba(118,29,61,.32); box-shadow:0 16px 38px rgba(118,29,61,.10); }
.experience-badge { top:17px; right:18px; }
.experience-option input:checked + .experience-option-inner { background:linear-gradient(180deg,#fff8f7,#fff); }
.experience-assurance { display:flex; align-items:center; justify-content:center; gap:11px; margin:25px auto 0; padding:14px 18px; border-radius:16px; background:#fff8f6; color:var(--brown-500); font-size:.86rem; }
.experience-assurance span { color:var(--burgundy-600); font-size:1.2rem; }
.experience-assurance p { margin:0; }
.experience-assurance strong { color:var(--burgundy-700); }
.wizard-alert:not(:empty) { padding:11px 14px; border-radius:12px; background:#fff1f3; }
.wizard-actions .button { min-width:170px; }
@media(max-width:820px){
  .form-intro{padding-block:54px 72px}.song-wizard{padding:28px 24px 34px}.experience-option-inner{min-height:auto}.experience-description{min-height:auto}.experience-options{gap:14px}
}
@media(max-width:560px){
  .form-intro{padding-block:42px 56px}.form-intro h1{font-size:clamp(2.45rem,12vw,3.35rem)}.song-wizard{padding:22px 16px 26px}.wizard-progress-top{align-items:flex-start;flex-direction:column;gap:4px}.experience-option-inner{padding:22px 20px}.experience-assurance{align-items:flex-start;text-align:left}
}

/* AJUSTES DE FLUJO Y CAMPOS DINÁMICOS */
[hidden] { display: none !important; }
.conditional-inline { animation: wizard-fade .22s ease; }
.story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.story-grid .story-main,
.story-grid .story-memory { grid-column: span 1; }
.story-grid .story-main textarea,
.story-grid .story-memory textarea { min-height: 174px; }
.story-grid .story-short textarea { min-height: 82px; }
.wizard-actions:has(#prev-step[hidden]) { justify-content: center; }
.wizard-actions:has(#next-step[hidden]) { justify-content: space-between; }
@media(max-width:820px){
  .story-grid { grid-template-columns: 1fr; }
  .story-grid .story-main,
  .story-grid .story-memory { grid-column: auto; }
}


/* PULIDO FINAL DEL FORMULARIO */
.song-wizard {
  scroll-margin-top: 112px;
}

.story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.story-grid .story-short {
  width: 100%;
  min-width: 0;
}

.story-grid .story-short textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 82px;
  box-sizing: border-box;
}

.field,
.field input,
.field select,
.field textarea {
  min-width: 0;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(118, 29, 61, .32);
}

.button:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.consent-check input:focus-visible {
  outline: 3px solid rgba(118, 29, 61, .24);
  outline-offset: 3px;
}

.wizard-dots span {
  transition: background-color .22s ease, transform .22s ease;
}

.wizard-dots span.active {
  transform: scaleY(1.35);
}

.wizard-actions .button {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

@media (hover: hover) {
  .wizard-actions .button:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-step,
  .wizard-track span,
  .wizard-dots span,
  .wizard-actions .button,
  .field input,
  .field select,
  .field textarea {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 820px) {
  .song-wizard {
    scroll-margin-top: 96px;
  }
}

/* Pantalla final previa al pago */
.success-eyebrow {
  margin-bottom: 8px !important;
  color: var(--burgundy-600) !important;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.success-trust {
  display: block;
  max-width: 520px;
  margin: 16px auto 0;
  color: var(--brown-500);
  line-height: 1.55;
}
.payment-status {
  min-height: 1.5em;
  margin: 14px auto 0 !important;
  color: var(--burgundy-700) !important;
  font-size: .92rem;
}

.order-summary{background:#faf6f5;border:1px solid #e7d8d3;border-radius:12px;padding:16px;margin:18px 0;text-align:left}.button-secondary{background:#fff;color:#7a2443;border:2px solid #7a2443;margin-top:12px}.button-secondary:hover{background:#7a2443;color:#fff}
/* Lanzamiento 2026: oferta única */
.pricing-grid:has(.launch-card) {
  grid-template-columns: minmax(280px, 620px);
  justify-content: center;
}
.launch-card {
  width: 100%;
}
