/* ==========================================================================
   Francisco Nasich — Secciones de la landing
   #problema · Pain · How-it-works · Testimonial · About
   Diferenciación · Offer · FAQ · Final CTA · Footer · Spotlight glow
   ========================================================================== */

/* --- PAIN SECTION (dos columnas) --- */
.pain-section {
  padding: var(--space-2xl) var(--space-md);
}

.pain-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.pain-intro h2 {
  font-size: clamp(24px, 3.8vw, 40px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.pain-intro p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pain section — two separate cards, same style/animation as .ba-card */
.pain-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.pain-col {
  flex: 1 1 0;
  max-width: 540px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg) 44px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pain-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Contenido encima del spotlight glow */
.pain-col > * { position: relative; z-index: 1; }

.pain-col-label {
  font-family: var(--ft);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: block;
}

.pain-col h3 {
  font-size: clamp(16px, 2.2vw, 19px);
  margin-bottom: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pain-list {
  list-style: none;
  margin-bottom: 28px;
}

.pain-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}

.pain-list li:last-child { border-bottom: none; }

.pain-list .dot {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
  font-weight: 700;
}

.pain-col .pain-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.pain-col .pain-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
}

.pain-col .pain-box p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.pain-col .pain-box strong {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-family: var(--ft);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Pain col accordion — estructura base (desktop: sin efecto, todo visible) */
.pain-col-trigger {
  display: block;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.pain-col-header {
  display: block;
}

.pain-col-chevron {
  display: none; /* solo visible en mobile */
}

/* En desktop el body siempre es visible — sin max-height ni overflow */

/* Pain col CTA */
.pain-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ft);
  letter-spacing: 0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pain-cta:hover { opacity: 0.7; }

/* --- HOW IT WORKS --- */
.how {
  padding: var(--space-2xl) var(--space-md);
  background: var(--surface);
}

.how-top {
  max-width: 720px;
  margin-bottom: 56px;
}

.how-top h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.how-top p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Sticky stacking cards (desktop + mobile) ──────────────── */
.h-step {
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-bottom: 20px;
  transform-origin: top center;
  will-change: transform;
  transition: box-shadow 0.4s var(--ease);
}

/* Sticky positions — cada card se apila 16px más abajo que la anterior */
.h-step:nth-child(1) { position: sticky; top: 80px; z-index: 1; }
.h-step:nth-child(2) { position: sticky; top: 96px; z-index: 2; margin-bottom: 0; }

/* Colores de acento por etapa */
.h-step:nth-child(1) { background: linear-gradient(135deg, #fffcfa 0%, #fff 60%); }
.h-step:nth-child(2) { background: linear-gradient(135deg, #f7f5ff 0%, #fff 60%); }

/* ─── Contenido izquierdo ─── */
.h-step-content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.h-step-num {
  font-family: var(--ft);
  font-weight: 700;
  font-size: 52px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.22;
  line-height: 0.9;
  margin-bottom: 0;
  display: block;
  letter-spacing: -0.04em;
}

.h-step-badge {
  font-family: var(--ft);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0;
}

.h-step h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 600;
}

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h-step p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.72;
}

/* ─── Panel visual derecho ─── */
.h-step-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradiente de fondo del panel por etapa */
.h-step:nth-child(1) .h-step-visual {
  background: linear-gradient(135deg, rgba(255,110,47,0.10) 0%, rgba(254,66,106,0.05) 100%);
}
.h-step:nth-child(2) .h-step-visual {
  background: linear-gradient(135deg, rgba(255,110,47,0.07) 0%, rgba(254,66,106,0.12) 100%);
}

.h-step-visual::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 110, 47, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 40px rgba(255, 110, 47, 0.06);
  pointer-events: none;
}

/* Círculo decorativo detrás del número */
.h-step-visual::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.05;
  filter: blur(48px);
  pointer-events: none;
}

.h-step-icon {
  position: relative;
  z-index: 1;
  width: clamp(110px, 12vw, 154px);
  height: clamp(110px, 12vw, 154px);
  color: var(--orange);
  filter: drop-shadow(0 16px 30px rgba(255, 110, 47, 0.16));
}

.h-step-icon-soft {
  fill: rgba(255, 255, 255, 0.56);
}

.h-step-icon-line,
.h-step-icon-accent {
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.h-step-icon-line {
  opacity: 0.7;
}

.h-step-icon-accent {
  opacity: 0.95;
}

.h-step:nth-child(2) .h-step-icon {
  color: var(--pink);
}

.h-step:nth-child(3) .h-step-icon {
  color: #ff6e2f;
}

/* --- GEO SUMMARY --- */
.geo-summary {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

.geo-summary-i {
  max-width: 860px;
  margin: 0 auto;
}

.geo-summary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: 40px 44px;
}

.geo-summary-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.geo-summary-header {
  min-width: 0;
}

.geo-summary-chevron {
  display: none;
  color: var(--orange);
  opacity: 0.72;
  transition: transform 0.32s ease;
  flex-shrink: 0;
}

.geo-summary-card h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.geo-summary-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 14px;
}

.geo-summary-body p:last-of-type {
  margin-bottom: 22px;
}

.geo-summary-link {
  font-family: var(--ft);
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

@media (max-width: 640px) {
  .geo-summary {
    padding: 48px var(--space-md);
  }

  .geo-summary-card {
    padding: 30px 24px;
    border-radius: var(--r-lg);
  }

  .geo-summary-trigger {
    cursor: pointer;
  }

  .geo-summary-trigger:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
    border-radius: 6px;
  }

  .geo-summary-card h2 {
    margin-bottom: 0;
  }

  .geo-summary-chevron {
    display: flex;
    align-items: center;
    margin-top: 24px;
  }

  .geo-summary-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding-top 0.4s var(--ease);
  }

  .geo-summary-card.open .geo-summary-chevron {
    transform: rotate(180deg);
  }

  .geo-summary-card.open .geo-summary-body {
    max-height: 900px;
    padding-top: 20px;
  }
}

/* --- TESTIMONIAL --- */
.testimonial {
  padding: var(--space-2xl) var(--space-md);
}

.test-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.test-header h2 {
  font-size: clamp(24px, 3.8vw, 40px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.test-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* Desktop: info → video centrado → antes/después */
.test-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 56px);
  margin-bottom: clamp(56px, 7vw, 80px);
}

.test-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 720px;
}

.ba-section {
  margin-top: 0;
  padding-top: clamp(8px, 2vw, 16px);
}

.test-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.test-name { font-weight: 600; font-size: 15px; color: var(--text); }

.test-handle {
  font-family: var(--ft);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.test-quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.test-quote::before {
  content: '"';
  font-family: var(--ft);
  font-size: 120px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.18;
  position: absolute;
  top: -10px;
  left: 22px;
  line-height: 1;
  font-weight: 700;
}

.test-quote p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.test-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.t-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.t-metric:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.t-metric .num,
.t-metric .counter {
  font-family: var(--ft);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 38px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.035em;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease-out;
}

.t-metric .lbl {
  font-family: var(--ft);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

.ba-label {
  font-family: var(--ft);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  text-align: center;
}

.ba-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.ba-card {
  position: relative;
  flex: 0 0 300px;
  max-width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ba-after {
  box-shadow: var(--shadow-md), 0 0 0 1.5px rgba(255, 110, 47, 0.45);
}

.ba-card-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-family: var(--ft);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.005em;
  text-transform: none;
  padding: 5px 12px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ba-before .ba-card-label {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid var(--border);
}

.ba-after .ba-card-label {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 110, 47, 0.14), 0 2px 6px rgba(254, 66, 106, 0.10);
}

.ba-card img {
  width: 100%;
  border: none;
  display: block;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
}

/* --- ABOUT --- */
.about {
  padding: var(--space-2xl) var(--space-md);
  background: var(--surface);
}

.about-i {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.about-txt { padding-top: 8px; }

.about-av-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.av-round {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md), 0 0 0 2px rgba(255, 110, 47, 0.18);
}

.av-name { font-weight: 600; font-size: 20px; color: var(--text); letter-spacing: -0.015em; }

.av-handle {
  font-family: var(--ft);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.about-h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-p strong {
  color: var(--text);
  font-weight: 600;
}

.about-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.s-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 10px 18px;
  font-family: var(--ft);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.s-link:hover {
  border-color: var(--border-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.s-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- DIFERENCIACIÓN --- */
.fit-comparison {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
  scroll-margin-top: 140px;
}

.fit-i {
  max-width: 1040px;
  margin: 0 auto;
}

.fit-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.fit-header h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.fit-header p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.82fr) minmax(0, 1.36fr);
  gap: 18px;
  align-items: stretch;
}

.fit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.fit-card:not(.fit-card--featured) {
  opacity: 0.74;
}

.fit-card-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: default;
  color: inherit;
  font: inherit;
}

.fit-card-head {
  display: block;
  min-width: 0;
}

.fit-card-chevron {
  display: none;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.fit-card--featured {
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--btn-border-angle),
      rgba(255, 110, 47, 0.25) 0deg,
      rgba(254, 66, 106, 0.25) 100deg,
      rgba(255, 230, 180, 0.95) 180deg,
      rgba(254, 66, 106, 0.25) 260deg,
      rgba(255, 110, 47, 0.25) 360deg
    ) border-box;
  box-shadow: 0 6px 18px rgba(255, 110, 47, 0.14), 0 2px 6px rgba(254, 66, 106, 0.10);
  animation: btn-border-spin 3s linear infinite;
  padding: 34px;
}

.fit-card-kicker {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.fit-card-title {
  display: block;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.fit-card--featured .fit-card-title {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.18;
}

.fit-card--featured .fit-card-kicker {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fit-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.fit-card-body {
  max-height: none;
  overflow: visible;
  transition: max-height 0.34s var(--ease);
}

.fit-card-body p {
  padding-top: 6px;
}

.fit-card.open .fit-card-chevron {
  transform: rotate(180deg);
}

.fit-card.open .fit-card-body {
  max-height: 260px;
}

.fit-card--featured p {
  font-size: 15.5px;
  color: var(--text-2);
}

@media (max-width: 860px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: auto;
  }

  .fit-card:not(.fit-card--featured) {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .fit-comparison {
    padding: 56px var(--space-md);
  }

  .fit-header {
    margin-bottom: 28px;
  }

  .fit-header p {
    font-size: 14.5px;
  }

  .fit-grid {
    gap: 12px;
  }

  .fit-card {
    padding: 0;
    min-height: 0;
    overflow: hidden;
  }

  .fit-card--featured {
    border-radius: var(--r-lg);
    padding: 0;
  }

  .fit-card-trigger {
    cursor: pointer;
    padding: 20px;
    align-items: center;
  }

  .fit-card-trigger:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: -4px;
    border-radius: var(--r-md);
  }

  .fit-card-kicker {
    margin-bottom: 8px;
  }

  .fit-card-title {
    font-size: 16px;
    margin-bottom: 0;
  }

  .fit-card--featured .fit-card-title {
    font-size: 17px;
  }

  .fit-card-chevron {
    display: flex;
    align-items: center;
    margin-top: 2px;
  }

  .fit-card-body {
    max-height: 0;
    overflow: hidden;
  }

  .fit-card-body p {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .fit-card--featured .fit-card-body p {
    font-size: 14.5px;
  }

  .fit-card.open .fit-card-body {
    max-height: 240px;
  }
}

.diferenciacion {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
}

.diff-i {
  max-width: 900px;
  margin: 0 auto;
}

.diff-header {
  text-align: center;
  margin-bottom: 48px;
}

.diff-header h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.diff-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.diff-card > * { position: relative; z-index: 1; }

.diff-card--featured {
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--btn-border-angle),
      rgba(255, 110, 47, 0.25) 0deg,
      rgba(254, 66, 106, 0.25) 100deg,
      rgba(255, 230, 180, 0.95) 180deg,
      rgba(254, 66, 106, 0.25) 260deg,
      rgba(255, 110, 47, 0.25) 360deg
    ) border-box;
  box-shadow: 0 6px 18px rgba(255, 110, 47, 0.14), 0 2px 6px rgba(254, 66, 106, 0.10);
  animation: btn-border-spin 3s linear infinite;
  padding: 40px 42px;
}

.diff-card-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.diff-card--featured .diff-card-label {
  color: var(--accent);
}

.diff-card-title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.3;
}

.diff-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.diff-check-list li:first-child {
  border-top: 1px solid var(--border);
}

.diff-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-check-list li span:last-child {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.diff-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.diff-card-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: default;
  font: inherit;
  color: inherit;
}

.diff-card-trigger .diff-card-label {
  margin-bottom: 0;
}

.diff-card-chevron {
  display: none;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.diff-card-body {
  max-height: none;
  overflow: visible;
  transition: max-height 0.34s var(--ease), padding-top 0.34s var(--ease);
  padding-top: 18px;
}

.diff-card--collapsible.open .diff-card-chevron {
  transform: rotate(180deg);
}

.diff-card--collapsible.open .diff-card-body {
  max-height: 260px;
  padding-top: 18px;
}

.diff-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; gap: 14px; }
  .diff-card { padding: 22px 20px; }
  .diff-card--featured {
    padding: 32px 24px;
    border-radius: var(--r-lg);
  }
  .diff-card-title { font-size: 16px; margin-bottom: 18px; }
  .diff-check-list li { gap: 12px; padding: 14px 0; }
  .diff-check-list li span:last-child { font-size: 14px; }

  .diff-card-trigger {
    cursor: pointer;
  }

  .diff-card-chevron {
    display: flex;
  }

  .diff-card-body {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
  }
}

/* --- OFFER --- */
.resources {
  padding: 72px var(--space-md);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.resources-i {
  max-width: 980px;
  margin: 0 auto;
}

.resources-top {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.resources-top h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.resources-top p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--text-2);
  margin: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-bottom: 16px;
}

.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.resource-card--featured {
  border-color: var(--border);
  background: #fff;
  animation: none;
  box-shadow: var(--shadow-sm);
}

.resource-kicker {
  display: inline-block;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.resource-card h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.24;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.resource-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.resource-link {
  margin-top: auto;
  font-family: var(--ft);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}

.resource-link:hover {
  text-decoration: underline;
}

.resources-sub {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  background: #fff;
}

.resources-sub strong {
  display: block;
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.resources-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resources-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.resources-links a:hover {
  border-color: var(--border-strong);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}

@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .resources {
    padding: 48px var(--space-md);
  }

  .resources-top {
    margin-bottom: 28px;
  }

  .resources-top p {
    font-size: 14.5px;
  }

  .resource-card {
    padding: 20px;
    border-radius: var(--r-md);
  }

  .resource-card h3 {
    font-size: 18px;
  }

  .resource-card p {
    font-size: 14px;
  }

  .resources-sub {
    padding: 20px;
  }

  .resources-links {
    gap: 8px;
  }

  .resources-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    min-height: 0;
  }
}

.offer {
  padding: var(--space-2xl) var(--space-md);
}

.offer-top {
  text-align: center;
  margin-bottom: 48px;
}

.offer-top h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 0;
  letter-spacing: -0.03em;
}

/* Single-path offer layout — full width */
.offer-single {
  display: block;
  margin-bottom: 36px;
}

.offer-single-body {
  width: 100%;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--btn-border-angle),
      rgba(255, 110, 47, 0.25) 0deg,
      rgba(254, 66, 106, 0.25) 100deg,
      rgba(255, 230, 180, 0.95) 180deg,
      rgba(254, 66, 106, 0.25) 260deg,
      rgba(255, 110, 47, 0.25) 360deg
    ) border-box;
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(255, 110, 47, 0.14), 0 2px 6px rgba(254, 66, 106, 0.10);
  animation: btn-border-spin 3s linear infinite;
}

.offer-single-body > * { position: relative; z-index: 1; }

/* Título dentro de la card */
.offer-card-title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Lista de beneficios con checkmarks */
.offer-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offer-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.offer-check-list li:first-child {
  border-top: 1px solid var(--border);
}

.offer-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-check-list li span:last-child {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Botón debajo de la card, centrado */
.offer-card-cta {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.booking-panel {
  max-width: 1040px;
  margin: 0 auto;
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--btn-border-angle),
      rgba(255, 110, 47, 0.25) 0deg,
      rgba(254, 66, 106, 0.25) 100deg,
      rgba(255, 230, 180, 0.95) 180deg,
      rgba(254, 66, 106, 0.25) 260deg,
      rgba(255, 110, 47, 0.25) 360deg
    ) border-box;
  box-shadow: 0 6px 18px rgba(255, 110, 47, 0.14), 0 2px 6px rgba(254, 66, 106, 0.10);
  animation: btn-border-spin 3s linear infinite;
  padding: clamp(22px, 4vw, 36px);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.booking-picker,
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.booking-step,
.booking-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.booking-step-num {
  display: inline-block;
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.booking-step h3,
.booking-form h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.booking-form-head {
  margin-bottom: 4px;
}

.booking-date-list,
.booking-time-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-date,
.booking-time {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 10px;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.booking-date:hover,
.booking-time:hover,
.booking-date[aria-pressed="true"],
.booking-time[aria-pressed="true"] {
  border-color: rgba(254, 66, 106, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 110, 47, 0.10);
  transform: translateY(-1px);
}

.booking-date[aria-pressed="true"],
.booking-time[aria-pressed="true"] {
  color: #fff;
  background: var(--grad);
}

.booking-date:disabled,
.booking-time:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
  box-shadow: none;
}

.booking-empty,
.booking-status,
.booking-success {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.booking-status {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 110, 47, 0.08);
}

.booking-status[data-type="success"],
.booking-success {
  color: #147a3d;
  background: rgba(20, 122, 61, 0.10);
}

.booking-status[data-type="warning"] {
  color: #8a5a00;
  background: rgba(255, 190, 60, 0.14);
}

.booking-status[data-type="error"] {
  color: #b42318;
  background: rgba(180, 35, 24, 0.10);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.booking-fields input,
.booking-fields textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-fields textarea {
  resize: vertical;
  min-height: 108px;
}

.booking-fields input:focus,
.booking-fields textarea:focus {
  border-color: rgba(254, 66, 106, 0.52);
  box-shadow: 0 0 0 3px rgba(255, 110, 47, 0.10);
}

.booking-field-wide {
  grid-column: 1 / -1;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.booking-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.booking-page {
  min-height: 100vh;
  background: var(--bg);
}

.booking-page-main {
  min-height: 100vh;
}

.booking-hero {
  padding: 44px var(--space-md) 18px;
}

.booking-hero-i {
  text-align: center;
  max-width: 680px;
}

.booking-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.booking-back:hover {
  color: var(--orange);
}

.booking-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 10px 0 12px;
}

.booking-hero p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 540px;
}

.booking-page-section {
  padding: 18px var(--space-md) var(--space-2xl);
}

.booking-panel--page {
  max-width: 680px;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
  padding: 0;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto 22px;
  max-width: 520px;
}

.booking-progress span {
  display: block;
  height: 4px;
  overflow: hidden;
  border: 0;
  border-radius: var(--r-full);
  padding: 0;
  background: rgba(22, 22, 22, 0.10);
}

.booking-progress span.is-active {
  background: var(--grad);
}

.booking-panel.is-complete,
.booking-panel.is-not-qualified {
  animation: booking-complete-glow 0.9s ease-out both;
}

.booking-panel--page.is-complete,
.booking-panel--page.is-not-qualified {
  animation: none;
}

.booking-panel.is-complete .booking-progress,
.booking-panel.is-not-qualified .booking-progress {
  margin-bottom: 0;
}

.booking-wizard {
  display: block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.booking-panel.is-complete .booking-wizard,
.booking-panel.is-not-qualified .booking-wizard {
  height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
}

.booking-wizard-step {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow-xs);
}

.booking-wizard-step.is-active {
  display: block;
}

.booking-panel--page .booking-wizard-step {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.booking-step-copy {
  margin-bottom: 20px;
}

.booking-step-copy h2 {
  font-size: clamp(22px, 3.6vw, 34px);
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.booking-step-copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.booking-calendar-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
}

.booking-calendar-main {
  padding: 22px;
}

.booking-calendar-panel-title {
  display: none;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.booking-date-list--calendar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
}

.booking-times-panel {
  border-left: 1px solid var(--border);
  padding: 22px;
  max-height: 420px;
  overflow-y: auto;
}

.booking-times-panel h3 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.booking-times-head {
  display: block;
}

.booking-mobile-back {
  display: none;
}

.booking-times-panel .booking-time-list {
  grid-template-columns: 1fr;
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.booking-footer .booking-status {
  flex: 1;
}

.booking-next {
  min-height: 0;
  padding: 11px 22px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
}

.booking-secondary {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.booking-secondary:hover {
  color: var(--orange);
}

.booking-secondary:focus-visible {
  outline: 2px solid rgba(255, 110, 47, 0.35);
  outline-offset: 4px;
  border-radius: 4px;
}

.booking-options {
  display: grid;
  gap: 12px;
}

.booking-options label {
  display: block;
  cursor: pointer;
}

.booking-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-options span {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.booking-options input:checked + span {
  color: #fff;
  border-color: transparent;
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(255, 110, 47, 0.14);
}

.booking-options label:hover span {
  border-color: rgba(254, 66, 106, 0.36);
  transform: translateY(-1px);
}

.booking-not-qualified {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 46vw, 500px);
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 66px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  box-shadow: none;
  outline: none;
}

.booking-not-qualified[hidden] {
  display: none;
}

.booking-not-qualified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 110, 47, 0.10);
  color: var(--orange);
  font-family: var(--ft);
  font-size: 19px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 110, 47, 0.16), 0 12px 26px rgba(255, 110, 47, 0.10);
}

.booking-not-qualified-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-not-qualified h2 {
  max-width: 560px;
  margin: 0 auto 14px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.booking-not-qualified p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--text-2);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.62;
}

.booking-not-qualified-restart {
  width: auto;
  max-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 110, 47, 0.22);
  border-radius: var(--r-full);
  background: #fff;
  color: var(--orange);
  font: inherit;
  font-family: var(--ft);
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.booking-not-qualified-restart:hover {
  border-color: rgba(254, 66, 106, 0.36);
  box-shadow: 0 10px 24px rgba(255, 110, 47, 0.10);
  transform: translateY(-1px);
}

.booking-not-qualified-restart:focus-visible {
  outline: 2px solid rgba(255, 110, 47, 0.35);
  outline-offset: 4px;
}

.booking-confirmation {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 46vw, 520px);
  padding: clamp(34px, 7vw, 70px) clamp(20px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 110, 47, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, rgba(255, 250, 247, 0.92) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  outline: none;
}

.booking-confirmation[hidden] {
  display: none;
}

.booking-confirmation:not([hidden]),
.booking-not-qualified:not([hidden]) {
  animation: booking-success-in 0.54s cubic-bezier(.2,.7,.2,1) both;
}

.booking-confirmation-mark {
  position: relative;
  width: clamp(78px, 10vw, 104px);
  height: clamp(78px, 10vw, 104px);
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 18px 42px rgba(255, 110, 47, 0.16),
    inset 0 0 0 1px rgba(255, 110, 47, 0.10);
}

.booking-confirmation-mark::before,
.booking-confirmation-mark::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 110, 47, 0.18);
  animation: booking-success-pulse 1.15s ease-out both;
}

.booking-confirmation-mark::after {
  inset: -20px;
  border-color: rgba(254, 66, 106, 0.12);
  animation-delay: 0.08s;
}

.booking-confirmation-mark svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.booking-confirmation-ring,
.booking-confirmation-check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-confirmation-ring {
  stroke: #ff6e2f;
  stroke-width: 3;
  stroke-dasharray: 188;
  stroke-dashoffset: 188;
  animation: booking-ring-draw 0.72s ease-out 0.12s forwards;
}

.booking-confirmation-check {
  stroke: #fe426a;
  stroke-width: 5;
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: booking-check-draw 0.42s ease-out 0.58s forwards;
}

.booking-confirmation-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-confirmation h2 {
  max-width: 620px;
  margin: 0 auto 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.booking-confirmation p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--text-2);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.62;
}

.booking-confirmation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 110, 47, 0.22);
  border-radius: var(--r-full);
  color: var(--orange);
  font-family: var(--ft);
  font-weight: 700;
  text-decoration: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.booking-confirmation-link:hover {
  border-color: rgba(254, 66, 106, 0.36);
  box-shadow: 0 10px 24px rgba(255, 110, 47, 0.10);
  transform: translateY(-1px);
}

@keyframes booking-success-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes booking-complete-glow {
  0% {
    box-shadow: 0 6px 18px rgba(255, 110, 47, 0.14), 0 2px 6px rgba(254, 66, 106, 0.10);
  }
  45% {
    box-shadow: 0 18px 52px rgba(255, 110, 47, 0.20), 0 8px 26px rgba(254, 66, 106, 0.14);
  }
  100% {
    box-shadow: 0 10px 28px rgba(255, 110, 47, 0.12), 0 4px 12px rgba(254, 66, 106, 0.08);
  }
}

@keyframes booking-ring-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes booking-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes booking-success-pulse {
  from {
    opacity: 0;
    transform: scale(0.78);
  }
  45% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (max-width: 640px) {
  .offer-single-body {
    padding: 32px 24px;
    border-radius: var(--r-lg);
  }
  .offer-card-title { font-size: 16px; margin-bottom: 18px; }
  .offer-check-list li { gap: 12px; padding: 14px 0; }
  .offer-check-list li span:last-child { font-size: 14px; }
  .offer-single { margin-bottom: 28px; }
  .booking-panel { padding: 16px; }
  .booking-panel--page {
    max-width: 100%;
    padding: 0;
  }
  .booking-grid { grid-template-columns: 1fr; gap: 16px; }
  .booking-step,
  .booking-form { padding: 18px; }
  .booking-date-list,
  .booking-time-list,
  .booking-fields { grid-template-columns: 1fr; }
  .booking-step h3,
  .booking-form h3 { font-size: 16px; }
  .booking-hero { padding-top: 28px; }
  .booking-hero h1 { font-size: clamp(29px, 8vw, 36px); }
  .booking-hero p { font-size: 14px; max-width: 330px; }
  .booking-progress { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .booking-step-copy h2 { font-size: clamp(21px, 6.6vw, 27px); }
  .booking-step-copy p { font-size: 14px; line-height: 1.58; }
  .booking-calendar-card {
    display: block;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    box-shadow: none;
  }
  .booking-calendar-main,
  .booking-times-panel {
    padding: 18px;
  }
  .booking-calendar-panel-title {
    display: block;
  }
  .booking-date-list--calendar,
  .booking-times-panel .booking-time-list {
    grid-template-columns: 1fr;
    max-height: min(52vh, 390px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 110, 47, 0.45) rgba(22, 22, 22, 0.06);
  }
  .booking-date-list--calendar::-webkit-scrollbar,
  .booking-times-panel .booking-time-list::-webkit-scrollbar {
    width: 6px;
  }
  .booking-date-list--calendar::-webkit-scrollbar-track,
  .booking-times-panel .booking-time-list::-webkit-scrollbar-track {
    background: rgba(22, 22, 22, 0.06);
    border-radius: var(--r-full);
  }
  .booking-date-list--calendar::-webkit-scrollbar-thumb,
  .booking-times-panel .booking-time-list::-webkit-scrollbar-thumb {
    background: rgba(255, 110, 47, 0.45);
    border-radius: var(--r-full);
  }
  .booking-date,
  .booking-time {
    min-height: 52px;
    padding: 14px 16px;
    text-align: left;
  }
  .booking-times-panel {
    display: none;
    border-left: 0;
    border-top: 0;
    max-height: none;
    overflow: visible;
  }
  .booking-wizard-step.is-choosing-time .booking-calendar-main {
    display: none;
  }
  .booking-wizard-step.is-choosing-time .booking-times-panel {
    display: block;
  }
  .booking-times-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
  }
  .booking-times-panel h3 {
    margin: 0;
  }
  .booking-mobile-back {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--orange);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
  }
  .booking-mobile-back:focus-visible {
    outline: 2px solid rgba(255, 110, 47, 0.35);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .booking-not-qualified {
    min-height: 360px;
    padding: 30px 0;
  }
  .booking-not-qualified-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .booking-not-qualified h2 {
    font-size: clamp(25px, 7vw, 31px);
  }
  .booking-not-qualified p {
    font-size: 14.5px;
  }
  .booking-footer { flex-direction: column; align-items: stretch; }
  .booking-footer .booking-status { width: 100%; }
  .booking-next {
    width: 100%;
  }
  .booking-footer .booking-secondary {
    order: 2;
    align-self: center;
    text-align: center;
  }
  .booking-footer .booking-submit,
  .booking-footer .booking-next {
    order: 1;
  }
  .booking-confirmation {
    min-height: 360px;
    padding: 34px 20px;
  }
  .booking-confirmation h2 {
    font-size: clamp(25px, 7vw, 31px);
  }
  .booking-confirmation p {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-panel,
  .booking-panel.is-complete,
  .booking-panel.is-not-qualified,
  .booking-panel.is-complete .booking-wizard,
  .booking-panel.is-not-qualified .booking-wizard,
  .booking-confirmation:not([hidden]),
  .booking-not-qualified:not([hidden]),
  .booking-confirmation-mark::before,
  .booking-confirmation-mark::after,
  .booking-confirmation-ring,
  .booking-confirmation-check {
    animation: none;
    transition: none;
  }

  .booking-confirmation-ring,
  .booking-confirmation-check {
    stroke-dashoffset: 0;
  }
}

/* --- FAQ --- */
.faq {
  padding: var(--space-2xl) var(--space-md);
  background: var(--surface);
}

.faq-i {
  max-width: 760px;
}

.faq-i h2 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -0.03em;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.faq-item.open {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15.5px;
  font-weight: 600;
  gap: 16px;
  user-select: none;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.faq-q:hover { color: var(--orange); }

.faq-icon {
  background: var(--grad);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-in {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  padding: 0 24px 22px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 34px var(--space-md);
  background: var(--bg);
}

.footer-i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.f-logo {
  font-family: var(--ft);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.f-logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.f-copy { font-size: 13px; color: var(--text-muted); }

.f-links { display: flex; gap: 16px; }

.f-links a {
  font-family: var(--ft);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.f-links a:hover { color: var(--orange); }

/* ==========================================================================
   ADD-ONS (mayo 2026): cupos badge · about-creds · para-quién-es · ba-slider
   ========================================================================== */

/* --- ABOUT: lista de credenciales sobre el h2 --- */
.about-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
}

.about-creds li {
  font-family: var(--ft);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}

.about-creds li:not(:last-child)::after {
  content: '·';
  margin: 0 12px;
  color: var(--text-subtle);
  font-weight: 700;
}

.about-creds li strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .about-creds li:not(:last-child)::after { margin: 0 8px; }
  .about-creds li { font-size: 12.5px; }
}

/* --- PAIN COL: variante "NO es" (apagada / atenuada) --- */
.pain-col--no {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.pain-col--no:hover {
  box-shadow: var(--shadow-md);
}

.pain-col-label--no {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--text-muted);
  font-family: var(--ft);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.pain-col--no h3 {
  color: var(--text-2);
}

.pain-list--no li .dot {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--text-subtle);
  font-weight: 600;
  font-size: 17px;
}

.pain-box--no {
  background: #fff;
  border-color: var(--border);
}

.pain-box--no::before {
  background: var(--border-strong) !important;
}

.pain-box--no strong {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--text-muted);
}

/* --- BEFORE/AFTER SLIDER (mobile only) --- */
.ba-slider {
  display: none; /* visible solo en mobile, ver responsive.css */
  margin: 0 auto;
  max-width: 320px;
}

.ba-slider-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 290 / 515;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba-slider-after,
.ba-slider-before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ba-slider-after img,
.ba-slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* clip-path en vez de overflow:hidden+width:var(): la imagen "antes" mantiene
   sus dimensiones reales del frame (sin distorsión en viewports angostos) y
   sólo se revela la fracción --clip desde la izquierda. */
.ba-slider-before {
  clip-path: inset(0 calc(100% - var(--clip, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--clip, 50%)) 0 0);
  /* sin transición — el drag se ve más directo */
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--clip, 50%);
  width: 40px;
  transform: translateX(-50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.ba-slider-handle:focus-visible {
  outline: none;
}

.ba-slider-handle:focus-visible .ba-slider-knob {
  box-shadow: 0 0 0 4px rgba(255, 110, 47, 0.3), var(--shadow-glow);
}

.ba-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.ba-slider-knob {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 1;
}

.ba-slider-tag {
  position: absolute;
  top: 12px;
  font-family: var(--ft);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.005em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  pointer-events: none;
}

.ba-slider-tag--before {
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid var(--border);
}

.ba-slider-tag--after {
  right: 12px;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.ba-slider-hint {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--ft);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--text-muted);
}

/* --- CUPOS BADGE (hero + offer final) --- */
.cupos-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 16px 8px 14px;
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-2);
  margin-top: 14px;
  box-shadow: var(--shadow-xs);
  line-height: 1.4;
}

/* El texto va en un wrapper único para que el gap del flex no separe
   "Quedan / 3 / cupos / junio" como items independientes. */
.cupos-text {
  display: inline;
  white-space: normal;
}

.cupos-text strong {
  color: var(--text);
  font-weight: 700;
  margin: 0 1px; /* respeta un hairspace alrededor del número */
}

.cupos-badge strong {
  color: var(--text);
  font-weight: 700;
}

.cupos-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 110, 47, 0.15);
  animation: cuposPulse 2.6s ease-in-out infinite;
}

@keyframes cuposPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 110, 47, 0.15); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 110, 47, 0.05); }
}

.cupos-badge--final {
  margin: 18px auto 0;
  display: flex;
  width: fit-content;
}

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

@media (max-width: 640px) {
  .cupos-badge {
    font-size: 12px;
    padding: 7px 14px 7px 12px;
    text-align: center;
  }
}

/* --- QUOTE TESTIMONIO: versión desktop vs mobile --- */
.quote-desktop { display: inline; }
.quote-mobile  { display: none; }

@media (max-width: 640px) {
  .quote-desktop { display: none; }
  .quote-mobile  { display: inline; }
}
