/* ── Design System — Premium supplement (azul / blanco) ───────────────────── */
:root {
  /* Brand blues */
  --g900: #0A1628;
  --g800: #0E2040;
  --g700: #152D52;
  --g600: #1E4080;
  --g500: #2563A8;
  --g400: #3B7FD4;
  --g300: #5B9FE8;
  --g200: #93C5F0;
  --g100: #C5DFFA;
  --g50:  #E8F2FC;
  --g20:  #F4F8FC;

  /* Neutrals */
  --white:     #FFFFFF;
  --off-white: #FFFFFF;
  --light:     #E2EAF4;

  /* Text */
  --text:    #0A1628;
  --text-2:  #243B5C;
  --muted:   #5A6F8A;
  --muted-2: #8A9BB5;

  /* Accent — CTA */
  --accent:       #1B5FAD;
  --accent-hover: #144A8F;
  --accent-glow:  rgba(27,95,173,0.22);

  /* Fonts — una sola familia para evitar mezclas serif/sans */
  --ff-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ff-price:   'Nunito', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radii */
  --r:    8px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.06);
  --shadow:    0 8px 40px rgba(10,22,40,0.10);
  --shadow-lg: 0 24px 80px rgba(10,22,40,0.14);
  --shadow-accent: 0 12px 48px rgba(27,95,173,0.28);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  touch-action: manipulation;
}
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
main,
.site-nav,
.site-footer,
.ann-bar {
  max-width: 100%;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────────────────────── */
.container        { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container--sm    { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.container--xs    { max-width: 660px;  margin: 0 auto; padding: 0 28px; }

/* ── Announcement Bar ────────────────────────────────────────────────────────── */
.ann-bar {
  background: var(--g700);
  color: var(--g100);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ann-bar strong { color: #fff; }

/* ── Navigation ──────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g50);
  transition: box-shadow 0.25s;
}
.site-nav.scrolled { box-shadow: 0 1px 0 var(--g50), var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 58px;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--ff-body);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-stars-icons { color: #E5A100; letter-spacing: 1px; }
.nav-orders {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  background: var(--g50);
  color: var(--text);
  flex-shrink: 0;
  align-self: center;
  -webkit-tap-highlight-color: transparent;
}
.nav-orders:hover,
.nav-orders:active,
.nav-orders:focus,
.nav-orders.is-active { background: var(--g100); transform: none; }
.nav-orders-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-orders-icon-wrap i {
  font-size: 0.9375rem;
  color: var(--accent);
}
.nav-orders-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-2);
  white-space: nowrap;
}
}

/* ── PDP mobile (estilo Calmova) ─────────────────────────────────────────────── */
.mobile-buy-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--g50);
  box-shadow: 0 -8px 32px rgba(10, 22, 40, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mbb-price { flex: 1; min-width: 0; }
.mbb-now {
  display: block;
  font-family: var(--ff-price);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.mbb-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.mbb-was {
  font-family: var(--ff-price);
  font-size: 0.75rem;
  color: var(--muted-2);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.mbb-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.mbb-btn {
  flex-shrink: 0;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.mbb-btn:hover { background: var(--accent-hover); }
.mbb-btn:active { transform: scale(0.98); }

/* ── PDP product page ─────────────────────────────────────────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}
.gallery-col {
  padding: 32px 20px 32px 32px;
  background: var(--g20);
  border-right: 1px solid var(--g50);
  overflow: hidden;
  max-width: 100%;
}
.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--g50);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  touch-action: pan-y pinch-zoom;
}
.gallery-main img#mainImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--g800);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.gallery-nav:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.gallery-nav--prev { left: 12px; }
.gallery-nav--next { right: 12px; }
.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(10, 22, 40, 0.55);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gallery-thumbs-wrap {
  margin-top: 16px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--g50);
  background: var(--g20);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  max-width: 100%;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.gallery-thumbs::before,
.gallery-thumbs::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--g100);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06);
  opacity: 0.88;
}
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--g200);
}
.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(27, 95, 173, 0.22);
  opacity: 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.info-col {
  padding: 28px 32px 48px 24px;
  min-width: 0;
  max-width: 100%;
}
.product-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ps-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #22A06B;
  font-size: 0.875rem;
  line-height: 1;
}
.ps-icons .fa-star { font-size: 0.875rem; }
.ps-text { font-size: 0.875rem; color: var(--muted); }
.ps-text strong { color: var(--text); font-weight: 600; }
.product-title {
  font-size: clamp(1.35rem, 5.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
  white-space: nowrap;
}
.product-sub {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 14px;
  font-weight: 500;
}
.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--g50);
  border: none;
  color: var(--g600);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
}
.product-pill-icon-wrap {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-pill-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.4;
}
.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.product-testimonial {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.post-purchase .product-testimonial { width: 100%; }
.pt-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  position: relative;
}
.pt-track {
  display: flex;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.pt-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}
.pt-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(27, 95, 173, 0.12);
  border-radius: 18px;
  padding: 12px 12px 10px;
  box-shadow: 0 10px 32px rgba(27, 95, 173, 0.08);
  min-height: 168px;
}
.pt-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}
.pt-avatar-wrap .customer-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.14);
  display: block;
}
.pt-avatar-flag {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.18);
  background: var(--white);
}
.es-flag-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pt-main { min-width: 0; }
.pt-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.pt-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.pt-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pt-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #E5A100;
  font-size: 0.6875rem;
  line-height: 1;
}
.pt-stars .fa-star { font-size: 0.6875rem; }
.pt-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted-2);
  margin: 0 0 8px;
  line-height: 1.3;
}
.pt-verified {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(27, 95, 173, 0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pt-meta-sep { color: var(--g100); font-weight: 400; }
.pt-text {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.45;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pt-quiz {
  margin: 0;
  padding: 6px 8px;
  background: var(--g20);
  border-radius: 10px;
  border: 1px solid var(--g50);
  display: grid;
  gap: 4px;
}
.pt-quiz-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: center;
}
.pt-quiz-row dt {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.25;
}
.pt-quiz-row dd {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--g900);
  text-align: right;
  white-space: nowrap;
}
.pt-taste-score {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #E5A100;
  font-size: 0.75rem;
}
.pt-taste-score .fa-star.pt-taste-star--off {
  color: var(--g100);
}
.pt-taste-num {
  margin-left: 3px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}
.pt-google-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--g100);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.pt-google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.pt-google-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Preparación sobre (vídeo ancho completo + copy) ───────────────────────── */
.prep-section {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.prep-media {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #0a1628;
  line-height: 0;
}
.prep-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: cover;
  vertical-align: top;
}
.prep-video--poster {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.prep-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  max-width: 660px;
  margin: 0 auto;
  padding: 28px 20px 36px;
}
.prep-title {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--g900);
}
.prep-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-2);
}
.prep-text strong {
  color: var(--g900);
  font-weight: 700;
}
.prep-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: var(--g900);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}
.prep-cta:hover {
  background: var(--g800);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.24);
}
.prep-cta:active {
  transform: translateY(0);
}
@media (min-width: 640px) {
  .prep-copy {
    padding: 32px 28px 40px;
  }
}
@media (min-width: 901px) {
  .prep-copy {
    padding: 36px 28px 44px;
  }
  .prep-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 901px) {
  .gallery-col {
    position: static;
  }
  .info-col {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 900px) {
  body.has-mobile-bar { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .hero {
    overflow-x: hidden;
    overflow-y: visible;
  }
  .hero::after {
    width: min(100%, 480px);
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-inner,
  .offer-wrap,
  #producto {
    max-width: 100%;
    overflow-x: clip;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .gallery-col {
    position: static;
    padding: 0;
    margin: 0;
    background: var(--white);
    border: none;
    overflow: hidden;
    max-width: 100%;
  }
  .gallery-main {
    max-width: none;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: 1 / 1;
    max-height: none;
    min-height: 0;
    align-items: center;
  }
  .gallery-main img#mainImg {
    object-position: center;
    height: 100%;
    width: 100%;
  }
  .gallery-nav {
    width: 36px;
    height: 36px;
  }
  .gallery-nav--prev { left: 8px; }
  .gallery-nav--next { right: 8px; }
  .gallery-counter {
    bottom: 10px;
    right: 10px;
    font-size: 0.625rem;
  }
  .gallery-thumbs-wrap {
    margin-top: 0;
    padding: 14px 0 16px;
    border-top: 1px solid var(--g50);
    background: var(--g20);
    border-radius: 0;
    overflow: hidden;
  }
  .gallery-thumbs {
    justify-content: flex-start;
    padding: 0 16px;
    margin: 0;
    gap: 10px;
    overscroll-behavior-x: contain;
  }
  .gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 2px solid var(--g100);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.08);
    opacity: 0.9;
  }
  .gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(27, 95, 173, 0.2);
    opacity: 1;
    transform: none;
  }
  .info-col {
    padding: 20px 16px 32px;
    max-height: none !important;
    height: auto !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
    position: relative;
    z-index: 2;
    max-width: 100%;
  }
  .benefit-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .info-col .cart-micro { display: none; }
  .mobile-buy-bar { display: flex; }
  .offer-wrap { position: relative; z-index: 1; margin-bottom: 8px; }
  .packs-list { padding-bottom: 4px; }
}
@media (min-width: 768px) {
  .nav-logo { font-size: 1.5rem; }
}
@media (max-width: 380px) {
  .nav-logo { font-size: 1.25rem; }
  .mbb-btn { padding: 12px 16px; font-size: 0.8125rem; }
}

/* ── Pack selector ───────────────────────────────────────────────────────────── */
.offer-wrap {
  background: var(--white);
  border: 1px solid var(--g50);
  border-radius: var(--r-lg);
  overflow: visible;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.offer-head {
  text-align: center;
  padding: 11px 16px;
  background: var(--g600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--g20);
  border-bottom: 1px solid var(--g50);
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}
.countdown-timer {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.packs-list { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 10px; }
.pack-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid var(--g50);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.pack-1-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  border: 2px solid var(--g50);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pack-1-block.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(27, 95, 173, 0.12), var(--shadow-sm);
}
.pack-1-block .pack-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.pack-1-block .pack-card:hover {
  box-shadow: none;
}
.pack-1-block .pack-card.active {
  border: none;
  box-shadow: none;
  background: transparent;
}
.pack-1-block .pack-card-main {
  border-radius: 0;
}
.pack-1-block.is-active .pack-card-main {
  background: linear-gradient(135deg, rgba(27,95,173,0.04) 0%, var(--white) 55%);
}
.pack-addon--no-check {
  pointer-events: none;
  opacity: 0.5;
}
.pack-addon--no-check .pack-addon-checkbox {
  visibility: hidden;
}

.pack-card:hover {
  border-color: var(--g100);
  box-shadow: var(--shadow-sm);
}
.pack-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(27,95,173,0.12), var(--shadow-sm);
}
.pack-card-main {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 0 10px;
  padding: 12px 12px 12px 10px;
  border-radius: 6px;
  overflow: hidden;
}
.pack-card-main--badged {
  padding-top: 22px;
}
.pack-card.active .pack-card-main {
  background: linear-gradient(135deg, rgba(27,95,173,0.04) 0%, var(--white) 55%);
}
.pack-visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--g100);
  box-shadow: 0 6px 20px rgba(10,22,40,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pack-card:hover .pack-visual { transform: scale(1.02); }
.pack-card.active .pack-visual {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(27,95,173,0.18);
}
.pack-visual-svg { width: 100%; height: 100%; display: block; }
.pack-visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.pack-content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-self: center;
}
.pack-select-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.pack-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--g100);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.pack-card.active .pack-radio { border-color: var(--accent); }
.pack-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.15s;
}
.pack-card.active .pack-radio-dot { opacity: 1; }
.pack-name {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.pack-name-meta {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}
.pack-name-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
  flex: 1;
  min-width: 0;
}
.pack-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  min-width: 0;
  grid-column: 1;
}
.pack-duration {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  grid-column: 2;
  justify-self: end;
  text-align: right;
  padding-left: 8px;
}
.pack-card.active .pack-duration {
  color: var(--accent);
}
.pack-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 2px 0 0;
  padding-left: 30px;
}
.pack-detail-line {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted-2);
}
.pack-detail-line--lead {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
}
.pack-detail-line--price {
  color: var(--muted);
}
.pack-detail-line--price strong {
  color: var(--accent);
  font-weight: 800;
}
.pack-prices {
  grid-column: 3;
  grid-row: 1;
  text-align: right;
  flex-shrink: 0;
  align-self: start;
  padding-top: 2px;
  min-width: 76px;
  white-space: nowrap;
}
.pack-price-now {
  font-family: var(--ff-price);
  font-size: 1.25rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pack-price-was {
  font-family: var(--ff-price);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-2);
  text-decoration: line-through;
  display: block;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}
.pack-badge {
  position: absolute;
  top: 0;
  right: 12px;
  left: auto;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(27, 95, 173, 0.28);
  line-height: 1.2;
  pointer-events: none;
}
.pack-card--badged {
  overflow: visible;
}
.pack-badge--best {
  background: #B8860B;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

.pack-addon {
  display: grid;
  grid-template-columns: 20px 34px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 0;
  margin: 0;
  padding: 5px 12px 5px 10px;
  border-top: 1px solid var(--g100);
  background: var(--g50);
  cursor: pointer;
}
.pack-1-block.is-active .pack-addon {
  background: rgba(27, 95, 173, 0.06);
  border-top-color: rgba(27, 95, 173, 0.14);
}
.pack-addon-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pack-addon-checkbox {
  grid-column: 1;
  align-self: center;
  justify-self: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--g200);
  border-radius: 7px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(10, 22, 40, 0.06);
}
.pack-addon-checkbox::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  margin-top: -2px;
  transition: transform 0.15s ease;
}
.pack-addon:has(.pack-addon-check:checked) .pack-addon-checkbox {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(27, 95, 173, 0.28);
}
.pack-addon:has(.pack-addon-check:checked) .pack-addon-checkbox::after {
  transform: rotate(45deg) scale(1);
}
.pack-addon:has(.pack-addon-check:focus-visible) .pack-addon-checkbox {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.pack-addon-thumb,
.pack-addon .whisk-thumb {
  grid-column: 2;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--white);
  border: 1px solid var(--g100);
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 2px;
}
.whisk-thumb--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.gift-icon--img {
  width: 36px;
  height: 36px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--g100);
}
.gift-whisk-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pack-addon-info {
  grid-column: 3;
  min-width: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
}
.pack-addon-price {
  grid-column: 4;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.gifts-section {
  margin: 18px 10px 6px;
  padding: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(27, 95, 173, 0.1) 0%, var(--g50) 42%, var(--g20) 100%);
  border: 1.5px solid rgba(27, 95, 173, 0.2);
  box-shadow: 0 6px 24px rgba(27, 95, 173, 0.12);
  overflow: hidden;
}
.gifts-header {
  padding: 16px 16px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(27, 95, 173, 0.14);
}
.gifts-title {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
  line-height: 1.3;
}
.gifts-hint {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  margin: 0;
  line-height: 1.4;
}
.gifts-section .gift-item {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.35);
}
.gifts-section .gift-item:first-of-type {
  border-top: none;
}
.gift-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--g50);
}
.gifts-section .gift-item:last-child {
  border-bottom: none;
  padding-bottom: 14px;
}
.gift-item:last-child { border-bottom: none; }
.gift-item.locked {
  opacity: 1;
  position: relative;
}
.gift-item.locked .gift-icon,
.gift-item.locked .gift-label,
.gift-item.locked .gift-price {
  opacity: 0.45;
  filter: grayscale(1);
}
.gift-item.locked .gift-lock-icon {
  font-size: 1.1rem;
  filter: none;
  opacity: 1;
}
.gift-icon { font-size: 1.25rem; flex-shrink: 0; width: 32px; text-align: center; }
.gift-label { flex: 1; font-size: 0.8125rem; color: var(--text-2); line-height: 1.35; min-width: 0; }
.gift-label span { color: var(--muted-2); font-size: 0.75rem; display: block; margin-top: 1px; }
.gift-price { font-size: 0.8125rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.gift-price s { color: var(--muted-2); font-weight: 500; margin-left: 4px; }
.gift-lock-icon { font-size: 1rem; color: var(--muted); flex-shrink: 0; }
@media (max-width: 480px) {
  .gifts-section { margin: 12px 6px 4px; border-radius: 10px; }
  .gifts-header { padding: 10px 12px 8px; }
  .gifts-title { font-size: 0.75rem; margin-bottom: 2px; }
  .gifts-hint { font-size: 0.6875rem; }
  .gifts-section .gift-item { padding: 8px 10px; gap: 7px; }
  .gift-icon { font-size: 1rem; width: 24px; }
  .gift-icon--img { width: 28px; height: 28px; padding: 3px; border-radius: 6px; }
  .gift-label { font-size: 0.6875rem; line-height: 1.25; }
  .gift-label span { font-size: 0.625rem; margin-top: 0; }
  .gift-price { font-size: 0.6875rem; }
  .gift-price s { font-size: 0.625rem; margin-left: 3px; }
  .gift-lock-icon { font-size: 0.85rem; }
}
/* ── Post-purchase (CTA Calmova) ─────────────────────────────────────────────── */
.post-purchase {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.shipping-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--g50);
  border: 1.5px solid var(--g100);
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s, opacity 0.25s;
}
.shipping-banner.is-unlocked {
  background: rgba(27, 95, 173, 0.06);
  border-color: var(--accent);
}
.shipping-banner.locked {
  opacity: 0.92;
}
.shipping-banner-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}
.shipping-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shipping-banner-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.shipping-banner-locked-msg {
  font-size: 0.75rem;
  color: var(--muted);
}
.shipping-banner.is-unlocked .shipping-banner-locked-msg { display: none; }
.shipping-banner-price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  display: none;
}
.shipping-banner.is-unlocked .shipping-banner-price { display: block; }
.shipping-banner-price s {
  color: var(--muted-2);
  font-weight: 500;
  margin-left: 4px;
}
.shipping-banner-lock {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: var(--g900);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-add-cart:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(27, 95, 173, 0.28);
}

.payment-methods {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 32px;
  padding: 5px 8px;
  background: var(--white);
  border: 1.5px solid var(--g100);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(10, 22, 40, 0.06);
}
.pay-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 36px;
  max-height: 20px;
  object-fit: contain;
  object-position: center;
}

.customer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.product-accordions {
  border-top: 1px solid var(--g50);
  margin-top: 4px;
}
.p-acc-item {
  border-bottom: 1px solid var(--g50);
}
.p-acc-btn {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
}
.p-acc-btn:hover,
.p-acc-item.open .p-acc-btn { color: var(--accent); }
.p-acc-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--g100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s;
}
.p-acc-item.open .p-acc-icon {
  transform: rotate(180deg);
  border-color: var(--accent);
  color: var(--accent);
}
.p-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.p-acc-item.open .p-acc-body { max-height: 520px; }
.p-acc-inner {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 0 18px;
}
.p-acc-inner p { margin-bottom: 10px; }
.p-acc-inner p:last-child { margin-bottom: 0; }
.p-acc-lead { color: var(--text-2); margin-bottom: 10px !important; }
.p-acc-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-acc-list li {
  padding-left: 14px;
  position: relative;
}
.p-acc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.p-acc-note {
  font-size: 0.8125rem !important;
  color: var(--muted-2) !important;
}

.cart-micro {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-2);
  padding-top: 4px;
  margin: 0;
}

/* Pack selector — móvil: tarjetas rectangulares, compactas y alineadas */
@media (max-width: 520px) {
  .offer-wrap {
    border-radius: 8px;
    margin-bottom: 6px;
  }
  .offer-head {
    padding: 9px 10px;
    font-size: 0.6875rem;
    border-radius: 8px 8px 0 0;
  }
  .countdown-bar {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
  .packs-list {
    padding: 6px 8px 8px;
    gap: 8px;
  }
  .pack-card,
  .pack-1-block {
    border-radius: 6px;
    border-width: 2px;
  }
  .pack-card.active,
  .pack-1-block.is-active {
    border-width: 3px;
    border-color: var(--accent);
    box-shadow:
      0 0 0 2px rgba(27, 95, 173, 0.18),
      0 4px 18px rgba(27, 95, 173, 0.14);
  }
  .pack-card-main {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    grid-template-areas:
      "visual head prices"
      "visual detail detail";
    column-gap: 8px;
    row-gap: 0;
    padding: 7px 10px 7px;
    align-items: center;
  }
  .pack-card-main--badged {
    padding-top: 16px;
  }
  .pack-badge {
    right: 8px;
    font-size: 0.625rem;
    padding: 4px 10px;
  }
  .pack-visual {
    grid-area: visual;
    grid-row: 1 / -1;
    grid-column: 1;
    width: 52px;
    height: 52px;
    border-radius: 6px;
    align-self: center;
  }
  .pack-content {
    display: contents;
    min-width: 0;
  }
  .pack-select-row {
    grid-area: head;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .pack-radio {
    width: 20px;
    height: 20px;
    margin-top: 0;
    flex-shrink: 0;
    border-width: 2px;
  }
  .pack-card.active .pack-radio {
    border-width: 2.5px;
  }
  .pack-radio-dot {
    width: 8px;
    height: 8px;
  }
  .pack-name-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 6px;
    width: 100%;
    min-width: 0;
  }
  .pack-title {
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.15;
  }
  .pack-duration {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    padding-left: 0;
    grid-column: unset;
    justify-self: unset;
    text-align: left;
  }
  .pack-detail {
    grid-area: detail;
    margin: 0;
    padding: 0;
    gap: 0;
    min-width: 0;
  }
  .pack-detail-line {
    font-size: 0.6875rem;
    line-height: 1.25;
  }
  .pack-detail-line--lead {
    font-size: 0.6875rem;
  }
  .pack-prices {
    grid-area: prices;
    align-self: center;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  .pack-price-now {
    font-size: 1.125rem;
  }
  .pack-price-was {
    font-size: 0.6875rem;
    margin-top: 0;
  }
  .pack-addon {
    grid-template-columns: 16px 28px minmax(0, 1fr) auto;
    column-gap: 6px;
    padding: 4px 8px;
  }
}
@media (max-width: 400px) {
  .nav-inner { padding: 0 14px; gap: 10px; }
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--white);
  overflow: visible;
  padding: 0;
}
/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}
/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center, rgba(27,95,173,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,95,173,0.08);
  border: 1px solid rgba(91,159,232,0.35);
  color: var(--g600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.075rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.star-icons { color: #F6C324; font-size: 1rem; letter-spacing: 2px; }
.star-text  { font-size: 0.875rem; color: var(--muted); }
.star-text strong { color: var(--text); font-weight: 600; }
.hero-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.price-now {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-was { font-size: 1.1rem; color: var(--muted-2); text-decoration: line-through; }
.price-save {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  padding: 19px 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r) var(--r) 0 0;
}
.btn-hero:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-hero:active { transform: translateY(0); }
.btn-arrow { transition: transform 0.2s; font-size: 1.1em; }
.btn-hero:hover .btn-arrow { transform: translateX(5px); }

.hero-micro {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.micro-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--muted-2);
}
.micro-check { color: var(--accent); font-weight: 700; }

/* ── Hero Image ──────────────────────────────────────────────────────────────── */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.hero-img-ring-1 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(91,159,232,0.15);
  animation: ring-pulse 4s ease-in-out infinite;
}
.hero-img-ring-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(91,159,232,0.22);
  background: radial-gradient(circle, rgba(27,95,173,0.06) 0%, transparent 70%);
  animation: ring-pulse 4s ease-in-out 1s infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.04); opacity: 1; }
}
.hero-bottle {
  position: relative;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 32px 64px rgba(10,22,40,0.18));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(0.5deg); }
  66%       { transform: translateY(-7px) rotate(-0.3deg); }
}

/* ── Trust Stripe ─────────────────────────────────────────────────────────────── */
.trust-stripe {
  background: var(--g800);
  border-top: 1px solid rgba(91,159,232,0.12);
  border-bottom: 1px solid rgba(91,159,232,0.12);
  padding: 24px 0;
}
.trust-stripe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  text-align: center;
}
.ts-item { padding: 12px 8px; }
.ts-icon { font-size: 1.5rem; margin-bottom: 6px; }
.ts-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--g100);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ts-sub { font-size: 0.72rem; color: var(--muted-2); margin-top: 2px; }

/* ── Stats ────────────────────────────────────────────────────────────────────── */
.stats-section { background: var(--white); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--g50);
  transition: background 0.2s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: var(--g20); }
.stat-num-big {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--g600);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Section Shared ───────────────────────────────────────────────────────────── */
.section      { padding: 64px 0; }
.section--alt { background: var(--g20); border-top: 1px solid var(--g50); border-bottom: 1px solid var(--g50); }
.section--dark { background: var(--g800); }

.s-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.s-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}
.s-title--light { color: #fff; }
.s-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 580px;
}
.s-sub--light { color: var(--g200); }
.s-header { margin-bottom: 64px; }
.s-header--c { text-align: center; }
.s-header--c .s-sub { margin: 0 auto; }

/* ── Transformación (visual) ──────────────────────────────────────────────────── */
.transform-section.section {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.transform-hero--bleed {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  line-height: 0;
  background: #f0f0f0;
}
.transform-hero--bleed img {
  display: block;
  width: 100%;
  height: auto;
}

.transform-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 44px 20px 0;
  background: linear-gradient(180deg, #E8F2FC 0%, #F4F8FC 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.transform-header {
  margin-bottom: 32px;
}

.transform-title {
  font-family: var(--ff-body);
  font-size: clamp(1.5rem, 5.5vw, 1.875rem);
  font-weight: 800;
  color: var(--g900);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.transform-intro {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.transform-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 20px;
}

.transform-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.transform-pct {
  flex-shrink: 0;
  min-width: 72px;
  font-family: var(--ff-body);
  font-size: clamp(2.25rem, 9vw, 3rem);
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 2px 0 0;
}

.transform-copy {
  flex: 1;
  min-width: 0;
}

.transform-row-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--g900);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.transform-row-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.transform-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 32px auto 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(27,95,173,.06) 0%, rgba(27,95,173,.14) 100%);
  border: 1px solid rgba(27,95,173,.13);
  border-radius: var(--r-lg);
  text-align: center;
  line-height: 1.4;
}
.transform-trust strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.transform-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.transform-trust-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-2);
}

/* ── Ingredients ──────────────────────────────────────────────────────────────── */
.ingredients-section {
  overflow: hidden;
}
.ingredients-split {
  display: block;
}
.ing-left {
  background: linear-gradient(165deg, var(--g900) 0%, var(--g800) 45%, #0f2848 100%);
  padding: 52px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ing-left--full {
  max-width: 820px;
  margin: 0 auto;
}
.ing-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ing-cert-grid .ing-check-item {
  font-size: 0.875rem;
  color: var(--g100);
}
.ing-cert-grid .ing-check-dot {
  background: rgba(27, 95, 173, 0.25);
  border-color: rgba(147, 197, 240, 0.45);
  color: #b8dcff;
}
.ingredients-head {
  margin-bottom: 28px;
}
.ingredients-title {
  font-family: var(--ff-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.ingredients-lead {
  font-size: 0.9375rem;
  color: var(--g200);
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}
.s-eyebrow--light {
  color: var(--g300);
  margin-bottom: 12px;
  display: block;
}
.ingredients-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ing-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ing-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(147, 197, 240, 0.28);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.ing-item-photo {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(147, 197, 240, 0.22);
  background: rgba(10, 22, 40, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.ing-item-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.ing-item-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ing-item-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--g300);
  background: linear-gradient(135deg, rgba(27, 95, 173, 0.35) 0%, rgba(10, 22, 40, 0.6) 100%);
}
.ing-item-body {
  min-width: 0;
}
.ing-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.ing-item-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.ing-item-name sup {
  font-size: 0.65em;
  font-weight: 600;
  color: var(--g300);
}
.ing-item-dose {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: #b8dcff;
  background: rgba(27, 95, 173, 0.35);
  border: 1px solid rgba(147, 197, 240, 0.35);
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ing-item-desc {
  font-size: 0.875rem;
  color: var(--g100);
  line-height: 1.55;
  margin: 0;
}
.ing-right { display: none; }
.ingredient-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.ingredient-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.ingredient-row:hover { padding-left: 8px; }
.ing-index {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 24px;
  padding-top: 3px;
}
.ing-body { flex: 1; }
.ing-name {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.ing-name sup { font-size: 0.65em; color: var(--accent); font-family: var(--ff-body); }
.ing-desc { font-size: 0.875rem; color: var(--g200); line-height: 1.6; }
.ing-dose {
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(27,95,173,0.08);
  border: 1px solid rgba(27,95,173,0.18);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.ing-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.ing-check-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--g50);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Cómo funciona — ritual / timeline (estilo suplementos) ─────────────────── */
.ritual-section {
  padding: 56px 0 52px;
  background: linear-gradient(180deg, var(--g20) 0%, var(--white) 40%);
  border-top: 1px solid var(--g50);
}
.ingredients-section + .ritual-section {
  padding-top: 40px;
}
.ritual-section + .guarantee-section {
  margin-top: 0;
}
.ritual-wrap {
  max-width: 920px;
}
.ritual-head {
  text-align: center;
  margin-bottom: 36px;
}
.ritual-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27, 95, 173, 0.08);
  border: 1px solid rgba(27, 95, 173, 0.15);
  border-radius: 100px;
}
.ritual-title {
  margin: 0 0 14px;
  font-family: var(--ff-body);
  font-size: clamp(1.625rem, 4.8vw, 2.25rem);
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ritual-lead {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}
.ritual-dose {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 480px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(27, 95, 173, 0.07) 0%, rgba(27, 95, 173, 0.02) 100%);
  border: 1px solid rgba(27, 95, 173, 0.14);
  border-radius: 16px;
}
.ritual-dose-visual {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ritual-capsule {
  display: block;
  width: 14px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, #0d3d6e 100%);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}
.ritual-capsule--b {
  transform: rotate(12deg);
  opacity: 0.85;
}
.ritual-dose-label {
  margin: 0 0 2px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.ritual-dose-main {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.02em;
}
.ritual-dose-main strong {
  font-weight: 800;
}
.ritual-dose-sub {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.ritual-dose-box {
  margin: 10px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.45;
}
.ritual-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.ritual-timeline::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--g100);
  z-index: 0;
}
.ritual-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.ritual-step-rail {
  margin-bottom: 20px;
}
.ritual-step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px var(--white);
}
.ritual-step-phase {
  margin: 0 0 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ritual-step-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.ritual-step-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 240px;
}
.ritual-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.ritual-trust li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.ritual-trust li + li::before {
  content: '·';
  margin-right: 10px;
  color: var(--g100);
  font-weight: 400;
}

/* ── Testimonials ─────────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--g50);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-stars { margin-bottom: 14px; }
.t-stars-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #F6C324;
  font-size: 0.875rem;
  line-height: 1;
}
.t-stars-icons .fa-star { font-size: 0.875rem; }
.t-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 22px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px;
  height: 44px;
  background: var(--g50);
  border: 2px solid var(--g100);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.9375rem; color: var(--text); }
.t-meta { font-size: 0.8rem; color: var(--muted); }
.t-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Guarantee ─────────────────────────────────────────────────────────────────── */
.guarantee-section.section {
  padding: 0;
  border: none;
  background: transparent;
}
.guarantee-wrap {
  background: var(--g800);
  border-radius: 0;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  max-width: none;
  width: 100%;
  margin: 0;
}
.g-seal {
  width: 130px; height: 130px;
  border: 3px solid rgba(27,95,173,0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(27,95,173,0.08);
  flex-shrink: 0;
}
.g-seal-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.g-seal-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g200);
  text-align: center;
  margin-top: 4px;
}
.g-title {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.g-text { font-size: 1rem; color: var(--g200); line-height: 1.72; }

/* ── FAQ ──────────────────────────────────────────────────────────────────────── */
.faq-section.section {
  padding: 44px 0 28px;
  background: linear-gradient(180deg, #f0f6fc 0%, var(--bg) 100%);
  border-top: 1px solid rgba(27, 95, 173, 0.12);
  border-bottom: none;
}
.transform-section + .faq-section.section {
  padding-top: 32px;
}
.faq-section + .ingredients-section .ing-left {
  padding-top: 44px;
}
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}
.faq-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27, 95, 173, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.faq-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.faq-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}
.faq-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(27, 95, 173, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 8px 20px;
}
.faq-item { border-bottom: 1px solid var(--g50); }
.faq-item:last-child { border-bottom: none; }
.faq-item:first-child { border-top: none; }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-btn:hover, .faq-item.open .faq-btn { color: var(--accent); }
.faq-icon {
  width: 32px; height: 32px;
  border: 2px solid rgba(27, 95, 173, 0.25);
  background: rgba(27, 95, 173, 0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s, background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  border-color: var(--accent);
  background: rgba(27, 95, 173, 0.12);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner {
  overflow: hidden;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.72;
  padding-right: 48px;
}
.faq-item.open .faq-body-inner { padding-bottom: 24px; }
@media (min-width: 768px) {
  .faq-section.section { padding: 52px 0 32px; }
  .transform-section + .faq-section.section { padding-top: 40px; }
  .faq-wrap { gap: 32px; }
  .faq-list { padding: 12px 28px; border-radius: 20px; }
  .faq-btn { padding: 26px 8px; }
}

/* ── CTA Final ─────────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--g900);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(27,95,173,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
  margin: 32px 0 28px;
}
.cta-price-now {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}
.cta-price-was { font-size: 1.2rem; color: var(--muted-2); text-decoration: line-through; }
.cta-price-save {
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.cta-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.cta-include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--g200);
}
.cta-check-green { color: var(--accent); font-weight: 900; }

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--g900);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.f-brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.f-brand-name span { color: var(--accent); }
.f-tagline { font-size: 0.875rem; color: var(--muted-2); line-height: 1.6; max-width: 240px; }
.f-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g300);
  margin-bottom: 16px;
}
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 0.875rem; color: var(--muted-2); transition: color 0.2s; }
.f-links a:hover { color: var(--g100); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.f-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }
.f-legal { display: flex; gap: 20px; }
.f-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.f-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── Páginas legales ─────────────────────────────────────────────────────────── */
.legal-page-body {
  background: var(--g20);
  min-height: 100vh;
}
.legal-page {
  padding-bottom: 0;
}

/* Hero */
.legal-hero {
  position: relative;
  padding: 24px 0 0;
  overflow: hidden;
}
.legal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(27, 95, 173, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(147, 197, 240, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--g20) 100%);
  pointer-events: none;
}
.legal-hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 14px 8px 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--g100);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.legal-back:hover {
  color: var(--accent-hover);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.legal-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--g800) 0%, var(--g600) 55%, var(--g500) 100%);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.22);
  margin-bottom: 28px;
}
.legal-hero-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: #fff;
  font-size: 1.375rem;
}
.legal-hero-text { min-width: 0; }
.legal-hero-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g200);
}
.legal-hero-text h1 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

/* Layout sidebar + contenido */
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 56px;
  overflow-x: clip;
}
.legal-sidebar {
  position: sticky;
  top: 78px;
}
.legal-sidebar-label {
  margin: 0 0 10px;
  padding: 0 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.legal-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.legal-nav-link:hover {
  border-color: var(--g100);
  box-shadow: var(--shadow-sm);
}
.legal-nav-link.is-active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(27, 95, 173, 0.08) 0%, var(--white) 100%);
  box-shadow: 0 8px 24px rgba(27, 95, 173, 0.12);
}
.legal-nav-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--g50);
  color: var(--accent);
  font-size: 0.9375rem;
}
.legal-nav-link.is-active .legal-nav-icon {
  background: var(--accent);
  color: var(--white);
}
.legal-nav-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.legal-nav-text strong {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
}
.legal-nav-text span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
}
.legal-sidebar-help {
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--g50);
  box-shadow: var(--shadow-sm);
}
.legal-sidebar-help p {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
}
.legal-sidebar-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  word-break: break-all;
}
.legal-sidebar-email:hover { color: var(--accent-hover); }

/* Contenido */
.legal-prose {
  max-width: 100%;
  overflow-wrap: anywhere;
  background: var(--white);
  border: 1px solid var(--g50);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.06);
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.legal-prose > p:first-of-type {
  margin-top: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}
.legal-prose h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  margin: 32px 0 12px;
  padding: 12px 0 12px 14px;
  letter-spacing: -0.02em;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(27, 95, 173, 0.06) 0%, transparent 100%);
  border-radius: 0 10px 10px 0;
}
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--g700);
  margin: 22px 0 8px;
}
.legal-prose p { margin: 0 0 16px; }
.legal-prose ul,
.legal-prose ol {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.legal-prose ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 8px;
}
.legal-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-prose ol {
  counter-reset: legal-ol;
  padding-left: 0;
}
.legal-prose ol li {
  counter-increment: legal-ol;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 8px;
}
.legal-prose ol li::before {
  content: counter(legal-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
}
.legal-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 95, 173, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.legal-prose a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}
.legal-prose strong { color: var(--text); font-weight: 700; }

/* Tarjeta identidad */
.legal-identity {
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--g50) 0%, var(--white) 100%);
  border: 1px solid var(--g100);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.legal-identity-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g100);
}
.legal-identity-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.125rem;
}
.legal-identity-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.legal-identity-sub {
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.legal-identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 0;
}
.legal-identity-item { margin: 0; }
.legal-identity-item dt {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-identity-item dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
}
.legal-identity-item dd a {
  color: var(--accent);
  font-weight: 600;
}
.legal-prose-footer {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--g50);
  border: 1px solid var(--g100);
}
.legal-prose-footer p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.legal-prose-footer i {
  color: var(--accent);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .legal-sidebar { position: static; }
  .legal-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .legal-nav-text span { display: none; }
  .legal-sidebar-help { display: none; }
}

@media (max-width: 640px) {
  .legal-hero-card {
    flex-direction: column;
    padding: 22px 18px;
    gap: 14px;
  }
  .legal-prose { padding: 24px 18px 22px; }
  .legal-identity-grid { grid-template-columns: 1fr; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-nav-text span { display: block; }
  .f-legal { flex-wrap: wrap; justify-content: center; gap: 12px 16px; }
}

/* ── Página gracias ───────────────────────────────────────────────────────────── */
.thanks-page {
  min-height: 100vh;
  background: var(--g20);
  overflow-x: hidden;
  max-width: 100%;
}
.thanks-main {
  padding-bottom: 0;
  overflow-x: clip;
  max-width: 100%;
}
.thanks-hero-inner,
.thanks-content,
.thanks-card {
  max-width: 100%;
}
.thanks-hero {
  position: relative;
  padding: 36px 0 32px;
  text-align: center;
  overflow: hidden;
}
.thanks-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(34, 197, 94, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--g20) 100%);
  pointer-events: none;
}
.thanks-hero--pending .thanks-hero-bg {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(27, 95, 173, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--g20) 100%);
}
.thanks-hero-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}
.thanks-hero-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
}
.thanks-hero--pending .thanks-hero-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--g600) 100%);
  box-shadow: 0 12px 32px rgba(27, 95, 173, 0.28);
}
.thanks-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.625rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
}
.thanks-hero-lead {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px 48px;
}
.thanks-card {
  background: var(--white);
  border: 1px solid var(--g50);
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
}
.thanks-section-title {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.thanks-order {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--g50);
}
.thanks-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 0;
}
.thanks-order-item { margin: 0; }
.thanks-order-item--wide { grid-column: 1 / -1; }
.thanks-order-item dt {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.thanks-order-item dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.thanks-order-total {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--accent) !important;
  letter-spacing: -0.02em;
}
.thanks-includes {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--g50);
}
.thanks-includes-title {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.thanks-includes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thanks-includes-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 10px 12px;
  background: var(--g20);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.thanks-includes-emoji {
  font-size: 1.125rem;
  line-height: 1;
  color: var(--accent);
}
.thanks-includes-badge {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 100px;
  background: #d4edda;
  color: #155724;
}
.thanks-next-bizum-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  background: var(--g20);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.thanks-next-bizum-note i { color: var(--accent); margin-right: 6px; }
.thanks-bizum {
  margin-bottom: 24px;
}
.thanks-bizum-head {
  margin-bottom: 20px;
}
.thanks-bizum-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  margin-bottom: 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.thanks-bizum-head h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.thanks-bizum-head p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}
.thanks-bizum-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.thanks-bizum-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
  background: var(--g20);
  border-radius: 12px;
  border: 1px solid var(--g50);
}
.thanks-bizum-step-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}
.thanks-bizum-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.thanks-bizum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--g20);
  border: 1px solid var(--g100);
  border-radius: 12px;
}
.thanks-bizum-row--highlight {
  background: linear-gradient(135deg, var(--g50) 0%, var(--white) 100%);
  border-color: var(--g200);
  box-shadow: 0 4px 16px rgba(27, 95, 173, 0.08);
}
.thanks-bizum-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
.thanks-bizum-label i { color: var(--accent); width: 1rem; text-align: center; }
.thanks-bizum-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  text-align: right;
  word-break: break-word;
}
.thanks-bizum-value--amount {
  font-size: 1.375rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.thanks-bizum-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
  background: var(--g50);
  border-radius: 12px;
  border: 1px solid var(--g100);
}
.thanks-bizum-note i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.thanks-next {
  margin-bottom: 24px;
}
.thanks-next-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.thanks-next-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}
.thanks-next-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--g50);
  color: var(--accent);
  font-size: 1rem;
}
.thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.thanks-btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.thanks-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: var(--r);
  border: 2px solid var(--g100);
  background: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.thanks-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--g50);
}
.thanks-help {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}
.thanks-help a {
  color: var(--accent);
  font-weight: 600;
}
.thanks-help a:hover { color: var(--accent-hover); }

@media (max-width: 520px) {
  .thanks-bizum-steps { grid-template-columns: 1fr; }
  .thanks-bizum-step { flex-direction: row; text-align: left; padding: 12px 14px; }
  .thanks-order-grid { grid-template-columns: 1fr; }
  .thanks-bizum-row { flex-direction: column; align-items: flex-start; }
  .thanks-bizum-value { text-align: left; }
}

/* ── Scroll animations ────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid       { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap   { order: -1; padding: 20px; }
  .hero-bottle     { max-width: 220px; }
  .hero-img-ring-1 { width: 280px; height: 280px; }
  .hero-img-ring-2 { width: 220px; height: 220px; }
  .hero-sub, .hero-micro, .hero-stars { max-width: 100%; margin-left: auto; margin-right: auto; justify-content: center; }
  .btn-hero        { max-width: 100%; }

  .testimonials-grid   { grid-template-columns: 1fr 1fr; }
  .ritual-section { padding: 40px 0 44px; }
  .ingredients-section + .ritual-section { padding-top: 40px; }
  .ritual-dose {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
    padding: 20px 18px;
  }
  .ritual-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  .ritual-timeline::before {
    top: 0;
    bottom: 24px;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .ritual-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 28px;
  }
  .ritual-step:last-child { padding-bottom: 0; }
  .ritual-step-rail {
    margin: 0;
    flex-shrink: 0;
  }
  .ritual-step-dot {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    box-shadow: 0 0 0 5px var(--white);
  }
  .ritual-step-content { flex: 1; min-width: 0; padding-top: 4px; }
  .ritual-step-text { max-width: none; }
  .ritual-trust { gap: 6px 14px; }
  .ing-cert-grid { grid-template-columns: 1fr; }
  .ing-left--full { padding: 48px 20px 52px; }
  .ingredients-split   { grid-template-columns: 1fr; }
  .ing-left, .ing-right { padding: 60px 36px; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .stat-box            { border-bottom: 1px solid var(--g50); }
  .trust-stripe-grid   { grid-template-columns: repeat(2, 1fr); }
  .guarantee-wrap      { grid-template-columns: 1fr; text-align: center; padding: 44px 20px; gap: 32px; }
  .g-seal              { margin: 0 auto; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section          { padding: 48px 0; }
  .faq-section.section { padding: 36px 0 24px; }
  .hero:has(.hero-inner) { padding: 0; }
  .hero:not(:has(.hero-inner)) { padding: 64px 0 52px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .hero-headline    { font-size: 2.4rem; }
  .price-now        { font-size: 2.4rem; }
  .cta-price-now    { font-size: 2.8rem; }
  .footer-top       { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .s-title          { font-size: 1.8rem; }
}

/* ── UGC vídeos «Ya lo han probado» ─────────────────────────────────────────── */
.ugc-section {
  background: var(--g20);
  padding: 40px 0 40px;
  border-top: 1px solid var(--g50);
  overflow: hidden;
}
.ugc-wrap {
  max-width: 100%;
  padding: 0;
}
.ugc-title {
  font-family: var(--ff-body);
  font-size: clamp(1.375rem, 4.5vw, 1.75rem);
  font-weight: 800;
  color: var(--g900);
  text-align: center;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  padding: 0 16px;
}
.ugc-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ugc-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 4px 0 8px;
  scroll-padding-inline: 11vw;
}
.ugc-viewport::-webkit-scrollbar { display: none; }
.ugc-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  max-width: none;
  padding: 12px max(12px, calc(50% - 39vw)) 16px;
  box-sizing: border-box;
}
.ugc-slide {
  flex: 0 0 78vw;
  width: 78vw;
  max-width: 300px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.ugc-slide.is-active {
  opacity: 1;
  z-index: 3;
}
.ugc-slide .ugc-video-card {
  aspect-ratio: 9 / 15;
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, aspect-ratio 0.35s ease;
}
.ugc-slide.is-active .ugc-video-card {
  aspect-ratio: 9 / 16.25;
  transform: scale(1);
  box-shadow: 0 20px 52px rgba(27, 95, 173, 0.28);
}
.ugc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 16px;
}
.ugc-page-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--g100);
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}
.ugc-page-dot.is-active {
  width: 24px;
  background: var(--accent);
}
.ugc-page-dot:hover { background: var(--accent-soft, rgba(27, 95, 173, 0.35)); }
.ugc-video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--g800);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.14);
}
.ugc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--g800);
}
.ugc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 14px 120px;
  pointer-events: none;
  text-align: center;
  z-index: 2;
}
.ugc-overlay-line {
  margin: 0 0 6px;
  font-size: clamp(0.9375rem, 3.5vw, 1.0625rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.ugc-overlay-badge {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  max-width: 92%;
}
.ugc-overlay-badge--blue {
  background: rgba(27, 95, 173, 0.92);
}
.ugc-overlay-badge--red {
  background: rgba(198, 40, 40, 0.92);
}
.ugc-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.ugc-ctrl {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
}
.ugc-ctrl:hover { background: rgba(10, 22, 40, 0.65); }
.ugc-play .ugc-icon-pause { display: none; }
.ugc-play.is-playing .ugc-icon-play { display: none; }
.ugc-play.is-playing .ugc-icon-pause { display: block; }
.ugc-mute .ugc-icon-unmuted { display: none; }
.ugc-mute.is-unmuted .ugc-icon-muted { display: none; }
.ugc-mute.is-unmuted .ugc-icon-unmuted { display: block; }
.ugc-product-card {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 8px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.18);
}
.ugc-slide.is-active .ugc-product-card {
  display: flex;
}
.ugc-product-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.ugc-product-info {
  flex: 1;
  min-width: 0;
}
.ugc-product-name {
  margin: 0 0 2px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ugc-product-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ugc-price-now {
  font-size: 0.875rem;
  font-weight: 800;
  color: #c62828;
}
.ugc-price-was {
  font-size: 0.6875rem;
  color: var(--muted-2);
  text-decoration: line-through;
}
.ugc-cta-btn {
  flex-shrink: 0;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.ugc-cta-btn:hover { background: var(--accent-hover); }
.ugc-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.72);
  color: #fff;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, opacity 0.15s;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.ugc-nav:hover:not(:disabled) {
  background: var(--g900);
}
.ugc-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.ugc-nav--prev { left: 6px; }
.ugc-nav--next { right: 6px; }

@media (min-width: 901px) {
  .ugc-section { padding: 44px 0 44px; }
  .ugc-title { margin-bottom: 28px; }
  .ugc-viewport { scroll-padding-inline: 24px; }
  .ugc-track {
    gap: 16px;
    padding: 8px calc(50vw - 140px) 12px;
    align-items: center;
  }
  .ugc-slide {
    flex: 0 0 220px;
    width: 220px;
    max-width: none;
    opacity: 0.7;
    scroll-snap-align: start;
  }
  .ugc-slide.is-active {
    flex: 0 0 280px;
    width: 280px;
    opacity: 1;
    scroll-snap-align: center;
  }
  .ugc-slide .ugc-video-card {
    aspect-ratio: 9 / 15.5;
    transform: scale(0.94);
  }
  .ugc-slide.is-active .ugc-video-card {
    aspect-ratio: 9 / 16;
    transform: scale(1);
  }
  .ugc-viewport {
    scroll-padding-inline: 24px;
  }
  .ugc-nav { width: 44px; height: 44px; }
  .ugc-nav--prev { left: 12px; }
  .ugc-nav--next { right: 12px; }
  .ugc-product-card { display: none !important; }
  .ugc-overlay { padding-bottom: 48px; }
}

@media (max-width: 900px) {
  .hero + .ugc-section,
  .ugc-section + .stress-section { padding-top: 40px; }
}

/* ── Stress (visual centrado) ───────────────────────────────────────────────── */
.stress-section {
  background: var(--white);
  padding: 44px 0 44px;
}
.hero + .ugc-section { padding-top: 44px; }
.ugc-section + .stress-section { padding-top: 44px; }
.hero + .stress-section { padding-top: 44px; }

.stress-visual {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
}

.stress-title {
  font-family: var(--ff-body);
  font-size: clamp(1.5rem, 5.5vw, 1.875rem);
  font-weight: 800;
  color: var(--g900);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
}

.stress-block {
  margin-bottom: 40px;
}
.stress-block--last {
  margin-bottom: 36px;
}

.stress-num {
  font-family: var(--ff-body);
  font-size: clamp(3.25rem, 14vw, 4.75rem);
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 10px;
}

.stress-label {
  font-size: clamp(1rem, 4vw, 1.125rem);
  font-weight: 700;
  color: var(--g900);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.stress-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.stress-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--g900);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.18);
}
.stress-cta:hover {
  background: var(--g800);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.22);
}

/* ── Mobile: secciones estrés + beneficios ──────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 48px 0; }
  .guarantee-section.section { padding: 0; }
  .guarantee-wrap { padding: 40px 16px; }
  .hero + .ugc-section,
  .ugc-section + .stress-section { padding-top: 36px; }
  .hero + .stress-section { padding-top: 36px; padding-bottom: 44px; }
  .stress-visual { max-width: 100%; padding: 0 4px; }
  .stress-title { margin-bottom: 32px; }
  .stress-block { margin-bottom: 32px; }
  .stress-block--last { margin-bottom: 28px; }
  .stress-num { font-size: clamp(3rem, 13vw, 4.25rem); }
  .stress-label { margin-bottom: 14px; }
  .stress-desc { font-size: 0.875rem; line-height: 1.65; }

  .product-sub { font-size: 0.875rem; margin-bottom: 10px; }
  .transform-section.section { padding: 0; }
  .transform-section + .faq-section.section { padding-top: 28px; }
  .faq-section + .ingredients-section .ing-left { padding-top: 36px; }
  .transform-wrap { padding: 36px 16px 0; }
  .transform-trust { margin-bottom: 24px; }
  .transform-header { margin-bottom: 26px; }
  .transform-stats { gap: 24px; margin-bottom: 24px; }
  .transform-row { gap: 14px; }
  .transform-pct { min-width: 64px; font-size: 2.25rem; }
  .transform-row-title { font-size: 1rem; }
}

@media (max-width: 600px) {
  .container,
  .container--sm,
  .container--xs,
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section { padding: 36px 0; }
  .transform-section.section { padding: 0; }
  .transform-trust { margin-bottom: 20px; }
  .faq-section.section { padding: 32px 0 20px; }
  .guarantee-section.section { padding: 0; }
  .s-header { margin-bottom: 28px; }
  .f-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    max-width: 100%;
  }
}

/* ── Section header helper ───────────────────────────────────────────────── */
.s-header--c { text-align: center; }
.s-header--c .s-sub { margin: 0 auto; }


@media (max-width: 900px) {
  .ing-left {
    padding: 52px 24px 56px;
  }
  .ing-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 14px;
  }
  .ing-item-photo {
    width: 80px;
    height: 80px;
  }
  .ing-item:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .ingredients-title br {
    display: none;
  }
  .ingredients-title {
    font-size: 1.5rem;
  }
  .ing-item {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }
  .ing-item-photo {
    width: 100%;
    height: 140px;
  }
  .ing-item-top {
    flex-wrap: wrap;
  }
}

/* ── Stock scarcity indicator ───────────────────────────────────────────── */
.stock-scarcity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: 8px;
  font-size: .75rem;
  color: #92400E;
  margin-top: 8px;
}
.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  animation: stockPulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.stock-text strong {
  font-weight: 800;
}

/* ── CTA trust badges row ──────────────────────────────────────────────── */
.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cta-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .01em;
}
.cta-trust-badge i {
  color: var(--accent);
  font-size: .75rem;
}

/* ── Live viewers indicator ────────────────────────────────────────────── */
.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.live-viewers strong {
  font-weight: 700;
  color: var(--g900);
}
