/* ==========================================================================
   ESTILOS GLOBALES - MAGIA SONORA (COFRE MUSICAL ENCANTADO)
   ========================================================================== */

/* --- PALETA DE COLORES Y TOKENS --- */
:root {
  --color-background: #FFFDF8;
  --color-background-warm: #FFF7EE;
  --color-background-violet-soft: #F7F2F9;
  --color-surface: #FFFFFF;
  --color-text: #2B1B3D;
  --color-text-muted: #665B6F;
  --color-violet: #6F4296;
  --color-violet-dark: #3D2553;
  --color-gold: #F2A62A;
  --color-gold-hover: #D98A18;
  --color-gold-soft: #FFF0D2;
  --color-gold-text: #8A5200;
  --color-success: #176B5F;
  --color-success-soft: #EEF8F4;
  --color-rose: #A94668;
  --color-border: #E7DCCF;
  --color-disabled-background: #E9E3EC;
  --color-disabled-text: #756B7C;

  --primary: var(--color-gold);
  --primary-hover: var(--color-gold-hover);
  --primary-soft: var(--color-gold-soft);
  --accent: var(--color-violet);
  --accent-soft: var(--color-background-violet-soft);
  --background: var(--color-background);
  --background-alt: var(--color-background-warm);
  --foreground: var(--color-text);
  --muted: var(--color-text-muted);
  --border: var(--color-border);
  --card: var(--color-surface);
  --teal-check: var(--color-success);
  --teal-text: var(--color-success);
  --gold-text: var(--color-gold-text);
  --rose-accent: var(--color-rose);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  --border-flat: 2px solid #2B1B3D;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET DE ESTILOS --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  /* Pila de fuentes nativas do sistema (Zero downloads externos) */
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- TIPOGRAFÍA --- */
h1, h2, h3, h4 {
  color: var(--foreground);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 8vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 6vw, 2.2rem);
}

h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

p {
  font-size: 1.05rem;
  color: var(--muted);
}

strong {
  font-weight: 700;
  color: var(--foreground);
}

em {
  font-style: italic;
}

/* --- CONTENEDORES Y ESTRUCTURA DE SECCIONES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.bg-cream {
  background-color: var(--color-background);
}

.bg-primary-block {
  background-color: var(--color-background-warm);
  color: var(--foreground);
}

.bg-primary-block h2, .bg-primary-block h3, .bg-primary-block strong {
  color: var(--foreground) !important;
}

.bg-primary-block .text-white-op { color: var(--muted); }
.bg-violet-soft { background-color: var(--color-background-violet-soft); }
.bg-warm { background-color: var(--color-background-warm); }
.bg-success-soft { background-color: var(--color-success-soft); }
.bg-white { background-color: var(--color-surface); }

.bg-dark-block {
  background-color: var(--foreground);
  color: #ffffff;
}

.bg-dark-block h2, .bg-dark-block h3, .bg-dark-block strong {
  color: #ffffff !important;
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }
  h1 {
    font-size: clamp(2.65rem, 4.2vw, 3.4rem);
  }
  h2 {
    font-size: 2.35rem;
  }
  h3 {
    font-size: 1.65rem;
  }
}

/* --- CLASES DE UTILIDAD --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.w-full { width: 100%; }

.text-white-op { color: rgba(255, 255, 255, 0.88); }
.text-primary-color { color: var(--accent); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.badge-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(178, 58, 92, 0.08);
  color: var(--rose-accent);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(178, 58, 92, 0.15);
}

.badge-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(232, 162, 60, 0.15);
  color: var(--gold-text);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(232, 162, 60, 0.25);
}

/* --- BOTONES DE CTA (LLAMADOS A LA ACCIÓN) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.15rem;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-full);
  border: var(--border-flat);
  cursor: pointer;
  width: 100%;
  transition: var(--transition-smooth);
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

/* Estado Activo del Botón (Por defecto cuando tiene href en la etapa 2) */
.btn-primary:not([aria-disabled="true"]) {
  background-color: var(--primary);
  color: var(--foreground);
}

.btn-primary:not([aria-disabled="true"]):hover,
.btn-primary:not([aria-disabled="true"]):focus {
  transform: translateY(-2px) scale(1.02);
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(43, 27, 61, 0.15);
}


.btn-primary:not([aria-disabled="true"]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* Estado Desactivado del Botón (Checkout vacío) */
.btn.btn-disabled {
  background-color: #e5dfec !important;
  color: rgba(43, 27, 61, 0.4) !important;
  border-color: rgba(43, 27, 61, 0.25) !important;
  cursor: not-allowed !important;
  pointer-events: auto; /* Permite capturar el click para preventDefault */
  transform: none !important;
  box-shadow: none !important;
}

.btn.btn-disabled svg {
  opacity: 0.4;
}

/* Elementos de confianza bajo los botones */
.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-item svg {
  color: var(--teal-check);
  flex-shrink: 0;
}

/* --- ENFOQUE VISIBLE DE ACCESIBILIDAD --- */
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* --- ESTRATEGIA DE PLACEHOLDERS DE IMAGENES SIN IMG --- */
.img-placeholder {
  background-color: var(--accent-soft);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(123, 79, 163, 0.05);
}

.img-placeholder::before {
  /* Extrae dinámicamente el valor de data-asset y lo muestra en pantalla */
  content: "[" attr(data-asset) "]";
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background-color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(43, 27, 61, 0.05);
}

.img-placeholder::after {
  content: "Espacio reservado para imagen comercial";
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Proporciones exactas de aspecto */
.ratio-16-9 {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.ratio-bonus {
  /* Proporción equilibrada neutra para los bonos */
  aspect-ratio: 1;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

/* ==========================================================================
   DISEÑO DE LAS 12 SECCIONES
   ========================================================================== */

/* --- 1. HERO --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 1rem;
}

.hero-text-col {
  text-align: left;
}

.hero-text-col h1 {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

/* --- 2. PROBLEMA --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.problem-box-left {
  background-color: var(--background);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.25rem;
}

.problem-box-left h3 {
  margin-bottom: 1.5rem;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.problem-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.problem-icon-x {
  background-color: rgba(178, 58, 92, 0.08);
  color: var(--rose-accent);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 0.8rem;
}

.problem-item-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Imagina esto (Dream block) */
.dream-box {
  background-color: var(--card);
  border: var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
}

.dream-box-badge {
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  background-color: var(--primary);
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: var(--border-flat);
  transform: rotate(4deg);
}

.dream-box h3 {
  margin-bottom: 1.5rem;
}

.dream-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.dream-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.dream-icon-check {
  background-color: rgba(46, 158, 138, 0.1);
  color: var(--teal-check);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dream-icon-check svg {
  width: 0.85rem;
  height: 0.85rem;
}

.dream-item-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
}

/* --- 3. MECANISMO --- */
.mecanismo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .mecanismo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.mecanismo-card {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: var(--transition-smooth);
}

.mecanismo-card:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.mecanismo-icon-num {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--foreground);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 2px solid #ffffff;
}

.mecanismo-card h3 {
  margin-bottom: 0.75rem;
}

.mecanismo-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- 4. VISIÓN GENERAL --- */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .overview-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.overview-counter-card {
  background-color: var(--card);
  border: var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.overview-counter-card:hover {
  transform: translateY(-4px);
}

.overview-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overview-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- 5. CINCO MÓDULOS --- */
.modules-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.module-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .module-row {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
  
  /* Permite el alternado de columnas solo en desktop */
  .module-row.alt-layout .module-text-pane {
    order: 2;
  }
  .module-row.alt-layout .module-visual-pane {
    order: 1;
  }
}

.module-badge {
  display: inline-block;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}

.module-row h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.module-row p {
  margin-bottom: 1.5rem;
}

.module-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
}

.module-check-item svg {
  color: var(--teal-check);
  flex-shrink: 0;
}

/* --- 6. ÁREA DE MIEMBROS --- */
.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .members-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.members-content-box {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.25rem;
}

.members-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .members-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.member-step-card {
  background-color: var(--background-alt);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.member-step-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.member-step-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* --- 7. PARA QUIÉN ES --- */
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  /* El quinto card ocupará el ancho completo en tablet/desktop */
  .target-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .target-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .target-card:nth-child(4) {
    grid-column: span 1;
  }
  .target-card:nth-child(5) {
    grid-column: span 2;
    display: flex;
    align-items: center;
  }
  .target-card:nth-child(5) .target-card-content {
    flex: 1;
  }
}

.target-card {
  background-color: var(--card);
  border: var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition-smooth);
}

.target-card:hover {
  transform: translateY(-4px);
}

.target-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.target-card p {
  font-size: 0.95rem;
}

.therapy-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 48rem;
  margin: 2.5rem auto 0;
  line-height: 1.5;
  font-weight: 500;
}

/* --- 8. BONOS --- */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 992px) {
  .bonuses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.bonus-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: var(--border-flat);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bonus-val-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(178, 58, 92, 0.08);
  color: var(--rose-accent);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 10;
  text-transform: uppercase;
  border: 1px solid rgba(178, 58, 92, 0.15);
}

.bonus-visual-wrap {
  margin-bottom: 0.9rem;
}

.bonus-num-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.bonus-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--foreground) !important;
}

.bonus-description {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  flex-grow: 1;
}

.bonus-card-footer {
  margin-top: auto;
}

.bonus-individual-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 700;
}

.bonus-individual-value del {
  color: var(--rose-accent);
  font-size: 1rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
}

.bonus-free-banner {
  background-color: rgba(46, 158, 138, 0.1);
  color: var(--teal-text);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--teal-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- 9. RESUMEN DE LA OFERTA --- */
.offer-box {
  background-color: var(--card);
  border: 4px solid var(--foreground);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  position: relative;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .offer-box {
    padding: 3.5rem;
  }
}

.offer-ribbon {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--foreground);
  color: var(--primary);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 2.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 2px solid var(--primary);
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .offer-list-item {
    font-size: 1.15rem;
  }
}

.offer-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.offer-item-left svg {
  color: var(--accent);
  flex-shrink: 0;
}

.offer-price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}

.offer-total-summary {
  background-color: rgba(178, 58, 92, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(178, 58, 92, 0.15);
}

.total-sum-label {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rose-accent);
}

.total-sum-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--rose-accent);
  text-decoration: line-through;
}

.offer-pricing-panel {
  text-align: center;
  margin-bottom: 2.25rem;
}

.pricing-banner-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-large-val {
  font-size: 4.5rem;
  font-weight: 950;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .pricing-large-val {
    font-size: 5.75rem;
  }
}

.pricing-note {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--foreground);
}

/* --- 10. GARANTÍA --- */
.guarantee-box {
  background-color: var(--card);
  border: var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: left;
  max-width: 54rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .guarantee-box {
    flex-direction: row;
    padding: 3rem;
    gap: 3.5rem;
  }
}

.guarantee-seal-icon {
  flex-shrink: 0;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(46, 158, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--teal-check);
}

.guarantee-seal-icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--teal-check);
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.guarantee-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- 11. FAQ ACCORDION --- */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item-trigger {
  width: 100%;
  background-color: #ffffff;
  border: var(--border-flat);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.faq-item-trigger:hover {
  border-color: var(--accent);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--foreground);
}

.faq-chevron {
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-content-pane {
  padding: 0 1.75rem;
}

.faq-content-pane[hidden] {
  display: none;
}

.faq-answer {
  padding: 1.15rem 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.65;
}

/* Clases de estado dinámico */
.faq-item-trigger[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-item-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-content-pane.is-open {
  border-left: 2px solid var(--foreground);
  border-right: 2px solid var(--foreground);
  border-bottom: 2px solid var(--foreground);
  background-color: #ffffff;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

/* --- 12. RODAPÉ --- */
.footer-wrap {
  padding: 3.5rem 1.25rem;
  background-color: var(--foreground);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.footer-logo-text {
  font-family: system-ui, sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.65;
  margin-bottom: 1.5rem;
}

.footer-physical-warning {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-links-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-links-legal a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* ==========================================================================
   PIE DE PÁGINA MÓVIL (MOBILE STICKY FOOTER) - LIMPIO
   ========================================================================== */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: var(--foreground);
  color: #ffffff;
  border-top: 3px solid var(--primary);
  display: block;
}

@media (min-width: 768px) {
  .sticky-footer {
    display: none;
  }
  body {
    padding-bottom: 0; /* No requiere padding extra en escritorio */
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 74px; /* Evita que el footer tape contenido en mobile */
  }
}

.sticky-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: inherit;
}

.sticky-price-col {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sticky-price-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.sticky-price-highlight {
  color: var(--primary);
  font-weight: 900;
}

.sticky-cta-btn-text {
  background-color: var(--primary);
  color: var(--foreground);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  white-space: nowrap;
  border: 1px solid var(--foreground);
  transition: var(--transition-smooth);
}

.sticky-footer-wrap.btn-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.sticky-footer-wrap.btn-disabled .sticky-cta-btn-text {
  background-color: #e5dfec;
  color: rgba(43, 27, 61, 0.55);
  border-color: rgba(43, 27, 61, 0.25);
}

/* Hover en mobile sticky CTA solo si no está desactivado */
.sticky-footer-wrap:not(.btn-disabled) .sticky-cta-btn-text:hover {
  background-color: var(--primary-hover);
}

/* ==========================================================================
   ACCESIBILIDAD Y REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .btn:hover, .target-card:hover, .overview-counter-card:hover {
    transform: none !important;
  }
}

/* ========================================================================== 
   V2 MOBILE-FIRST — PALETA CÁLIDA, IMÁGENES RESPONSIVAS Y CTA CONTEXTUAL
   ========================================================================== */
.product-picture {
  display: block;
  width: 100%;
}

.product-picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(43, 27, 61, 0.09);
}

.bonus-picture img {
  border-radius: var(--radius-md);
  box-shadow: none;
}

.hero-grid {
  grid-template-areas:
    "copy"
    "media"
    "actions";
  gap: 1.75rem;
  padding-top: 0;
}

.hero-copy { grid-area: copy; }
.hero-media { grid-area: media; }
.hero-actions { grid-area: actions; }

.hero-copy h1 {
  margin-top: 0.5rem;
  max-width: 16ch;
}

.hero-copy p {
  max-width: 39rem;
}

.hero-actions .trust-indicators {
  justify-content: flex-start;
  color: var(--color-success);
}

.checkout-local-currency-note {
  margin: -0.75rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.offer-pricing-panel .checkout-local-currency-note {
  margin: 0.5rem 0 0;
}

.btn {
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  font-size: clamp(0.95rem, 4vw, 1.08rem);
  line-height: 1.25;
}

.btn.btn-disabled {
  background-color: var(--color-disabled-background) !important;
  color: var(--color-disabled-text) !important;
  border-color: #CFC4D4 !important;
}

.mecanismo-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(43, 27, 61, 0.06);
}

.mecanismo-card:hover { background-color: var(--card); }
.mecanismo-card p { color: var(--muted); }
.mecanismo-icon-num {
  background-color: var(--color-gold-soft);
  color: var(--color-violet);
  border-color: var(--color-gold);
}

.modules-list { gap: 2rem; }

.module-row {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.module-row:nth-child(even) { background: var(--color-background-warm); }

.guarantee-box {
  background-color: var(--card);
  border-color: var(--color-success);
}

.faq-item { background-color: var(--card); }

.sticky-footer {
  visibility: hidden;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.sticky-footer.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  body { padding-bottom: 0; }
  body.has-sticky-cta { padding-bottom: 74px; }
  .section { padding: 3.25rem 0; }
  .trust-indicators {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
  .overview-cards { gap: 0.75rem; }
  .overview-counter-card { padding: 1.25rem 0.75rem; }
  .problem-box-left,
  .dream-box,
  .members-content-box,
  .target-card { padding: 1.5rem; }
  .offer-list-item {
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (min-width: 640px) {
  .hero-actions .btn { width: auto; }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    grid-template-areas:
      "copy media"
      "actions media";
    column-gap: 3.5rem;
    row-gap: 1.5rem;
  }
  .hero-media {
    align-self: center;
  }
}

@media (min-width: 1024px) {
  .modules-list { gap: 3rem; }
  .module-row { padding: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-footer { transition: none; }
}
