/* ============================================================
   Método Plenitud — sistema de diseño (fiel al original)
   ============================================================ */

:root {
  --ink: #17131d;
  --ink-soft: #3d3646;
  --violet: #7c3aed;
  --magenta: #c026d3;
  --btn: #171219;
  --btn-hover: #2a2233;
  --card: #ffffff;
  --radius: 12px;
  --maxw: 900px;
  /* Fuente del sistema, igual que el original */
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(150deg, #fdeef5 0%, #f4ecfb 55%, #ebe6fb 100%);
  background-attachment: fixed;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  text-align: center;
  padding: 20px;
}
.site-header img { height: 140px; width: auto; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 50px 22px 70px;
  text-align: center;
}
.section { padding: 10px 0; }

/* ---------- Typography ---------- */
h1.hero {
  font-weight: 900;
  font-size: clamp(28px, 6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h2.sub {
  font-weight: 900;
  font-size: clamp(24px, 5vw, 44px);
  line-height: 1.14;
  margin: 34px 0 26px;
}
.lead {
  font-weight: 700;
  font-size: clamp(17px, 2.4vw, 22px);
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.lead-italic {
  font-style: italic;
  font-weight: 700;
  font-size: clamp(17px, 2.4vw, 23px);
  margin: 6px 0 30px;
}
.hl {
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- CTA button ---------- */
.cta {
  display: inline-block;
  background: var(--btn);
  color: #fff;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 21px);
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 46px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(23,18,25,.28);
  transition: transform .15s ease, background .2s ease;
}
.cta:hover { background: var(--btn-hover); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }

/* ---------- Video (VSL) — sin bordes ---------- */
.vsl {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 8px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(90,50,130,.22);
  background: #000;
}
.vsl .wistia_responsive_padding { border-radius: 14px; overflow: hidden; }
#vsl-cover {
  position: absolute; inset: 0; z-index: 5; cursor: pointer;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 22px;
}
#vsl-cover .tap {
  background: rgba(23,18,25,.82); color: #fff; font-weight: 700;
  font-size: 16px; padding: 12px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* ---------- Card / form wizard ---------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px rgba(90,50,130,.12);
  border: 1px solid #eee;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}
.card-body { padding: 26px 26px 6px; }
.q-label {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.4;
}
.q-label .req { color: var(--ink-soft); }
.field input, .field select {
  width: 100%;
  font-family: var(--font);
  font-size: 17px;
  padding: 14px 16px;
  border: 1px solid #d9d2e6;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
}
.field .err { display:none; color:#dc2626; font-size:14px; margin-top:8px; }
.field.invalid .err { display:block; }
.field.invalid input, .field.invalid select { border-color:#dc2626; }

.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 26px; border-top: 1px solid #eee; margin-top: 18px;
}
.nav-link {
  background: none; border: none; cursor: pointer;
  color: #2563eb; font-weight: 700; font-size: 17px; font-family: var(--font);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:disabled { opacity: 0; pointer-events: none; }
.progress { height: 4px; background: #eee; }
.progress > span { display:block; height:100%; background: linear-gradient(90deg,var(--violet),var(--magenta)); transition: width .25s; }

/* ---------- Divider + footer ---------- */
.divider { border: 0; border-top: 1px solid rgba(23,18,25,.12); max-width: 760px; margin: 46px auto 26px; }
.footer-links { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer-links a { color: var(--ink-soft); font-size: 15px; }
.disclaimer { max-width: 800px; margin: 0 auto; font-size: 13.5px; font-style: italic; color: #6f6579; line-height: 1.6; }

/* ---------- Calendar (dos columnas) ---------- */
.cal-cols { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cal-col { flex: 1 1 380px; max-width: 460px; }
.cal-col h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 10px; text-align: center;
}
.cal-col .who { color: var(--violet); }
.calendly-inline-widget {
  background:#fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 22px rgba(90,50,130,.12); min-width: 320px; height: 720px;
}
.ig-fallback {
  text-align: center; margin-top: 28px; font-size: 18px; font-weight: 600; color: var(--ink-soft);
}
.ig-fallback a { color: var(--violet); font-weight: 800; text-decoration: none; }
.ig-fallback a:hover { text-decoration: underline; }

/* ---------- Thank-you ---------- */
.checkmark {
  width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px; box-shadow: 0 16px 34px rgba(124,58,237,.3);
}
.checkmark svg { width: 46px; height: 46px; stroke: #fff; }

@media (max-width: 560px) {
  .site-header img { height: 96px; }
  .wrap { padding: 34px 16px 56px; }
  .card-body { padding: 22px 18px 4px; }
  .card-foot { padding: 14px 18px; }
  .cta { padding: 18px 30px; }
}
