/* ============================================================
   PRODUCTEX WORKSHOP LIVE — landing /workshop/
   Capa sobre styles.css; no modifica tokens globales.
   ============================================================ */

body.page-workshop-live {
  --wl-topbar-h: 60px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: #0a0a0a;
}

body.page-workshop-live.has-wl-sticky {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0));
}

@media (min-width: 768px) {
  body.page-workshop-live.has-wl-sticky {
    padding-bottom: 0;
  }
}

/* Topbar mínima: logo centrado + CTA derecha */
@media (min-width: 768px) {
  body.page-workshop-live {
    --wl-topbar-h: 68px;
  }
}

.wl-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wa-0p08);
}

html.theme-light .wl-topbar {
  background: rgba(245, 245, 244, 0.94);
}

.wl-topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--wl-topbar-h);
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .wl-topbar-inner {
    padding: 12px 48px;
  }
}

.wl-topbar-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  z-index: 1;
}

.wl-topbar-logo img {
  display: block;
  height: 1.15rem;
  width: auto;
  max-width: min(42vw, 160px);
}

body.page-workshop-live .wl-main {
  padding-top: calc(var(--wl-topbar-h) + env(safe-area-inset-top, 0px));
}

body.page-workshop-live [id] {
  scroll-margin-top: calc(var(--wl-topbar-h) + 12px + env(safe-area-inset-top, 0px));
}

/* ─── Secciones base ──────────────────────────────────────── */
.wl-main {
  overflow-x: hidden;
}

.wl-section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .wl-section {
    padding: 72px 0;
  }
}

.wl-section--tight {
  padding: 40px 0;
}

.wl-section--muted {
  background: var(--color-surface-mid);
}

.wl-section--dark {
  background: var(--color-surface);
  border-top: 1px solid var(--wa-0p08);
  border-bottom: 1px solid var(--wa-0p08);
}

.wl-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .wl-container {
    padding: 0 48px;
  }
}

.wl-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.55;
  margin: 0 0 12px;
}

.wl-h1 {
  font-family: var(--font-hero-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 16px;
}

.wl-h2 {
  font-family: var(--font-hero-display);
  font-size: clamp(1.45rem, 3.6vw, 2rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 14px;
}

.wl-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.82;
  max-width: 52ch;
  margin: 0 0 22px;
}

.wl-micro {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-ink);
  opacity: 0.55;
  margin: 14px 0 0;
}

.wl-promesa {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--wa-0p1);
  border-left: 3px solid var(--accent);
  background: var(--color-surface);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.88;
  max-width: 52ch;
}

/* ─── Hero (centrado + video grande abajo) ───────────────── */
.wl-hero {
  position: relative;
  padding: 32px 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .wl-hero {
    padding: 44px 0 0;
  }
}

@media (min-width: 1024px) {
  .wl-hero {
    padding: 52px 0 0;
  }
}

.wl-hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 70% at 50% -20%, rgba(221, 255, 1, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 85% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 10% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, #121212 0%, var(--color-bg) 38%, var(--color-bg) 100%);
}

html.theme-light .wl-hero-bg {
  background:
    radial-gradient(ellipse 120% 70% at 50% -25%, rgba(172, 198, 0, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 90% 55% at 90% 25%, rgba(20, 20, 20, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #ecece8 0%, var(--color-bg) 42%, var(--color-bg) 100%);
}

.wl-hero-top {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
}

@media (min-width: 768px) {
  .wl-hero-top {
    padding-bottom: 36px;
  }
}

.wl-hero-copy {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.wl-kicker--hero {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  font-size: 11px;
  opacity: 1;
  color: var(--color-ink);
  background: var(--wa-0p06);
  border: 1px solid var(--wa-0p12);
}

.wl-h1--hero {
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
  font-size: clamp(1.85rem, 6.2vw, 3.15rem);
  line-height: 1.08;
}

@media (min-width: 480px) {
  .wl-h1--hero {
    max-width: none;
  }
}

.wl-lead--hero {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.6;
}

.wl-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px auto 28px;
  max-width: 36rem;
  padding: 0;
}

@media (max-width: 479px) {
  .wl-hero-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 8px;
  }
}

.wl-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px 14px;
  border-radius: 12px;
  background: var(--color-surface);
  border: 1px solid var(--wa-0p1);
  box-shadow: var(--shadow-card);
}

.wl-hero-stat .wl-ico--stat {
  margin-bottom: 10px;
  color: var(--accent);
}

.wl-hero-stat-value {
  display: block;
  font-family: var(--font-hero-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.wl-hero-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.55;
}

.wl-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.wl-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--wa-0p12);
  background: var(--color-surface);
  color: var(--color-ink);
}

.wl-badges--hero {
  justify-content: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  gap: 8px 10px;
}

.wl-hero .wl-badge {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

html.theme-light .wl-hero .wl-badge {
  background: rgba(255, 255, 255, 0.72);
}

.wl-hero-ctas--center {
  justify-content: center;
}

.wl-micro--hero {
  margin-top: 18px;
}

.wl-promesa--hero {
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  text-align: left;
  max-width: 36rem;
}

.wl-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.65;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.wl-hero-scroll:hover {
  opacity: 1;
  border-bottom-color: var(--accent);
}

.wl-hero-scroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wl-hero-scroll-icon {
  font-size: 1.1em;
  line-height: 1;
  animation: wl-hero-bounce 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wl-hero-scroll-icon {
    animation: none;
  }
}

@keyframes wl-hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Video: ancho completo del viewport con márgenes suaves */
.wl-hero-video-zone {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8px 0 48px;
}

@media (min-width: 768px) {
  .wl-hero-video-zone {
    padding: 12px 0 56px;
  }
}

.wl-hero-video-inner {
  width: 100%;
  max-width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .wl-hero-video-inner {
    padding: 0 24px;
    max-width: min(1180px, calc(100vw - 48px));
  }
}

.wl-hero-media-frame {
  position: relative;
  padding: 2px;
  border-radius: clamp(16px, 3vw, 24px);
  background: linear-gradient(
    135deg,
    rgba(221, 255, 1, 0.45) 0%,
    rgba(255, 255, 255, 0.12) 38%,
    rgba(221, 255, 1, 0.18) 100%
  );
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

html.theme-light .wl-hero-media-frame {
  background: linear-gradient(
    135deg,
    rgba(172, 198, 0, 0.55) 0%,
    rgba(20, 20, 20, 0.12) 45%,
    rgba(172, 198, 0, 0.28) 100%
  );
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.06) inset;
}

.wl-hero-media {
  position: relative;
  border-radius: clamp(14px, 2.8vw, 22px);
  overflow: hidden;
  background: #070707;
  aspect-ratio: 16 / 9;
  min-height: clamp(200px, 48vw, 420px);
}

@media (min-width: 1024px) {
  .wl-hero-media {
    min-height: 440px;
    max-height: min(62vh, 560px);
  }
}

.wl-hero-media-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 42%,
    transparent 62%
  );
  mix-blend-mode: overlay;
}

.wl-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wl-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wl-hero-video--iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #070707;
}

.wl-hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  background:
    radial-gradient(ellipse 90% 85% at 50% 100%, rgba(221, 255, 1, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    linear-gradient(165deg, #151515 0%, #0a0a0a 55%, #050505 100%);
}

.wl-hero-play {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  background: linear-gradient(145deg, #eeff7a 0%, var(--accent) 55%, #c5e600 100%);
  box-shadow:
    0 12px 40px rgba(221, 255, 1, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

@media (max-width: 479px) {
  .wl-hero-play {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .wl-hero-play svg {
    width: 24px;
    height: 24px;
  }
}

.wl-hero-placeholder-title {
  font-size: clamp(15px, 3.5vw, 18px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  max-width: 22rem;
}

.wl-hero-placeholder-sub {
  font-size: clamp(13px, 3vw, 15px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 12px;
  max-width: 26rem;
}

.wl-hero-placeholder-hint {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  max-width: 24rem;
}

.wl-hero-video-caption {
  margin: 16px auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.58;
}

.wl-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wl-hero-ctas--center {
  margin-top: 22px;
}

@media (min-width: 480px) {
  .wl-hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.wl-hero-ctas .btn-primary {
  min-height: 48px;
  padding: 14px 22px;
  font-size: 15px;
}

.wl-hero-ctas .btn-nav {
  min-height: 48px;
  padding: 14px 22px;
  font-size: 15px;
  justify-content: center;
}

@media (max-width: 479px) {
  .wl-hero-ctas--center {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .wl-hero-ctas--center .btn-primary,
  .wl-hero-ctas--center .btn-nav {
    width: 100%;
  }
}

/* ─── Cards grid ──────────────────────────────────────────── */
.wl-grid-2 {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .wl-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.wl-grid-3 {
  display: grid;
  gap: 14px;
}

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

.wl-card {
  border-radius: 12px;
  padding: 18px 18px 16px;
  border: 1px solid var(--wa-0p1);
  background: var(--color-surface);
}

.wl-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-ink);
}

.wl-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.78;
  margin: 0;
}

.wl-strip {
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--wa-0p1);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--color-ink);
  background: var(--color-surface-mid);
}

/* ─── Listas check ────────────────────────────────────────── */
.wl-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.wl-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-ink);
  opacity: 0.9;
}

.wl-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.9;
}

.wl-checklist--icons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.wl-checklist--icons li::before {
  display: none;
}

.wl-li-ic {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--accent);
}

.wl-li-ic--soft {
  color: rgba(248, 113, 113, 0.95);
}

html.theme-light .wl-li-ic--soft {
  color: #dc2626;
}

.wl-checklist--icons li span {
  flex: 1;
  min-width: 0;
}

.wl-checklist--soft li {
  opacity: 0.78;
}

/* ─── Timeline encuentros ─────────────────────────────────── */
.wl-timeline {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .wl-timeline {
    gap: 22px;
  }
}

.wl-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--wa-0p1);
  background: var(--color-surface);
}

.wl-step-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wl-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--wa-0p06);
  border: 1px solid var(--wa-0p1);
}

.wl-step-icon .wl-ico {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.wl-step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  background: var(--color-ink);
  color: var(--color-bg);
}

html.theme-light .wl-step-num {
  background: var(--color-on-light);
  color: var(--color-bg);
}

.wl-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-ink);
}

.wl-step-desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0 0 12px;
  color: var(--color-ink);
}

.wl-topics {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.72;
}

.wl-topics li {
  margin-bottom: 4px;
}

/* ─── Beneficio destacado ─────────────────────────────────── */
.wl-highlight {
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid var(--wa-0p15);
  background: linear-gradient(165deg, var(--color-surface) 0%, var(--color-surface-mid) 100%);
  text-align: center;
}

@media (min-width: 640px) {
  .wl-highlight {
    padding: 36px 40px;
  }
}

.wl-highlight .wl-h2 {
  margin-bottom: 12px;
}

.wl-highlight-lead {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--color-ink);
}

.wl-highlight p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.78;
  margin: 0 auto 22px;
  max-width: 56ch;
  color: var(--color-ink);
}

/* ─── Pricing ─────────────────────────────────────────────── */
.wl-section--pricing {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
}

@media (min-width: 768px) {
  .wl-section--pricing {
    padding: 64px 0 88px;
  }
}

.wl-pricing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 40%, rgba(var(--accent-rgb), 0.05) 0%, transparent 50%),
    var(--color-surface-mid);
}

.wl-pricing-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--wa-0p08);
}

.wl-pricing-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 28px;
}

.wl-section-pill--pricing {
  margin-bottom: 14px;
}

.wl-pricing-section-title {
  margin: 0;
  font-family: var(--font-hero-display);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-pricing-card {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 36px 22px 28px;
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(10, 10, 9, 0.94) 28%,
    rgba(6, 6, 5, 0.98) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(var(--accent-rgb), 0.08);
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .wl-pricing-card {
    max-width: 520px;
    padding: 40px 32px 32px;
  }
}

html.theme-light .wl-pricing-card {
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 248, 246, 0.98) 100%
  );
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04) inset,
    0 24px 56px rgba(0, 0, 0, 0.1),
    0 0 60px rgba(var(--accent-rgb), 0.06);
}

.wl-pricing-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 20%,
    var(--accent) 80%,
    transparent 100%
  );
  opacity: 0.9;
}

.wl-pricing-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
}

html.theme-light .wl-pricing-ribbon {
  color: #141414;
}

.wl-pricing-card-head {
  margin-bottom: 28px;
  padding-right: 72px;
  text-align: left;
}

@media (min-width: 480px) {
  .wl-pricing-card-head {
    padding-right: 88px;
    text-align: center;
    padding-right: 0;
  }
}

.wl-pricing-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
  opacity: 0.9;
}

.wl-pricing-title {
  font-family: var(--font-hero-display);
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-pricing-price-block {
  margin-bottom: 28px;
  padding: 24px 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--wa-0p1);
  background: rgba(0, 0, 0, 0.35);
}

html.theme-light .wl-pricing-price-block {
  background: rgba(0, 0, 0, 0.04);
}

.wl-pricing-price-main {
  margin-bottom: 16px;
}

.wl-pricing-currency {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.45;
  margin-bottom: 4px;
}

.wl-price {
  margin: 0;
  font-family: var(--font-hero-display);
  font-size: clamp(2.75rem, 12vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-ink);
}

.wl-price-symbol {
  color: var(--accent);
  margin-right: 2px;
}

.wl-pricing-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
}

.wl-pricing-callout-icon {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.wl-pricing-callout-icon .wl-ico {
  width: 20px;
  height: 20px;
}

.wl-pricing-callout-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.wl-pricing-callout-text strong {
  font-weight: 700;
}

.wl-pricing-callout--cuotas {
  margin: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  background: rgba(var(--accent-rgb), 0.06);
}

.wl-pricing-callout--cuotas .wl-pricing-callout-icon {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
}

.wl-pricing-callout--cuotas .wl-pricing-callout-text {
  color: var(--color-ink);
  opacity: 0.85;
}

.wl-pricing-callout--cuotas .wl-pricing-callout-text strong {
  color: var(--accent);
}

html.theme-light .wl-pricing-callout--cuotas {
  background: rgba(var(--accent-rgb), 0.1);
}

.wl-pricing-includes {
  margin: 0 0 20px;
  padding: 20px 18px;
  border-radius: 14px;
  border: 1px solid var(--wa-0p08);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

html.theme-light .wl-pricing-includes {
  background: rgba(0, 0, 0, 0.02);
}

.wl-pricing-includes-title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.45;
  text-align: center;
}

.wl-pricing-cupos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
  border: 1px solid var(--wa-0p1);
  background: rgba(255, 255, 255, 0.03);
}

.wl-pricing-cupos .wl-ico {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.wl-pricing-callout--guarantee {
  margin-bottom: 22px;
  border: 1px solid rgba(94, 233, 168, 0.4);
  background: linear-gradient(
    102deg,
    rgba(14, 38, 30, 0.9) 0%,
    rgba(18, 48, 36, 0.95) 100%
  );
  box-shadow: 0 6px 24px rgba(72, 200, 140, 0.1);
}

.wl-pricing-callout--guarantee .wl-pricing-callout-icon {
  color: #6ee7b7;
  background: rgba(94, 233, 168, 0.12);
  border: 1px solid rgba(94, 233, 168, 0.25);
}

.wl-pricing-callout--guarantee .wl-pricing-callout-text {
  color: #a7f3d0;
  font-size: 12px;
  line-height: 1.5;
}

.wl-pricing-callout--guarantee .wl-pricing-callout-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d1fae5;
}

html.theme-light .wl-pricing-callout--guarantee {
  border-color: rgba(22, 120, 72, 0.35);
  background: linear-gradient(102deg, #ecfdf5 0%, #e6f7ed 100%);
}

html.theme-light .wl-pricing-callout--guarantee .wl-pricing-callout-icon {
  color: #047857;
  background: rgba(22, 120, 72, 0.1);
  border-color: rgba(22, 120, 72, 0.2);
}

html.theme-light .wl-pricing-callout--guarantee .wl-pricing-callout-text {
  color: #14532d;
}

html.theme-light .wl-pricing-callout--guarantee .wl-pricing-callout-text strong {
  color: #064e3b;
}

.wl-pricing-ctas {
  margin-bottom: 12px;
}

.wl-btn-enroll--pricing {
  display: flex;
  width: 100%;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 650;
  border-radius: 14px;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.25),
    0 12px 32px rgba(var(--accent-rgb), 0.25);
}

.wl-btn-enroll--pricing:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.wl-pricing-footnote {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-ink);
  opacity: 0.42;
}

/* ─── Metodología ─────────────────────────────────────────── */
.wl-pill-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .wl-pill-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wl-pill {
  text-align: center;
  padding: 16px 12px;
  border-radius: 12px;
  border: 1px solid var(--wa-0p1);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-surface);
}

/* ─── Founder / video block ───────────────────────────────── */
.wl-media-block {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--wa-0p1);
  background: #0a0a0a;
  min-height: 200px;
  margin-top: 20px;
}

.wl-media-block video {
  width: 100%;
  display: block;
}

.wl-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  padding: 32px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.45;
}

.wl-media-placeholder .wl-ico {
  color: rgba(255, 255, 255, 0.45);
}

.wl-media-placeholder p {
  margin: 0;
  max-width: 280px;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.wl-faq {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.wl-faq details {
  border-radius: 12px;
  border: 1px solid var(--wa-0p1);
  background: var(--color-surface);
  overflow: hidden;
}

.wl-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  position: relative;
  padding-right: 40px;
}

.wl-faq summary::-webkit-details-marker {
  display: none;
}

.wl-faq summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  opacity: 0.45;
}

.wl-faq details[open] summary::after {
  content: "−";
}

.wl-faq .wl-faq-a {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.78;
}

/* ─── Formulario lead ─────────────────────────────────────── */
.wl-form-wrap {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid var(--wa-0p1);
  background: var(--color-surface);
}

.wl-form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-ink);
}

.wl-form-lead {
  font-size: 14px;
  opacity: 0.75;
  margin: 0 0 20px;
  line-height: 1.45;
  color: var(--color-ink);
}

.wl-form-grid {
  display: grid;
  gap: 14px;
}

.wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wl-field span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink);
  opacity: 0.85;
}

.wl-field input,
.wl-field select,
.wl-field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--wa-0p15);
  background: var(--color-bg);
  color: var(--color-ink);
}

.wl-field textarea {
  min-height: 88px;
  resize: vertical;
}

.wl-form-actions {
  margin-top: 18px;
}

.wl-form-actions .btn-primary {
  width: 100%;
  min-height: 50px;
  font-size: 16px;
}

.wl-form-note {
  font-size: 12px;
  opacity: 0.55;
  margin: 12px 0 0;
  line-height: 1.4;
  color: var(--color-ink);
}

.wl-form-msg {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}

.wl-form-msg.is-error {
  color: #f87171;
}

.wl-form-msg.is-ok {
  color: #86efac;
}

/* ─── CTA final ───────────────────────────────────────────── */
.wl-cta-final {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
}

@media (min-width: 768px) {
  .wl-cta-final {
    padding: 64px 0 88px;
  }
}

.wl-cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(var(--accent-rgb), 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%),
    var(--color-surface-mid);
}

.wl-cta-final-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--wa-0p08);
}

.wl-cta-final-panel {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 22px 32px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: linear-gradient(
    168deg,
    rgba(var(--accent-rgb), 0.1) 0%,
    rgba(12, 12, 11, 0.94) 32%,
    rgba(8, 8, 7, 0.98) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 28px 72px rgba(0, 0, 0, 0.45),
    0 0 120px rgba(var(--accent-rgb), 0.1);
}

@media (min-width: 768px) {
  .wl-cta-final-panel {
    padding: 44px 40px 36px;
  }
}

html.theme-light .wl-cta-final-panel {
  background: linear-gradient(
    168deg,
    rgba(var(--accent-rgb), 0.14) 0%,
    rgba(255, 255, 255, 0.98) 45%,
    rgba(248, 248, 246, 0.98) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04) inset,
    0 24px 56px rgba(0, 0, 0, 0.1),
    0 0 80px rgba(var(--accent-rgb), 0.08);
}

.wl-cta-final-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.85;
}

.wl-cta-final-pill {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.1);
}

.wl-cta-final-title {
  margin: 0 0 14px;
  font-family: var(--font-hero-display);
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-cta-final-br {
  display: none;
}

@media (min-width: 520px) {
  .wl-cta-final-br {
    display: block;
  }
}

.wl-cta-final-highlight {
  color: var(--accent);
}

.wl-cta-final-lead {
  margin: 0 auto 28px;
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.72;
}

.wl-cta-final-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .wl-cta-final-points {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.wl-cta-final-points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid var(--wa-0p1);
  background: rgba(255, 255, 255, 0.03);
}

html.theme-light .wl-cta-final-points li {
  background: rgba(0, 0, 0, 0.03);
}

.wl-cta-final-point-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
}

.wl-cta-final-point-ic .wl-ico {
  width: 18px;
  height: 18px;
}

.wl-cta-final-point-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-ink);
  opacity: 0.85;
}

.wl-cta-final-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wl-btn-enroll--cta-final {
  display: inline-flex;
  width: 100%;
  max-width: 320px;
  justify-content: center;
  min-height: 58px;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 650;
  border-radius: 14px;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.28),
    0 14px 40px rgba(var(--accent-rgb), 0.3);
}

.wl-btn-enroll--cta-final:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.wl-cta-final-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.5;
}

.wl-cta-final-trust-sep {
  opacity: 0.35;
  user-select: none;
}

/* ─── Sticky mobile CTA ───────────────────────────────────── */
.wl-sticky-mobile {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
  gap: 10px;
  background: var(--color-nav-scrolled);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--wa-0p12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .wl-sticky-mobile {
    display: none;
  }
}

.wl-sticky-mobile .btn-primary {
  flex: 1;
  min-height: 48px;
  font-size: 15px;
}

.wl-sticky-mobile .wl-sticky-wa {
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--wa-0p2);
  background: var(--color-surface);
  color: var(--color-ink);
  text-decoration: none;
}

.wl-sticky-mobile .wl-sticky-wa svg {
  width: 22px;
  height: 22px;
}

/* ─── Footer landing ──────────────────────────────────────── */
.wl-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--wa-0p08);
  background: var(--color-footer);
}

.wl-footer-inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.wl-footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.wl-footer-logo:hover {
  opacity: 1;
}

.wl-footer-logo img {
  display: block;
  height: 1.35rem;
  width: auto;
  max-width: min(52vw, 180px);
}

.wl-footer-about {
  margin: 0 auto 22px;
  max-width: 34rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink);
  opacity: 0.68;
}

.wl-footer-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--color-ink);
}

.wl-footer-sub {
  font-size: 13px;
  opacity: 0.5;
  margin: 0 0 20px;
  color: var(--color-ink);
}

.wl-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
}

.wl-footer-links a {
  font-size: 14px;
  color: var(--color-ink);
  opacity: 0.78;
  text-decoration: none;
}

.wl-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Toast in-page */
.wl-toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%) translateY(12px);
  z-index: 80;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--color-on-light);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: min(360px, calc(100vw - 32px));
  text-align: center;
}

html.theme-light .wl-toast {
  background: #141414;
}

.wl-toast.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 768px) {
  .wl-toast {
    bottom: 32px;
  }
}

/* ─── Sprite + iconos inline ──────────────────────────────── */
.wl-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.wl-ico {
  display: block;
  width: 22px;
  height: 22px;
}

.wl-ico--lg {
  width: 28px;
  height: 28px;
}

.wl-ico--xl {
  width: 42px;
  height: 42px;
}

.wl-ico--h2 {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.wl-ico--danger {
  color: rgba(248, 113, 113, 0.95);
}

/* ─── Trusted (debajo del hero) ───────────────────────────── */
.wl-trusted {
  padding: 36px 0 40px;
  background: var(--trusted-bg);
  border-top: 1px solid var(--wa-0p08);
  border-bottom: 1px solid var(--wa-0p08);
}

.wl-trusted-kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--trusted-text);
  opacity: 0.72;
  margin: 0 0 20px;
}

.wl-trusted-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 639px) {
  .wl-trusted-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    padding: 4px 0 12px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .wl-trusted-logo {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
}

.wl-trusted-logo img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.92;
  filter: grayscale(0.15);
}

.wl-trusted-row--brands {
  gap: clamp(16px, 3vw, 28px);
}

.wl-trusted-row--brands .wl-trusted-logo img {
  height: 32px;
  max-width: 120px;
  filter: none;
}

.wl-trusted-sub {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--trusted-text);
  opacity: 0.58;
  margin: 28px 0 16px;
}

/* ─── Títulos con icono ───────────────────────────────────── */
.wl-h2-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.wl-h2-row .wl-h2 {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.wl-h2-row--center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wl-h2-row--center .wl-h2 {
  flex: 0 1 auto;
  text-align: center;
}

@media (max-width: 479px) {
  .wl-h2-row {
    flex-wrap: wrap;
  }

  .wl-h2-row .wl-ico--h2 {
    margin-top: 0;
  }
}

/* ─── Qué incluye el workshop (grid) ──────────────────────── */
.wl-section--includes {
  padding: 56px 0 64px;
  background: var(--color-bg);
  border-top: 1px solid var(--wa-0p08);
  border-bottom: 1px solid var(--wa-0p08);
}

@media (min-width: 768px) {
  .wl-section--includes {
    padding: 64px 0 72px;
  }
}

.wl-includes-head {
  max-width: 36rem;
  margin: 0 auto 36px;
  text-align: center;
}

.wl-includes-title {
  margin: 0 0 12px;
  font-family: var(--font-hero-display);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-includes-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.65;
}

.wl-includes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .wl-includes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .wl-includes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.wl-include-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 26px;
  border-radius: 18px;
  border: 1px solid var(--wa-0p1);
  background: var(--color-surface);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

html.theme-light .wl-include-card {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (hover: hover) {
  .wl-include-card:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  html.theme-light .wl-include-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  }
}

.wl-include-card--highlight {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: linear-gradient(
    165deg,
    rgba(var(--accent-rgb), 0.08) 0%,
    var(--color-surface) 45%
  );
}

html.theme-light .wl-include-card--highlight {
  background: linear-gradient(
    165deg,
    rgba(var(--accent-rgb), 0.12) 0%,
    #fff 50%
  );
}

.wl-include-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.12);
}

.wl-include-icon .wl-ico {
  width: 24px;
  height: 24px;
}

.wl-include-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.wl-include-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.58;
  max-width: 22rem;
}

/* ─── Cards con icono / dolor ─────────────────────────────── */
.wl-card--icon {
  padding-top: 18px;
}

.wl-card-icon {
  margin-bottom: 10px;
}

.wl-card-icon .wl-ico {
  color: var(--accent);
}

.wl-card--icon .wl-card-title {
  margin-top: 0;
}

/* ─── Sección problemas (pain) ────────────────────────────── */
.wl-section--problems {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}

@media (min-width: 768px) {
  .wl-section--problems {
    padding: 64px 0 72px;
  }
}

.wl-problems-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(var(--accent-rgb), 0.07) 0%, transparent 55%),
    var(--color-bg);
}

.wl-problems-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wa-0p12), transparent);
}

.wl-problems-head {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto 32px;
  text-align: center;
}

.wl-problems-title {
  margin: 0 0 16px;
  font-family: var(--font-hero-display);
  font-size: clamp(1.55rem, 4.8vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-problems-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink);
  opacity: 0.72;
}

.wl-problems-lead strong {
  color: var(--color-ink);
  opacity: 1;
  font-weight: 600;
}

.wl-problems-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .wl-problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .wl-problems-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.wl-problem-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 20px 18px 18px;
  border-radius: 16px;
  border: 1px solid var(--wa-0p1);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

html.theme-light .wl-problem-card {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (hover: hover) {
  .wl-problem-card:hover {
    border-color: rgba(var(--accent-rgb), 0.28);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }

  html.theme-light .wl-problem-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
}

.wl-problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.wl-problem-icon .wl-ico {
  width: 22px;
  height: 22px;
}

.wl-problem-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.wl-problem-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.58;
}

.wl-problems-solution {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 36rem;
  margin: 0 auto;
  padding: 20px 20px 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  background: linear-gradient(
    105deg,
    rgba(var(--accent-rgb), 0.12) 0%,
    rgba(var(--accent-rgb), 0.04) 100%
  );
  text-align: left;
}

@media (min-width: 640px) {
  .wl-problems-solution {
    align-items: center;
    padding: 22px 24px;
  }
}

.wl-problems-solution-icon {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #0a0a0a;
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.35);
}

html.theme-light .wl-problems-solution-icon {
  color: #141414;
}

.wl-problems-solution-icon .wl-ico {
  width: 20px;
  height: 20px;
}

.wl-problems-solution-text {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.88;
}

.wl-problems-solution-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* ─── Antes y después ─────────────────────────────────────── */
.wl-section--ba {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}

@media (min-width: 768px) {
  .wl-section--ba {
    padding: 64px 0 72px;
  }
}

.wl-ba-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 113, 113, 0.04) 0%, transparent 42%),
    linear-gradient(270deg, rgba(var(--accent-rgb), 0.08) 0%, transparent 42%),
    var(--color-bg);
}

.wl-ba-head {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto 32px;
  text-align: center;
}

.wl-ba-title {
  margin: 0 0 12px;
  font-family: var(--font-hero-display);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-ba-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.65;
}

.wl-ba-board {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.wl-ba-col-labels {
  display: none;
}

@media (min-width: 768px) {
  .wl-ba-col-labels {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 4px;
  }
}

.wl-ba-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.wl-ba-label--before {
  color: #f87171;
  opacity: 0.9;
}

.wl-ba-label--after {
  color: var(--accent);
}

.wl-ba-label-spacer {
  display: block;
}

.wl-ba-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-ba-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

@media (min-width: 768px) {
  .wl-ba-row {
    grid-template-columns: 1fr 48px 1fr;
    align-items: stretch;
    gap: 12px;
  }
}

.wl-ba-side {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 15px;
  border-radius: 14px;
  text-align: left;
  min-height: 100%;
}

.wl-ba-side--before {
  border: 1px solid rgba(248, 113, 113, 0.22);
  background: linear-gradient(
    135deg,
    rgba(248, 113, 113, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

html.theme-light .wl-ba-side--before {
  background: linear-gradient(135deg, rgba(254, 226, 226, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.wl-ba-side--after {
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.12) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 0 0 32px rgba(var(--accent-rgb), 0.06);
}

html.theme-light .wl-ba-side--after {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14) 0%, #fff 100%);
}

.wl-ba-side-icon {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 8px;
}

.wl-ba-side--before .wl-ba-side-icon {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.wl-ba-side--after .wl-ba-side-icon {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
}

.wl-ba-side-icon .wl-ico {
  width: 16px;
  height: 16px;
}

.wl-ba-text {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink);
}

.wl-ba-side--before .wl-ba-text {
  opacity: 0.72;
}

.wl-ba-side--after .wl-ba-text {
  opacity: 0.92;
  font-weight: 500;
}

.wl-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.wl-ba-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.35;
  background: var(--color-surface-mid);
  border: 1px solid var(--wa-0p1);
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .wl-ba-arrow {
    padding: 0;
  }

  .wl-ba-arrow span {
    transform: none;
    opacity: 0.55;
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.2);
  }
}

@media (max-width: 767px) {
  .wl-ba-side--before::before,
  .wl-ba-side--after::before {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .wl-ba-side--before::before {
    content: "Antes";
    color: #f87171;
  }

  .wl-ba-side--after::before {
    content: "Después";
    color: var(--accent);
  }

  .wl-ba-side {
    flex-wrap: wrap;
  }
}

.wl-ba-foot {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 28px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.72;
}

.wl-ba-foot strong {
  color: var(--accent);
  font-weight: 700;
}

.wl-strip--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wl-ico--strip {
  flex-shrink: 0;
  color: var(--accent);
}

/* ─── Highlight icon ──────────────────────────────────────── */
.wl-highlight-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.wl-highlight-icon .wl-ico {
  color: var(--accent);
}

/* ─── Pricing list con checks ─────────────────────────────── */
.wl-pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wl-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-ink);
  opacity: 0.88;
}

.wl-pricing-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 520px) {
  .wl-pricing-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .wl-pricing-list li {
    margin-bottom: 0;
  }

  .wl-pricing-list-item--highlight {
    grid-column: 1 / -1;
    padding-top: 6px;
    margin-top: 4px;
    border-top: 1px solid var(--wa-0p08);
  }
}

.wl-pricing-list-item--highlight {
  font-weight: 600;
  opacity: 1;
}

.wl-pricing-ic {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
}

/* ─── Pills metodología ───────────────────────────────────── */
.wl-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wl-pill-ic {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.wl-ico--form-title {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.wl-field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink);
  opacity: 0.88;
}

.wl-ico--field {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.75;
  color: var(--accent);
}

/* ============================================================
   VSL FUNNEL — estructura tipo landing de captura (hero → logos → video → beneficios)
   ============================================================ */

html.theme-light body.page-workshop-live {
  background: var(--color-bg);
}

/* CTA pill blanco (estilo enroll) */
.wl-btn-wa-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.wl-btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wl-btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.wl-btn-enroll:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: #0a0a0a;
}

.wl-btn-enroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wl-btn-enroll--nav {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 12px;
}

@media (min-width: 480px) {
  .wl-btn-enroll--nav {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .wl-btn-enroll--nav {
    padding: 11px 20px;
    font-size: 14px;
  }
}

.wl-btn-arrow {
  font-size: 1.05em;
  line-height: 1;
}

html.theme-light .wl-btn-enroll {
  background: #141414;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

html.theme-light .wl-btn-enroll:hover {
  background: #2a2a2a;
  color: #fff;
}

/* Bloque funnel superior */
.wl-vsl-funnel {
  position: relative;
  padding: 72px 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .wl-vsl-funnel {
    padding: 92px 0 0;
  }
}

.wl-vsl-funnel .wl-hero-bg {
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(221, 255, 1, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 50% 35% at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 55%, var(--color-bg) 100%);
}

html.theme-light .wl-vsl-funnel .wl-hero-bg {
  background:
    radial-gradient(ellipse 90% 55% at 50% -20%, rgba(172, 198, 0, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, #ecece8 0%, var(--color-bg) 70%);
}

.wl-vsl-funnel__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 0 4px;
}

.wl-vsl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--wa-0p12);
}

.wl-ico--pill {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.wl-vsl-title {
  margin: 0 0 18px;
  font-family: var(--font-hero-display);
  font-size: clamp(2rem, 6.5vw, 3.35rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.wl-vsl-title-highlight {
  display: inline;
  padding: 0.05em 0.18em 0.08em;
  border-radius: 8px;
  background: var(--accent);
  color: #0a0a0a;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.wl-vsl-title-br {
  display: block;
}

.wl-vsl-subtitle {
  margin: 0 auto 24px;
  max-width: 45rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  opacity: 0.72;
}

.wl-vsl-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .wl-vsl-action {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 32px;
  }
}

/* Social proof */
.wl-vsl-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wl-vsl-avatars {
  display: flex;
  align-items: center;
}

.wl-vsl-avatar {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
  object-fit: cover;
  object-position: center;
  background: #2a2a2a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.wl-vsl-avatar:first-child {
  margin-left: 0;
}

html.theme-light .wl-vsl-avatar {
  border-color: var(--color-bg);
}

.wl-vsl-proof-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.wl-vsl-proof-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.2;
}

.wl-vsl-stars {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1;
}

.wl-vsl-proof-label {
  font-size: 11px;
  color: var(--color-ink);
  opacity: 0.55;
  line-height: 1.3;
}

/* Trusted dentro del funnel */
.wl-vsl-trusted-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .wl-vsl-trusted-wrap {
    margin-bottom: 32px;
  }
}

.wl-vsl-trusted-wrap .wl-trusted-kicker {
  margin: 0 auto 16px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
}

.wl-trusted-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.wl-trusted-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  animation: marqueeScrollLeft 38s linear infinite;
}

.wl-vsl-trusted-wrap .wl-trusted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
}

.wl-vsl-trusted-wrap .wl-trusted-logo img {
  display: block;
  width: 100px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.wl-vsl-trusted-wrap .wl-trusted-logo--4vx {
  width: 90px;
}

.wl-vsl-trusted-wrap .wl-trusted-logo--4vx img {
  width: 90px;
}

html.theme-light .wl-vsl-trusted-wrap .wl-trusted-kicker {
  color: #141414;
}

html.theme-light .wl-vsl-trusted-wrap .wl-trusted-logo img {
  filter: brightness(0);
  opacity: 0.75;
}

/* Video VSL */
.wl-vsl-video-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 28px;
}

@media (min-width: 768px) {
  .wl-vsl-video-wrap {
    padding-bottom: 36px;
  }
}

.wl-vsl-watch {
  margin: 0 auto 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  opacity: 0.65;
}

.wl-hero-video-zone--vsl {
  padding-bottom: 0;
}

.wl-hero-video-zone--vsl .wl-hero-video-inner {
  max-width: 920px;
  margin: 0 auto;
}

.wl-hero-video-zone--vsl .wl-hero-media-frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 80px rgba(221, 255, 1, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

.wl-hero-video-zone--vsl .wl-hero-media-shine {
  opacity: 0.9;
}

/* Stats rápidos bajo el video */
.wl-vsl-quick-wrap {
  padding: 0 20px 44px;
}

@media (min-width: 768px) {
  .wl-vsl-quick-wrap {
    padding-bottom: 52px;
  }
}

.wl-vsl-quick {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 28rem;
  border-radius: 14px;
  border: 1px solid var(--wa-0p1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

html.theme-light .wl-vsl-quick {
  background: rgba(0, 0, 0, 0.03);
}

.wl-vsl-quick-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 14px 8px;
  text-align: center;
}

.wl-vsl-quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: var(--wa-0p12);
}

.wl-vsl-quick-val {
  font-family: var(--font-hero-display), system-ui, sans-serif;
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.wl-vsl-quick-lbl {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-ink);
  opacity: 0.55;
}

/* Sección beneficios (3 cards) */
.wl-vsl-benefits {
  padding: 48px 0 64px;
  background: var(--color-bg);
  border-top: 1px solid var(--wa-0p08);
}

@media (min-width: 768px) {
  .wl-vsl-benefits {
    padding: 56px 0 72px;
  }
}

.wl-section-pill {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.65;
  background: var(--wa-0p06);
  border: 1px solid var(--wa-0p1);
}

.wl-vsl-benefits-title {
  margin: 0 auto 14px;
  max-width: 20ch;
  text-align: center;
  font-family: var(--font-hero-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

@media (min-width: 640px) {
  .wl-vsl-benefits-title {
    max-width: none;
  }
}

.wl-vsl-benefits-lead {
  margin: 0 auto 36px;
  max-width: 42rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.75;
}

.wl-vsl-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .wl-vsl-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.wl-vsl-benefit-card {
  padding: 24px 22px 26px;
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid var(--wa-0p1);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.wl-vsl-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--wa-0p06);
  border: 1px solid var(--wa-0p1);
  color: var(--accent);
}

.wl-vsl-benefit-icon .wl-ico {
  width: 22px;
  height: 22px;
}

.wl-vsl-benefit-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.25;
}

.wl-vsl-benefit-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.72;
}

.wl-strip--center {
  justify-content: center;
  text-align: center;
}

/* ─── Exit intent (descuento 15%) ─────────────────────────── */
body.wl-exit-open {
  overflow: hidden;
}

.wl-exit-modal[hidden] {
  display: none !important;
}

.wl-exit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.wl-exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wl-exit-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 32px 28px 26px;
  border-radius: 18px;
  border: 1px solid var(--accent);
  background: linear-gradient(165deg, rgba(45, 49, 27, 0.98) 0%, rgba(14, 14, 12, 0.99) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
}

html.theme-light .wl-exit-dialog {
  background: linear-gradient(165deg, #f5f5f0 0%, #fff 100%);
}

.wl-exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

html.theme-light .wl-exit-close {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.55);
}

.wl-exit-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  background: var(--accent);
}

.wl-exit-title {
  margin: 0 0 10px;
  font-family: var(--font-hero-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

html.theme-light .wl-exit-title {
  color: #141414;
}

.wl-exit-lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

html.theme-light .wl-exit-lead {
  color: rgba(20, 20, 20, 0.78);
}

.wl-exit-lead strong {
  color: var(--accent);
}

.wl-exit-form {
  text-align: left;
}

.wl-exit-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

html.theme-light .wl-exit-label {
  color: rgba(20, 20, 20, 0.55);
}

.wl-exit-input {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--wa-0p15);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 15px;
  outline: none;
}

html.theme-light .wl-exit-input {
  background: #fff;
  color: #141414;
}

.wl-exit-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(221, 255, 1, 0.2);
}

.wl-exit-submit {
  width: 100%;
}

.wl-exit-msg {
  margin: 12px 0 0;
  min-height: 1.2em;
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.wl-exit-msg.is-ok {
  color: var(--accent);
}

.wl-exit-msg.is-error {
  color: #f87171;
}

/* ─── Quiénes somos (Productex) ───────────────────────────── */
.wl-about {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .wl-about {
    padding: 88px 0 96px;
  }
}

.wl-about-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 40%, rgba(221, 255, 1, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 45%, var(--color-bg) 100%);
}

html.theme-light .wl-about-bg {
  background:
    radial-gradient(ellipse 70% 50% at 0% 35%, rgba(172, 198, 0, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #ecece8 0%, var(--color-bg) 100%);
}

.wl-about .wl-container {
  position: relative;
  z-index: 1;
}

.wl-about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .wl-about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 48px 56px;
    align-items: center;
  }
}

.wl-section-pill--about {
  margin: 0 0 14px;
}

.wl-about-title {
  margin: 0 0 18px;
  font-family: var(--font-hero-display);
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  max-width: 22ch;
}

@media (min-width: 1024px) {
  .wl-about-title {
    max-width: none;
  }
}

.wl-about-lead {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-ink);
  opacity: 0.9;
  max-width: 42rem;
}

.wl-about-text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-ink);
  opacity: 0.72;
  max-width: 42rem;
}

.wl-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

@media (max-width: 479px) {
  .wl-about-stats {
    grid-template-columns: 1fr;
  }
}

.wl-about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--wa-0p1);
}

html.theme-light .wl-about-stat {
  background: rgba(255, 255, 255, 0.65);
}

.wl-about-stat-val {
  font-family: var(--font-hero-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.wl-about-stat-val--flag {
  font-family: inherit;
  font-size: 1.75rem;
  line-height: 1.1;
}

.wl-about-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--color-ink);
  opacity: 0.55;
}

.wl-about-note {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  background: rgba(221, 255, 1, 0.06);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.82;
  max-width: 42rem;
}

.wl-about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.wl-about-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.65;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wl-about-link:hover {
  opacity: 1;
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.wl-about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.wl-about-card--hero {
  grid-column: 1 / -1;
}

.wl-about-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--wa-0p1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wl-about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(221, 255, 1, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), 0 0 32px rgba(221, 255, 1, 0.06);
}

html.theme-light .wl-about-card {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.wl-about-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #141414;
}

.wl-about-card--hero .wl-about-card-img {
  aspect-ratio: 21 / 9;
}

@media (min-width: 640px) {
  .wl-about-card--hero .wl-about-card-img {
    aspect-ratio: 2.2 / 1;
  }
}

.wl-about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.wl-about-card:hover .wl-about-card-img img {
  transform: scale(1.03);
}

.wl-about-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.wl-about-card-body {
  padding: 14px 16px 16px;
}

.wl-about-card--hero .wl-about-card-body {
  padding: 16px 18px 18px;
}

.wl-about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(221, 255, 1, 0.1);
  border: 1px solid rgba(221, 255, 1, 0.22);
  color: var(--accent);
}

.wl-about-card-icon .wl-ico {
  width: 18px;
  height: 18px;
}

.wl-about-card-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.25;
}

.wl-about-card-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink);
  opacity: 0.68;
}

.wl-about-process {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 6px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--wa-0p08);
}

.wl-about-process-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.75;
}

.wl-about-process-step .wl-ico {
  width: 16px;
  height: 16px;
  color: var(--accent);
  opacity: 0.9;
}

.wl-about-process-step--accent {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  opacity: 1;
}

.wl-about-process-step--accent .wl-ico {
  color: #0a0a0a;
  opacity: 1;
}

.wl-about-process-arrow {
  font-size: 12px;
  opacity: 0.35;
  color: var(--color-ink);
}

@media (max-width: 639px) {
  .wl-about-process-arrow {
    display: none;
  }

  .wl-about-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .wl-about-process-step {
    justify-content: center;
  }
}

.wl-about-clients {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--wa-0p08);
  text-align: center;
}

.wl-about-clients-kicker {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.5;
}

.wl-about-clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.wl-about-clients-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.wl-about-clients-logos img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.92;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.wl-about-clients-logos li:hover img {
  opacity: 1;
}

.wl-about-clients-logo--4vx img {
  max-width: 100px;
  height: 32px;
}

html.theme-light .wl-about-clients-logos img {
  filter: brightness(0);
  opacity: 0.75;
}

html.theme-light .wl-about-clients-logos li:hover img {
  opacity: 0.9;
}

/* ─── Fechas, contador y encuentros ───────────────────────── */
.wl-section--dates {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}

@media (min-width: 768px) {
  .wl-section--dates {
    padding: 72px 0 80px;
  }
}

.wl-dates-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(var(--accent-rgb), 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(var(--accent-rgb), 0.05) 0%, transparent 45%);
}

.wl-dates-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--wa-0p08);
  border-bottom: 1px solid var(--wa-0p08);
}

.wl-dates-panel {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 28px;
  border-radius: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(12, 12, 11, 0.92) 38%,
    rgba(8, 8, 7, 0.96) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(var(--accent-rgb), 0.06);
}

@media (min-width: 768px) {
  .wl-dates-panel {
    padding: 40px 36px 36px;
    border-radius: 24px;
  }
}

html.theme-light .wl-dates-panel {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 245, 244, 0.98) 100%
  );
  border-color: rgba(var(--accent-rgb), 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04) inset,
    0 20px 48px rgba(0, 0, 0, 0.08);
}

.wl-dates-head {
  text-align: center;
  margin-bottom: 32px;
}

.wl-section-pill--dates {
  margin-bottom: 16px;
}

.wl-dates-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 20px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
}

.wl-dates-alert p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--color-ink);
}

.wl-dates-alert strong {
  color: #fca5a5;
}

.wl-dates-alert-dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.8);
  animation: wl-dates-pulse 2s ease-in-out infinite;
}

@keyframes wl-dates-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wl-dates-alert-dot {
    animation: none;
  }
}

html.theme-light .wl-dates-alert {
  border-color: rgba(220, 38, 38, 0.25);
  background: rgba(254, 226, 226, 0.6);
}

html.theme-light .wl-dates-alert strong {
  color: #b91c1c;
}

.wl-dates-heading {
  margin: 0 0 12px;
  font-family: var(--font-hero-display);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-ink);
  text-wrap: balance;
}

.wl-dates-lead {
  margin: 0 auto 18px;
  max-width: 32rem;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
  opacity: 0.68;
}

.wl-dates-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.wl-dates-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--wa-0p1);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.78;
  background: rgba(255, 255, 255, 0.03);
}

.wl-dates-tags .wl-ico {
  width: 14px;
  height: 14px;
  color: var(--accent);
  opacity: 0.9;
}

html.theme-light .wl-dates-tags li {
  background: rgba(0, 0, 0, 0.03);
}

.wl-sessions {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .wl-sessions {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
  }
}

.wl-session {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--wa-0p1);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

html.theme-light .wl-session {
  background: rgba(255, 255, 255, 0.65);
}

@media (hover: hover) {
  .wl-session:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
    transform: translateY(-2px);
  }
}

.wl-session::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
}

.wl-session-index {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  border-right: 1px solid var(--wa-0p08);
}

@media (min-width: 768px) {
  .wl-session-index {
    flex: 0 0 48px;
    font-size: 1.2rem;
  }
}

.wl-session-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 14px 18px;
  min-height: 132px;
}

.wl-session-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.55;
  margin-bottom: 8px;
}

.wl-session-date {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  font-weight: 650;
  color: var(--accent);
  line-height: 1.25;
}

.wl-session-time {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  opacity: 0.9;
  margin-bottom: 10px;
}

.wl-session-topic {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-ink);
  opacity: 0.5;
  max-width: 16rem;
}

.wl-dates-countdown-wrap {
  padding: 28px 16px 8px;
  border-radius: 16px;
  border: 1px solid var(--wa-0p1);
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

html.theme-light .wl-dates-countdown-wrap {
  background: rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .wl-dates-countdown-wrap {
    padding: 32px 28px 12px;
  }
}

.wl-dates-inicia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.35;
}

.wl-dates-inicia-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.45;
}

.wl-dates-inicia time {
  font-family: var(--font-hero-display);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.wl-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 480px) {
  .wl-countdown {
    gap: 14px;
    max-width: 560px;
  }
}

.wl-countdown.is-ended {
  display: block;
  max-width: 100%;
  padding: 4px 0 8px;
  border: none;
  background: transparent;
}

.wl-countdown-ended {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
  color: var(--color-ink);
  opacity: 0.82;
}

.wl-countdown-ended strong {
  color: var(--accent);
}

.wl-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 16px 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--wa-0p12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

html.theme-light .wl-countdown-unit {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (min-width: 480px) {
  .wl-countdown-unit {
    min-height: 104px;
    padding: 20px 8px 14px;
    border-radius: 14px;
  }
}

.wl-countdown-num {
  font-family: var(--font-hero-display);
  font-size: clamp(2.1rem, 10vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink);
}

.wl-countdown-label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--color-ink);
  opacity: 0.38;
}

.wl-dates-countdown-hint {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--color-ink);
  opacity: 0.42;
}

.wl-dates-cta {
  margin-top: 28px;
  text-align: center;
}

.wl-dates-cta .btn-primary {
  min-width: min(100%, 280px);
  min-height: 52px;
  font-size: 16px;
}

/* ─── Testimonios ─────────────────────────────────────────── */
.wl-section--testimonials {
  padding-top: 48px;
  padding-bottom: 52px;
  background: var(--color-surface-mid);
  border-top: 1px solid var(--wa-0p08);
  border-bottom: 1px solid var(--wa-0p08);
}

html.theme-light .wl-section--testimonials {
  background: rgba(0, 0, 0, 0.03);
}

.wl-testimonials-title {
  margin-top: 0;
  max-width: 28rem;
}

.wl-testimonials-lead {
  margin-bottom: 28px;
  max-width: 36rem;
}

.wl-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .wl-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .wl-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wl-testimonial {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 20px 18px 18px;
  border-radius: 14px;
  border: 1px solid var(--wa-0p1);
  background: var(--color-surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

html.theme-light .wl-testimonial {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.wl-testimonial-stars {
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.92;
  margin-bottom: 12px;
}

.wl-testimonial-quote {
  margin: 0 0 18px;
  flex: 1;
}

.wl-testimonial-quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-ink);
  opacity: 0.88;
}

.wl-testimonial-quote p::before {
  content: "“";
  color: var(--accent);
  opacity: 0.65;
  margin-right: 1px;
}

.wl-testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--wa-0p08);
}

.wl-testimonial-avatar,
.wl-testimonial-photo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.wl-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wl-testimonial-avatar--a {
  background: linear-gradient(145deg, #6b7d52, #3d4530);
}

.wl-testimonial-avatar--b {
  background: linear-gradient(145deg, #5a6d7d, #2e3a45);
}

.wl-testimonial-avatar--c {
  background: linear-gradient(145deg, #8a7358, #4a3d30);
}

.wl-testimonial-avatar--d {
  background: linear-gradient(145deg, #4f7a62, #2a4535);
}

.wl-testimonial-photo {
  border: 1px solid var(--wa-0p12);
}

.wl-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wl-testimonial-name {
  font-style: normal;
  font-size: 14px;
  font-weight: 650;
  color: var(--color-ink);
  line-height: 1.25;
}

.wl-testimonial-role {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-ink);
  opacity: 0.55;
}

.wl-testimonials-note {
  margin: 22px 0 0;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-ink);
  opacity: 0.45;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
