/* ════════════════════════════════════════════════════════════════════
   ESTILOS DE LANDING DE PROGRAMA · María Schiavoni
   --------------------------------------------------------------------
   Hoja compartida por las landings de los programas nuevos
   (Comunicación en pareja · Resolución de conflictos en la pareja).

   Es una copia fiel del sistema visual de Encontrarnos / Encontrarme:
   mismas variables, tipografías, colores, botones, espaciados,
   animaciones, bordes y breakpoints. No modifica ninguna página
   existente; simplemente evita duplicar el mismo CSS en cada archivo.
════════════════════════════════════════════════════════════════════ */

/* ═══════════════ VARIABLES Y RESET ═══════════════ */
:root {
  --bg:          #f9f6f1;
  --bg-warm:     #f2ece2;
  --bg-card:     #ffffff;
  --bg-dark:     #1e1814;
  --accent:      #a87c5e;
  --accent-light:#c9a88a;
  --accent-dark: #7d5c42;
  --gold:        #c4a46b;
  --text:        #221e1a;
  --text-mid:    #5c5149;
  --text-light:  #9e9189;
  --border:      #e4dbd0;
  --border-light:#ede8e0;
  --radius:      20px;
  --radius-sm:   12px;
  --shadow:      0 4px 32px rgba(120,90,65,0.10);
  --shadow-lg:   0 16px 64px rgba(120,90,65,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  /* "Digital Vibrance" — sube saturación y contraste de toda la página,
     igual que en Encontrarnos / Encontrarme. */
  filter: saturate(1.55) contrast(1.06);
}
section[id] { scroll-margin-top: 76px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 400;
}

h2 { font-size: clamp(2.1rem, 5vw, 3rem); color: var(--text); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.thin-line {
  width: 40px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 24px 0 32px;
}

/* ─── BOTONES ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,124,94,0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,124,94,0.38);
}

.btn-outline {
  background: transparent;
  color: rgba(245,237,228,0.75);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.btn-outline:hover {
  border-color: rgba(196,164,107,0.5);
  color: var(--gold);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30,24,20,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

nav.scrolled { border-bottom-color: rgba(196,164,107,0.18); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,237,228,0.85);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--gold); }

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,237,228,0.5);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-back:hover { color: rgba(245,237,228,0.85); }

.nav-back svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── FADE IN ─── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════ HERO ══════════════ */
#hero {
  background: var(--bg-dark);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(196,164,107,0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(168,124,94,0.11) 0%, transparent 70%);
  top: -60px; right: 8%;
}

.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(168,124,94,0.09) 0%, transparent 70%);
  bottom: -40px; left: 6%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--accent-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 400;
  color: #f5ede4;
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-gold-line {
  width: 52px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px auto 36px;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-style: italic;
  color: rgba(245,237,228,0.48);
  margin-bottom: 44px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-quote {
  font-size: clamp(15.5px, 2vw, 17px);
  color: rgba(245,237,228,0.7);
  line-height: 1.85;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 52px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════ QUÉ INCLUYE ══════════════ */
#incluye {
  background: var(--bg);
  padding: 100px 0;
}

.sec-header {
  text-align: center;
  margin-bottom: 64px;
}

.sec-header h2 { margin-bottom: 14px; }

.sec-header p {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

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

.incluye-grid .inc-card:nth-child(4) { grid-column: 1; }
.incluye-grid .inc-card:nth-child(5) { grid-column: 2; }

.incluye-row-2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: calc(66.66% + 9px);
  margin: 0 auto;
  width: 100%;
}

.inc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.inc-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.inc-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}

.inc-card:hover .inc-icon { background: rgba(168,124,94,0.12); }

.inc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.inc-card p {
  font-size: 14.5px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
}

/* ══════════════ MÓDULOS ══════════════ */
#modulos {
  background: var(--bg-warm);
  padding: 100px 0;
}

.mod-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.mod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.mod-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
}

.mod-card.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.mod-trigger {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
  user-select: none;
}

.mod-num {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
  border: 1px solid var(--border);
}

.mod-card.active .mod-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.mod-heading { display: flex; flex-direction: column; gap: 4px; }

.mod-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.mod-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.mod-chevron {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.mod-card.active .mod-chevron {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.mod-chevron svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mod-body.open { max-height: 800px; }

.mod-body-inner {
  padding: 0 30px 32px;
  border-top: 1px solid var(--border-light);
}

.mod-divider {
  width: 28px; height: 1.5px;
  background: var(--accent);
  opacity: 0.45;
  margin: 24px 0 20px;
}

/* Párrafo descriptivo del módulo (texto corrido en lugar de lista) */
.mod-desc {
  font-size: 15.5px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}
.mod-desc + .mod-desc { margin-top: 16px; }

/* ══════════════ ACERCA DEL PROGRAMA (editorial) ══════════════ */
#acerca-programa {
  background: var(--bg-dark);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

#acerca-programa::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,164,107,0.07) 0%, transparent 68%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.ap-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.ap-inner .label { color: var(--accent-light); }
.ap-inner .label::before { background: var(--accent-light); }

.ap-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-style: italic;
  color: #f5ede4;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 0;
}

.ap-divider {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 36px 0;
}

.ap-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
}

.ap-details p {
  font-size: 16px;
  color: rgba(245,237,228,0.65);
  font-weight: 300;
  line-height: 1.9;
}

.ap-details p em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.ap-details p strong {
  font-weight: 500;
  color: rgba(245,237,228,0.85);
}

@media (max-width: 760px) {
  #acerca-programa { padding: 80px 0; }
  .ap-lead { font-size: clamp(1.2rem, 6vw, 1.55rem); }
}

/* ══════════════ VIDEO DE PRESENTACIÓN ══════════════ */
#video-presentacion {
  background: var(--bg);
  padding: 40px 0 60px;
}
.vpres-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}
.vpres-head .label { justify-content: center; }
.vpres-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin: 8px 0 14px;
}
.vpres-title em { font-style: italic; color: var(--accent-dark); }
.vpres-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto;
}
.vpres-frame {
  /* Fondo de respaldo elegante por si el video/portada aún no están subidos */
  background: linear-gradient(135deg, #1e1814 0%, #2e231b 100%);
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-dark);
  aspect-ratio: 16 / 9;
  line-height: 0;
  cursor: pointer;
  /* Contrarresta el filtro global "Digital Vibrance" solo dentro de este marco,
     para que el video se vea con color normal (valores inversos: 1/1.55 y 1/1.06). */
  filter: contrast(0.9434) saturate(0.6452);
}
.vpres-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: opacity .3s ease;
}
.vpres-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  z-index: 0;
}
.vpres-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
  transition: transform .25s ease, background .25s ease;
}
.vpres-play svg { width: 32px; height: 32px; margin-left: 3px; }
.vpres-play:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.vpres-frame.playing .vpres-poster,
.vpres-frame.playing .vpres-play { opacity: 0; pointer-events: none; }
.vpres-frame.playing .vpres-video { z-index: 3; }
.vpres-frame.playing { cursor: default; }
@media (max-width: 640px) {
  #video-presentacion { padding: 30px 0 44px; }
  .vpres-head { margin-bottom: 24px; }
  .vpres-frame { border-radius: var(--radius-sm); }
  .vpres-play { width: 62px; height: 62px; }
  .vpres-play svg { width: 26px; height: 26px; }
}

/* ══════════════ FAQ (acordeón accesible) ══════════════ */
#faq {
  background: var(--bg-warm);
  padding: 100px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: 'Jost', sans-serif;
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}

.faq-chevron {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--text-light);
}

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

.faq-item.active .faq-chevron {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

/* Foco visible para navegación por teclado */
.faq-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq-item.active .faq-q { color: var(--accent-dark); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body.open { max-height: 500px; }

.faq-body p {
  font-size: 15.5px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  padding-bottom: 24px;
}

@media (max-width: 760px) {
  #faq { padding: 72px 0; }
  .faq-q { font-size: 1rem; }
  .faq-trigger { padding: 18px 0; gap: 14px; }
  .faq-body p { font-size: 15px; }
}

/* ══════════════ ACCESO / PRECIO (Wisboo) ══════════════ */
#acceso {
  background: var(--bg);
  padding: 90px 0 20px;
}

#precio {
  background: var(--bg);
  padding: 20px 0 100px;
}

.precio-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.precio-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  border: 1px solid rgba(196,164,107,0.22);
  padding: 54px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.precio-card::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,164,107,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.precio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(196,164,107,0.25);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.precio-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.precio-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 400;
  color: #f5ede4;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.precio-currency {
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
}

.precio-tipo {
  font-size: 13px;
  color: rgba(245,237,228,0.35);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.precio-divider {
  width: 36px; height: 1px;
  background: rgba(196,164,107,0.25);
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.precio-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  z-index: 1;
}

.precio-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(245,237,228,0.6);
  font-weight: 300;
  text-align: left;
}

.precio-includes li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── Botón de acceso · Wisboo ─── */
.precio-cta {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}
.btn-wisboo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(196,164,107,0.28);
  transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn-wisboo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(196,164,107,0.42);
}
.btn-wisboo svg { flex-shrink: 0; }
.precio-secure {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245,237,228,0.42);
}
.precio-secure svg { opacity: 0.65; flex-shrink: 0; }

/* Estado "pendiente" (sin URL de Wisboo todavía): no navega, se ve atenuado.
   El detalle de opacidad/cursor lo aplica assets/js/courses.js. */
.js-wisboo.is-pending { box-shadow: none; }

/* ══════════════ CTA FINAL ══════════════ */
#cta-final {
  background: var(--bg-dark);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-final::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,164,107,0.10) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner .label {
  color: var(--accent-light);
  justify-content: center;
}

.cta-inner .label::before { background: var(--accent-light); }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: #f5ede4;
  line-height: 1.15;
  margin-bottom: 0;
}

.cta-title em { color: var(--gold); font-style: italic; }

.cta-gold-line {
  width: 52px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px auto 36px;
}

.cta-text {
  font-size: 16px;
  color: rgba(245,237,228,0.6);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 50px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  color: rgba(245,237,228,0.28);
  text-align: center;
  padding: 32px 24px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer a {
  color: rgba(245,237,228,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--gold); }
footer p + p { margin-top: 6px; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 760px) {
  body { font-size: 16px; }
  nav { height: 60px; padding: 0 20px; }
  .container { padding: 0 22px; }
  .section { padding: 72px 0; }

  #hero {
    min-height: 100svh;
    padding: 96px 0 64px;
    text-align: center;
  }

  .hero-sub { font-size: 1rem; }
  .hero-quote { font-size: 15px; }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn { width: 100%; padding: 16px 22px; }

  #incluye { padding: 72px 0; }
  #modulos { padding: 72px 0; }

  /* Tarjetas "incluye" compactas: 3 por fila en celular */
  .incluye-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .incluye-row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: calc(66.66% + 4px);
  }
  .inc-card {
    padding: 16px 10px;
    border-radius: 14px;
    text-align: center;
  }
  .inc-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    margin: 0 auto 10px;
  }
  .inc-icon svg { width: 16px; height: 16px; }
  .inc-card h3 {
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .inc-card p { display: none; }

  .mod-trigger {
    grid-template-columns: 46px 1fr auto;
    gap: 14px;
    padding: 22px 18px;
  }
  .mod-body-inner { padding: 0 18px 28px; }
  .mod-num { width: 46px; height: 46px; font-size: 1.1rem; }
  .mod-title { font-size: 1.1rem; }

  .precio-card { padding: 42px 28px; }

  .cta-btns {
    flex-direction: column;
    max-width: 320px;
    margin: 0 auto;
  }

  #cta-final { padding: 90px 0 110px; }
}

@media (max-width: 400px) {
  .precio-amount { font-size: 3rem; }
}
