/* =========================================================
   Descubre la IA — estilos (Dirección B: clara y directa)
   Mobile first · alto contraste · tipografía grande
   ========================================================= */

:root {
  --navy: #0e1b2e;
  --navy-soft: #16273f;
  --blue: #0b5fd6;
  --blue-dark: #0846a3;
  --blue-light: #7fb0ff;
  --blue-pale: #e4eefc;
  --bg: #ffffff;
  --bg-soft: #f3f6fa;
  --border: #e1e7f0;
  --text: #0e1b2e;
  --text-soft: #3d4a5f;
  --text-muted: #5d6a80;
  --success: #1e7a4c;
  --error: #b3261e;
  --error-bg: #fdecea;

  --font-head: "Sora", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(14, 27, 46, 0.1);
  --shadow-sm: 0 2px 10px rgba(14, 27, 46, 0.06);
  --container: 1200px;
  --section-y: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.3rem, 7vw, 4.4rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 4.5vw, 2.8rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p { margin: 0 0 16px; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
strong { font-weight: 700; }

a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2 { color: #fff; }
.section__intro { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section__intro--left { margin: 0 0 36px; text-align: left; }
.section__intro p { color: var(--text-soft); font-size: 1.15rem; }
.section--navy .section__intro p { color: #b9c4d6; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section--navy .kicker { color: var(--blue-light); }

.lead { font-size: 1.2rem; color: var(--text-soft); }
.text-center { text-align: center; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 100;
  background: var(--blue); color: #fff; padding: 12px 16px; border-radius: var(--radius-sm); text-decoration: none;
}
.skip-link:focus { top: 16px; }

.placeholder { background: #fff3cd; color: #664d03; padding: 2px 6px; border-radius: 4px; font-weight: 700; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 14px 28px;
  border: 2px solid transparent; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 700;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: background-color .15s ease, transform .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(11, 95, 214, 0.28); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.btn--secondary { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--white { background: #fff; color: var(--blue); box-shadow: 0 8px 22px rgba(0,0,0,0.18); }
.btn--white:hover { background: var(--blue-pale); color: var(--blue-dark); }
.btn--lg { font-size: 1.12rem; min-height: 64px; padding: 16px 34px; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.btn__arrow { width: 20px; height: 20px; flex: none; }

/* ---------- Header / navegación ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.01em;
  color: var(--navy); text-decoration: none; white-space: nowrap;
}
.logo span { color: var(--blue); }
.nav { display: none; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 1rem; color: var(--text-soft); text-decoration: none; padding: 8px 0; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.header__cta { min-height: 46px; padding: 10px 20px; font-size: 0.95rem; box-shadow: none; white-space: nowrap; display: none; }
@media (min-width: 600px) { .header__cta { display: inline-flex; } }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-mobile {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  padding: 12px 20px 20px;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block; padding: 14px 4px; font-size: 1.15rem; font-weight: 600; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { margin-top: 16px; border-bottom: 0; }
.header--minimal .nav a { font-size: 0.95rem; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: #fff; --cw: min(100vw, 1200px); }
.hero__grid { display: grid; gap: 28px; align-items: center; padding: 36px 0 0; }
.hero__content { display: flex; flex-direction: column; gap: 20px; }
.hero__content h1 { margin: 0; }
.hero__sub { font-size: clamp(1.25rem, 3.5vw, 1.65rem); color: var(--text-soft); font-weight: 500; margin: 0; line-height: 1.35; }
.hero__text { font-size: 1.15rem; color: var(--text-soft); margin: 0; max-width: 600px; }
.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__note { font-size: 1rem; color: var(--text-muted); font-weight: 600; margin: 0; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 10px 24px; font-weight: 600; font-size: 1rem; color: var(--text-soft); }
.hero__checks li { display: inline-flex; align-items: center; gap: 8px; }
.hero__checks svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-weight: 700; font-size: 1.05rem; }
.hero__meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 22px; height: 22px; color: var(--blue); flex: none; }

.hero__visual { position: relative; background: var(--navy); border-radius: var(--radius) var(--radius) 0 0; padding: 28px 24px 0; }
.hero__visual img { width: 100%; max-width: 420px; margin: 0 auto; aspect-ratio: 9 / 11; object-fit: cover; object-position: top; border-radius: 12px 12px 0 0; }
/* Video del hero (poster + botón de reproducir) */
.hero__stage { position: relative; width: 100%; max-width: 330px; margin: 0 auto; }
.hero__video { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 12px 12px 0 0; overflow: hidden; background: #000; }
.hero__video-el { display: block; width: 100%; height: 100%; object-fit: cover; background: #000; }
.hero__play {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 0 16px 8%; border: 0; cursor: pointer; color: #fff; font-family: var(--font-body);
  background: radial-gradient(60% 42% at 50% 46%, rgba(14,27,46,0.55) 0%, rgba(14,27,46,0.12) 100%);
  transition: opacity .2s ease;
}
.hero__play-icon {
  display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 14px 32px rgba(11,95,214,.5);
  transition: transform .18s ease;
}
.hero__play-icon svg { width: 32px; height: 32px; margin-left: 3px; }
.hero__play-label { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; display: grid; gap: 2px; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.hero__play-label small { font-family: var(--font-body); font-weight: 600; font-size: .95rem; opacity: .92; }
.hero__play:hover .hero__play-icon, .hero__play:focus-visible .hero__play-icon { transform: scale(1.07); }
.hero__visual.is-playing .hero__play { opacity: 0; pointer-events: none; }
.hero__visual.is-playing .hero__badge { opacity: 0; pointer-events: none; }

.hero__badge {
  position: absolute; left: -6px; bottom: 20px; max-width: 300px; transition: opacity .2s ease;
  background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.hero__badge span { font-size: 0.95rem; color: var(--text-soft); line-height: 1.35; display: block; }

@media (min-width: 640px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
}
@media (min-width: 900px) {
  /* La banda azul marino ES la columna del video: así el video queda centrado en ella
     a cualquier ancho de pantalla, sin cálculos frágiles. */
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; padding: 0 20px; align-items: stretch; position: relative; }
  .hero__content { justify-content: center; padding: 72px 0 80px; }
  .hero__visual {
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); border-radius: 0;
    padding: 56px 0;
    margin-right: calc(var(--cw) / 2 - 50vw - 20px);
  }
  .hero__visual img { max-width: 100%; border-radius: 16px; aspect-ratio: 4 / 5; }
  .hero__stage { max-width: 360px; }
  .hero__video { border-radius: 16px; }
  .hero__badge { left: -44px; bottom: 36px; }
}

/* ---------- Tarjetas ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Frases de identificación */
.quote-card { display: flex; flex-direction: column; gap: 14px; }
.quote-card svg { width: 34px; height: 34px; color: var(--blue); }
.quote-card p { margin: 0; font-size: 1.15rem; line-height: 1.4; font-weight: 600; }
.quote-card--accent { background: var(--blue); color: #fff; border-color: var(--blue); }
.quote-card--accent p { font-size: 1.25rem; font-weight: 700; }
.quote-card--accent span { color: var(--blue-pale); font-size: 1.05rem; }
@media (min-width: 1000px) { .quote-card--accent { grid-column: span 2; justify-content: center; } }

/* Pasos numerados */
.step-card { display: flex; flex-direction: column; gap: 14px; }
.step-card__num {
  width: 50px; height: 50px; border-radius: 12px; background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
}
.step-card h3 { margin: 0; font-size: 1.25rem; }
.step-card p { margin: 0; color: var(--text-soft); font-size: 1.05rem; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.tags li { padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-weight: 600; font-size: 1rem; }
.section--soft .tags li { background: #fff; }

.cta-row { margin-top: 40px; text-align: center; }

/* Banda "desde cero" */
.zero-band { background: var(--navy); color: #fff; border-radius: 24px; padding: 40px 24px; display: grid; gap: 28px; align-items: center; }
.zero-band h2 { color: #fff; margin-bottom: 12px; }
.zero-band p { color: #b9c4d6; font-size: 1.15rem; margin: 0; }
.zero-band .kicker { color: var(--blue-light); }
.checklist { display: grid; gap: 12px; }
.checklist li {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); font-weight: 700; font-size: 1.1rem;
}
.checklist svg { width: 28px; height: 28px; flex: none; color: var(--blue-light); }
.checklist--light li { background: var(--bg-soft); border-color: var(--border); }
.checklist--light svg { color: var(--blue); }
@media (min-width: 900px) { .zero-band { grid-template-columns: 1fr 1fr; padding: 64px 72px; gap: 56px; } }

/* Usos */
.use-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 1.35rem; }
.use-card h3 svg { width: 32px; height: 32px; color: var(--blue); flex: none; }
.use-card ul { display: grid; gap: 10px; }
.use-card li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 1.05rem; }
.use-card li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 11px; }
@media (min-width: 700px) { .use-card ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.closing-line { margin-top: 32px; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy); }

/* Instructor */
.instructor { display: grid; gap: 32px; align-items: center; }
.instructor__photo > img:not(.instructor__book) { width: 100%; max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.instructor__quote { font-size: 1.3rem; font-weight: 600; line-height: 1.4; margin-bottom: 18px; }
.instructor__text p { font-size: 1.1rem; color: var(--text-soft); }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.creds li { padding: 10px 16px; border-radius: 10px; background: #fff; border: 1px solid var(--border); font-weight: 700; font-size: 0.95rem; }
@media (min-width: 900px) { .instructor { grid-template-columns: 420px 1fr; gap: 72px; } }

/* Es / no es */
.fit__col { border-radius: var(--radius); padding: 32px 26px; }
.fit__col--yes { border: 2px solid var(--blue); background: #fff; }
.fit__col--no { border: 1px solid var(--border); background: var(--bg-soft); }
.fit__col h3 { font-size: 1.4rem; margin-bottom: 18px; }
.fit__col--yes h3 { color: var(--blue); }
.fit__col--no h3 { color: var(--text-muted); }
.fit__col ul { display: grid; gap: 12px; }
.fit__col li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.08rem; line-height: 1.45; }
.fit__col li svg { width: 22px; height: 22px; flex: none; margin-top: 4px; }
.fit__col--yes li svg { color: var(--blue); }
.fit__col--no li { color: var(--text-soft); }
.fit__col--no li svg { color: #9aa3b2; }

/* Bloque de evento + formulario */
.event-block { display: grid; gap: 36px; align-items: center; }
.event-block h2 { color: #fff; }
.event-block .kicker { color: var(--blue-light); }
.event-grid { display: grid; gap: 12px; }
.event-item { border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 16px 18px; }
.event-item span { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #b9c4d6; font-weight: 700; margin-bottom: 4px; }
.event-item strong { font-size: 1.15rem; }
.event-item strong.is-free { color: var(--blue-light); }
@media (min-width: 560px) { .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .event-block { grid-template-columns: 1fr 540px; gap: 72px; } }

/* Formulario */
.register { scroll-margin-top: 84px; }
.form-card { background: #fff; color: var(--text); border-radius: 18px; padding: 30px 22px; box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.form-card h2 { font-size: 1.7rem; margin-bottom: 6px; color: var(--navy); }
.form-card > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; }
.form__row { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-weight: 700; font-size: 1rem; }
.field input {
  font-family: var(--font-body); font-size: 1.1rem; min-height: 56px; padding: 12px 16px;
  border: 2px solid #c9d2df; border-radius: 10px; background: #fff; color: var(--text); width: 100%;
}
.field input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px rgba(11,95,214,0.15); }
.field input[aria-invalid="true"] { border-color: var(--error); }
.field__hint { font-size: 0.9rem; color: var(--text-muted); }
.field__error { display: none; color: var(--error); font-size: 0.95rem; font-weight: 600; }
.field__error.is-visible { display: block; }
.field--check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 12px; margin: 6px 0 18px; }
.field--check input { width: 24px; height: 24px; min-height: 0; margin-top: 3px; flex: none; accent-color: var(--blue); }
.field--check label { font-weight: 500; font-size: 1rem; flex: 1; }
.field--check .field__error { width: 100%; }
.form__legal { margin: 14px 0 0; font-size: 0.9rem; color: var(--text-muted); text-align: center; }
.form__status { margin-top: 14px; padding: 14px 16px; border-radius: 10px; font-weight: 600; display: none; }
.form__status.is-error { display: block; background: var(--error-bg); color: var(--error); }
.form__status.is-success { display: block; background: #e8f5ee; color: var(--success); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } .form-card { padding: 40px 36px; } }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 56px 18px 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); color: var(--blue);
  font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 20px 18px; margin: 0; color: var(--text-soft); font-size: 1.05rem; }

/* CTA final */
.final { background: var(--blue); color: #fff; text-align: center; padding: 72px 0; }
.final p { font-size: 1.2rem; max-width: 640px; margin: 0 auto 18px; color: var(--blue-pale); }
.final h2 { color: #fff; margin-bottom: 28px; }
.final--navy { background: var(--navy); }

/* Footer */
.footer { padding: 40px 0 110px; background: var(--navy); color: #b9c4d6; font-size: 1rem; }
.footer__grid { display: grid; gap: 28px; }
.footer__brand { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.footer__brand span { color: var(--blue-light); }
.footer h3 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8d9bb1; margin-bottom: 12px; }
.footer ul { display: grid; gap: 8px; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; color: #fff; }
.footer__bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } .footer { padding-bottom: 40px; } }

/* Barra sticky móvil */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(14,27,46,0.1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(110%); transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta span { font-weight: 700; font-size: 0.95rem; }
.sticky-cta .btn { min-height: 48px; padding: 10px 18px; font-size: 0.95rem; flex: none; box-shadow: none; }
@media (min-width: 700px) { .sticky-cta { display: none; } }

/* ---------- Home: dos caminos ---------- */
.path-card { display: flex; flex-direction: column; gap: 16px; padding: 32px 26px; }
.path-card--free { border: 2px solid var(--blue); }
.path-card--paid { background: var(--navy); color: #fff; border-color: var(--navy); }
.path-card--paid h3 { color: #fff; }
.path-card--paid p { color: #b9c4d6; }
.path-card--paid .kicker { color: var(--blue-light); }
.path-card h3 { font-size: 1.6rem; margin: 0; }
.path-card p { margin: 0; font-size: 1.1rem; color: var(--text-soft); }
.path-card--paid p { color: #c5cfdd; }
.path-card__meta { display: grid; gap: 6px; font-weight: 700; font-size: 1.05rem; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.path-card--paid .path-card__meta { border-color: rgba(255,255,255,0.15); }
.path-card .btn { margin-top: auto; align-self: flex-start; }
.path-card__price { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; }
.path-card__price small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: #b9c4d6; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Curso ---------- */
.price-box { background: #fff; border-radius: 18px; padding: 30px 24px; color: var(--text); box-shadow: 0 30px 60px rgba(0,0,0,0.3); display: flex; flex-direction: column; gap: 14px; }
.price-box__label { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.price-box__amount { font-family: var(--font-head); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--navy); }
.price-box__amount small { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); margin-left: 6px; }
.price-box__note { color: var(--text-soft); font-size: 1rem; margin: 0; }
.price-box ul { display: grid; gap: 8px; font-size: 1rem; }
.price-box li { display: flex; gap: 10px; align-items: flex-start; }
.price-box li svg { width: 20px; height: 20px; flex: none; color: var(--blue); margin-top: 3px; }
.price-box .form__status { margin-top: 0; }

.schedule { display: grid; gap: 14px; }
.schedule li { display: flex; align-items: center; gap: 18px; padding: 18px 20px; }
.schedule__num { width: 50px; height: 50px; border-radius: 12px; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.schedule strong { display: block; font-size: 1.1rem; }
.schedule span { color: var(--text-soft); font-size: 1rem; }
@media (min-width: 700px) { .schedule { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.session { display: flex; flex-direction: column; gap: 14px; }
.session__head { display: flex; align-items: center; gap: 14px; }
.session__head .step-card__num { flex: none; }
.session__head span { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); display: block; }
.session__head h3 { margin: 0; font-size: 1.3rem; }
.session ul { display: grid; gap: 8px; }
.session li { display: flex; gap: 10px; align-items: flex-start; font-size: 1.05rem; color: var(--text-soft); }
.session li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); margin-top: 11px; }

.includes li { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; font-weight: 600; font-size: 1.05rem; }
.includes li svg { width: 24px; height: 24px; flex: none; color: var(--blue); margin-top: 2px; }

.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; margin-top: 24px; font-size: 1.1rem; }
.callout svg { width: 30px; height: 30px; flex: none; color: var(--blue); }

/* ---------- Páginas de texto / gracias ---------- */
.page { padding: 48px 0 72px; }
.page__inner { max-width: 780px; margin: 0 auto; }
.page h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
.page h2 { font-size: 1.45rem; margin-top: 36px; }
.page p, .page li { font-size: 1.08rem; }
.page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.page li { margin-bottom: 8px; }

.thanks { min-height: 70vh; display: flex; align-items: center; padding: 48px 0; background: var(--bg-soft); }
.thanks__card { max-width: 660px; margin: 0 auto; text-align: center; background: #fff; border-radius: 20px; padding: 40px 24px; box-shadow: var(--shadow); }
.thanks__icon { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 50%; background: #e8f0fd; color: var(--blue); display: flex; align-items: center; justify-content: center; }
.thanks__icon svg { width: 44px; height: 44px; }
.thanks__when { background: var(--bg-soft); border-radius: 12px; padding: 16px; font-weight: 700; font-size: 1.15rem; margin: 20px 0; }
.thanks__tip { background: #fff8ef; border: 1px solid #f5d9b8; border-radius: 12px; padding: 14px 16px; font-size: 1rem; margin: 24px 0; }
.thanks__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.thanks__secondary { margin-top: 28px; font-size: 1rem; color: var(--text-muted); }
@media (min-width: 640px) { .thanks__card { padding: 48px; } }

/* Sobre José Luis */
.about-hero { display: grid; gap: 32px; align-items: center; padding: 48px 0; }
.about-hero img { width: 100%; max-width: 420px; margin: 0 auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.about-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
@media (min-width: 900px) { .about-hero { grid-template-columns: 420px 1fr; gap: 72px; padding: 72px 0; } }
.prose { max-width: 760px; }
.prose p { font-size: 1.15rem; color: var(--text-soft); }
.prose h2 { font-size: 1.6rem; margin-top: 32px; }

/* ---------- Libro ---------- */
.instructor__photo { position: relative; max-width: 420px; margin: 0 auto; }
img.instructor__book {
  position: absolute;
  right: -14px;
  bottom: -22px;
  width: 38%;
  max-width: 158px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 14px 26px rgba(14, 27, 46, 0.32));
}
@media (min-width: 900px) {
  img.instructor__book { right: -30px; bottom: -26px; max-width: 180px; }
}

.book-block { display: grid; gap: 32px; align-items: center; }
.book-block__img img {
  width: 100%; max-width: 300px; margin: 0 auto; height: auto;
  filter: drop-shadow(0 18px 36px rgba(14, 27, 46, 0.25));
}
@media (min-width: 900px) {
  .book-block { grid-template-columns: 340px 1fr; gap: 72px; }
  .book-block__img img { max-width: 340px; margin: 0; }
}
