/** Shopify CDN: Minification failed

Line 196:2 Unexpected "}"
Line 1310:2 Unexpected "}"

**/


  /* ─── FIX SHOPIFY DAWN LAYOUT ─── */
  #shopify-section-landing-lumbalgia {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: both !important;
    grid-template-columns: unset !important;
    flex-direction: unset !important;
  }
  #shopify-section-landing-lumbalgia > * {
    display: block !important;
    float: none !important;
    clear: both !important;
  }
  /* Override any Dawn flex on section children */
  .top-bar, .header, .hero,
  .section-full, .section-dark,
  .contador-section, .video-section,
  .cta-final, footer,
  [class*="para-quien"],
  [style*="background:var"] {
    display: block !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
  }
  /* Keep hero as grid (intentional 2 col) */
  .hero {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }



  :root {
    --sage: #7A9E7E;
    --dark-green: #2D5A3D;
    --gold: #C4973A;
    --cream: #EDE7D9;
    --cream-dark: #E0D8C8;
    --text: #2A2A2A;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Questrial', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── TOP BAR ANIMADA ─── */
  .top-bar {
    background: var(--dark-green);
    color: var(--cream);
    height: 44px;
    overflow: hidden;
    position: relative;
    z-index: 100;
  }
  .top-bar-track {
    display: flex;
    width: max-content;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
    height: 100%;
    align-items: center;
  }
  .top-bar-track span {
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 0 60px;
    color: var(--cream);
  }
  .top-bar-track span em {
    font-style: normal;
    color: var(--gold);
    font-weight: 600;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── HEADER FIJO ─── */
  .header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(237, 231, 217, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--dark-green);
    text-transform: uppercase;
    font-weight: 400;
  }
  .logo span { color: var(--gold); }

  .btn-header {
    background: var(--dark-green);
    color: var(--cream);
    border: none;
    padding: 11px 28px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-header:hover { background: var(--sage); }

  /* ─── BOTÓN PRINCIPAL ─── */
  .btn-main {
    background: var(--dark-green);
    color: var(--cream);
    border: none;
    padding: 20px 52px;
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    animation: pulse 2.5s ease-in-out infinite;
    text-align: center;
  }
  .btn-main:hover { background: var(--sage); animation: none; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 90, 61, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(45, 90, 61, 0); }
  }

  .btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 20px 52px;
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
    animation: pulse-gold 2.5s ease-in-out infinite;
  }
  .btn-gold:hover { opacity: 0.88; animation: none; }
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 151, 58, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(196, 151, 58, 0); }
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    align-items: stretch;
  }
  
    .hero-image { order: -1; } /* mockup primero en móvil */
    .hero-text { order: 1; padding-right: 0; text-align: center; }
  }
  .hero-text { padding-right: 60px; }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 24px;
    display: block;
  }
  .hero-title {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 28px;
    font-weight: 400;
  }
  .hero-title em {
    font-style: normal;
    color: var(--gold);
  }
  .hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
  }
  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 44px;
  }
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
  }
  .benefit-icon {
    width: 28px;
    height: 28px;
    background: rgba(122, 158, 126, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
  }
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .mockup-placeholder {
    width: 300px;
    height: 420px;
    background: linear-gradient(145deg, var(--dark-green), var(--sage));
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-align: center;
    padding: 30px;
    box-shadow: 30px 30px 80px rgba(45,90,61,0.18), -10px -10px 40px rgba(237,231,217,0.8);
    position: relative;
    transform: perspective(800px) rotateY(-6deg);
    transition: transform 0.5s ease;
  }
  .mockup-placeholder:hover {
    transform: perspective(800px) rotateY(0deg);
  }
  .mockup-placeholder .mock-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(237,231,217,0.6);
    margin-bottom: 20px;
  }
  .mockup-placeholder .mock-title {
    font-size: 26px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .mockup-placeholder .mock-sub {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(237,231,217,0.7);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .mockup-placeholder .mock-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
  }
  .mockup-placeholder .mock-marca {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .hero-collage-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .hero-collage-img {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 28px 28px 70px rgba(45,90,61,0.18), -8px -8px 30px rgba(237,231,217,0.9);
    display: block;
    transform: perspective(900px) rotateY(-5deg);
    transition: transform 0.6s ease;
  }
  .hero-collage-img:hover {
    transform: perspective(900px) rotateY(0deg);
  }
  .hero-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(196,151,58,0.3);
  }
  .hero-badge strong { font-size: 16px; display: block; }

  /* ─── SECCIONES GENERALES ─── */
  section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-full {
    max-width: 100%;
    padding: 100px 40px;
    background: var(--white);
  }
  .section-full-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-dark {
    background: var(--dark-green);
    max-width: 100%;
    padding: 100px 40px;
    color: var(--cream);
  }
  .section-dark-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    display: block;
  }
  .eyebrow-light {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(122,158,126,0.7);
    margin-bottom: 16px;
    display: block;
  }
  .section-title {
    font-size: clamp(26px, 3vw, 42px);
    color: var(--dark-green);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .section-title-light {
    font-size: clamp(26px, 3vw, 42px);
    color: var(--cream);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 600px;
    margin-bottom: 60px;
  }
  .section-desc-light {
    font-size: 16px;
    color: rgba(237,231,217,0.75);
    line-height: 1.9;
    max-width: 600px;
    margin-bottom: 60px;
  }
  .divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0 50px;
  }

  /* ─── GALERÍA ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  .gallery-item {
    aspect-ratio: 3/4;
    background: var(--cream-dark);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 16px;
  }
  .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,90,61,0.85) 0%, transparent 55%);
  }
  .gallery-item-label {
    position: relative;
    z-index: 1;
    color: var(--cream);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.5;
  }
  .gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(122,158,126,0.15), rgba(45,90,61,0.08));
    font-size: 28px;
    border-radius: 4px;
  }

  /* ─── BONOS ─── */
  .bonos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  .bono-card {
    background: rgba(237,231,217,0.4);
    border: 1px solid rgba(122,158,126,0.25);
    border-radius: 6px;
    padding: 20px 20px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }
  .bono-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45,90,61,0.1);
  }
  .bono-img-placeholder {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .bono-img-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }
  .bono-number {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .bono-name {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .bono-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .bono-valor {
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .bono-valor strong {
    color: var(--sage);
    font-weight: 400;
  }

  /* ─── VIDEO ─── */
  .video-section {
    background: var(--dark-green);
    max-width: 100%;
    padding: 100px 40px;
  }
  .video-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(237,231,217,0.2);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(237,231,217,0.4);
    font-size: 14px;
    letter-spacing: 0.1em;
    gap: 16px;
    margin-top: 50px;
    cursor: pointer;
  }
  .play-icon {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(237,231,217,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  /* ─── CHECKLIST ─── */
  .logros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
  }
  .checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
  }
  .check-icon {
    width: 24px;
    height: 24px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
  }
  .testimonio-card {
    background: var(--white);
    padding: 22px 24px;
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 30px rgba(45,90,61,0.06);
    max-width: 440px;
  }
  .stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }
  .testimonio-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text);
    font-style: italic;
    margin-bottom: 16px;
  }
  .testimonio-author {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .score-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(122,158,126,0.1);
    border: 1px solid rgba(122,158,126,0.3);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--dark-green);
    margin-top: 20px;
  }

  /* ─── ORDER BUMPS ─── */
  .orders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  .order-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(45,90,61,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(122,158,126,0.15);
  }
  .order-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45,90,61,0.14);
  }
  .order-img {
    width: 100%;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
  }
  .order-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .order-body {
    padding: 28px 24px;
  }
  .order-tag {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .order-name {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .order-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .order-price {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 16px;
  }
  .btn-order {
    width: 100%;
    background: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    padding: 13px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
  }
  .btn-order:hover {
    background: var(--dark-green);
    color: var(--cream);
  }

  /* ─── OFERTA PRINCIPAL ─── */
  .oferta-box {
    background: var(--white);
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(45,90,61,0.1);
    border: 1px solid rgba(196,151,58,0.2);
    position: relative;
  }
  .oferta-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .precio-antes {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
  }
  .precio-ahora {
    font-size: 56px;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 8px;
  }
  .precio-cuota {
    font-size: 15px;
    color: var(--sage);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }
  .precio-cuota em {
    font-style: normal;
    font-weight: 600;
  }
  .garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(122,158,126,0.08);
    border: 1px solid rgba(122,158,126,0.2);
    padding: 14px 24px;
    border-radius: 4px;
    margin: 28px 0 36px;
    font-size: 14px;
    color: var(--dark-green);
  }
  .garantia-icon { font-size: 22px; }
  .medios-pago {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .medio-tag {
    background: var(--cream);
    border: 1px solid rgba(45,90,61,0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }

  /* ─── TESTIMONIOS ─── */
  .testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .test-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 6px;
    border-top: 3px solid var(--sage);
    box-shadow: 0 4px 20px rgba(45,90,61,0.05);
  }
  .test-card .stars { font-size: 14px; margin-bottom: 14px; }
  .test-text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
  }
  .test-author {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* ─── FAQ ─── */
  .faq-list {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(45,90,61,0.12);
    overflow: hidden;
  }
  .faq-item:first-child { border-top: 1px solid rgba(45,90,61,0.12); }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: 'Questrial', sans-serif;
    font-size: 17px;
    color: var(--dark-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    letter-spacing: 0.01em;
  }
  .faq-q:hover { color: var(--sage); }
  .faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(45,90,61,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
    color: var(--dark-green);
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--dark-green);
    color: var(--cream);
    border-color: var(--dark-green);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
  }
  .faq-a-inner { padding: 0 0 24px 0; }

  /* ─── CTA FINAL ─── */
  .cta-final {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3d2a 100%);
    max-width: 100%;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(196,151,58,0.07);
  }
  .cta-final::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(122,158,126,0.1);
  }
  .cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #1A2E22;
    padding: 50px 40px;
    text-align: center;
  }
  .footer-logo {
    font-size: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 16px;
  }
  .footer-logo span { color: var(--gold); }
  .footer-email {
    font-size: 13px;
    color: rgba(237,231,217,0.5);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
  }
  .footer-legal {
    font-size: 11px;
    color: rgba(237,231,217,0.25);
    letter-spacing: 0.06em;
    line-height: 1.8;
  }

  /* ─── BOTÓN FLOTANTE ─── */
  .floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .floating-btn.visible {
    opacity: 1;
    pointer-events: all;
  }
  .floating-btn a {
    background: rgba(237,231,217,0.2);
    color: var(--cream);
    padding: 14px 24px;
    border-radius: 100px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(237,231,217,0.35);
    white-space: nowrap;
  }
  .floating-btn span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }

  /* ─── CONTADOR ─── */
  .contador-section {
    background: var(--cream-dark);
    max-width: 100%;
    padding: 50px 40px;
    text-align: center;
    border-top: 1px solid rgba(45,90,61,0.08);
    border-bottom: 1px solid rgba(45,90,61,0.08);
  }
  .contador-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  .contador-boxes {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: flex-end;
  }
  .contador-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .contador-num {
    background: var(--dark-green);
    color: var(--cream);
    font-size: 40px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    letter-spacing: 0.02em;
  }
  .contador-unit {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .contador-sep {
    font-size: 32px;
    color: var(--sage);
    padding-bottom: 18px;
    line-height: 1;
  }
  .viendo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122,158,126,0.1);
    border: 1px solid rgba(122,158,126,0.25);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--dark-green);
    margin-top: 20px;
  }
  .dot-live {
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
  }

  /* ─── POP-UP VENTAS ─── */
  .sale-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: 6px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-left: 4px solid var(--sage);
    z-index: 999;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .sale-popup.show { transform: translateX(0); }
  .popup-avatar {
    width: 42px;
    height: 42px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .popup-text { font-size: 13px; line-height: 1.6; color: var(--text); }
  .popup-text strong { color: var(--dark-green); }
  .popup-text em { font-style: normal; color: var(--text-muted); font-size: 11px; }

  /* ─── FADE IN ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── CONTADOR OFERTA ─── */
  .oferta-urgencia {
    background: rgba(196,151,58,0.08);
    border: 1px solid rgba(196,151,58,0.25);
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
  }
  .oferta-urgencia strong { color: var(--gold); font-size: 15px; }

  /* ─── LIFESTYLE PLACEHOLDER ─── */
  .lifestyle-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 60px;
    overflow: hidden;
    border: 2px dashed rgba(122,158,126,0.2);
  }


  /* ─── SLIDESHOW ─── */
  .slideshow-wrap {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .slide-track {
    position: relative;
    width: 100%;
    background: #111;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    display: block;
    background: #1a2e22;
  }
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    pointer-events: none;
  }
  .slide-title {
    position: absolute;
    bottom: 56px;
    left: 0; right: 0;
    text-align: center;
    color: var(--cream);
    font-size: 15px;
    letter-spacing: 0.08em;
    padding: 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  .slide-counter {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(0,0,0,0.35);
    color: var(--cream);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.08em;
  }
  .slide-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: rgba(45,90,61,0.95);
  }
  .slide-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--cream);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .slide-btn:hover { background: rgba(255,255,255,0.25); }
  .slide-play {
    background: var(--gold);
    border: none;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .slide-play:hover { opacity: 0.85; }
  .slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(45,90,61,0.95);
  }
  .slide-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .slide-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }

  /* ─── ORDER BUMP MEJORADO ─── */
  .order-includes {
    list-style: none;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .order-includes li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .order-cuota {
    font-size: 12px;
    color: var(--sage);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
  }
  .btn-order-buy {
    width: 100%;
    background: var(--dark-green);
    border: 2px solid var(--dark-green);
    color: var(--cream);
    padding: 14px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
    margin-bottom: 12px;
  }
  .btn-order-buy:hover { opacity: 0.85; }
  .order-garantia {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.04em;
  }

  /* ─── RESPONSIVE ─── */
  
    .hero-text { padding-right: 0; margin-bottom: 50px; }
    .hero-benefits { justify-content: center; }
    .hero-image { justify-content: center; }
    .mockup-placeholder { transform: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .bonos-grid { grid-template-columns: 1fr; gap: 20px; }
    .orders-grid { grid-template-columns: 1fr; }
    .logros-grid { grid-template-columns: 1fr; }
    .testimonios-grid { grid-template-columns: 1fr; }
    .oferta-box { padding: 40px 24px; }
    section { padding: 70px 24px; }
    .section-full, .section-dark, .contador-section, .video-section, .cta-final { padding: 70px 24px; }
    .header { padding: 14px 24px; }
    .floating-btn { bottom: 20px; right: 20px; }
  }
  

  /* ─── PARA QUIÉN CAROUSEL ─── */
  .pq-carousel {
    background: rgba(45,90,61,0.25);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 40px 50px 28px;
    min-height: 140px;
    position: relative;
  }
  .pq-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeSlide 0.4s ease;
  }
  .pq-slide.active { display: flex; }
  @keyframes fadeSlide {
    from { opacity:0; transform:translateY(10px); }
    to { opacity:1; transform:translateY(0); }
  }
  .pq-check {
    width: 44px; height: 44px;
    background: var(--dark-green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .pq-slide p {
    font-size: 18px;
    color: var(--cream);
    line-height: 1.7;
    max-width: 580px;
    text-align: center;
    margin: 0;
  }
  .pq-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .pq-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .pq-dot.active { background: var(--sage); transform: scale(1.3); }

  /* ─── CREDIBILIDAD BOXES ─── */
  .cred-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cred-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45,90,61,0.08);
  }
  .cred-box-icon { font-size: 28px; margin-bottom: 12px; }
  .cred-box-title {
    font-size: 14px;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  .cred-box-desc {
    font-size: 13px;
    color: rgba(237,231,217,0.7);
    line-height: 1.65;
  }
  @media (max-width: 760px) {
    .pq-carousel { padding: 30px 24px 22px; }
    .pq-slide p { font-size: 16px; }
    [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  }

  .para-quien-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
  }
  .para-quien-item.si {
    background: rgba(122,158,126,0.08);
    border: 1px solid rgba(122,158,126,0.2);
  }
  .pq-icon {
    width: 26px;
    height: 26px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ─── STACK DE VALOR ─── */
  .stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
    color: var(--cream);
    text-align: left;
    gap: 20px;
  }
  .stack-row.header-row {
    background: rgba(255,255,255,0.04);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(237,231,217,0.4);
    padding: 12px 24px;
  }
  .stack-row.total-row {
    background: rgba(255,255,255,0.04);
    font-size: 14px;
    color: rgba(237,231,217,0.6);
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .stack-row.final-row {
    background: rgba(196,151,58,0.12);
    border: 1px solid rgba(196,151,58,0.3);
    border-radius: 0 0 6px 6px;
    font-weight: 400;
    color: var(--cream);
  }
  .stack-price {
    color: rgba(237,231,217,0.55);
    text-decoration: line-through;
    font-size: 14px;
    white-space: nowrap;
  }

  /* ─── CREDIBILIDAD ─── */
  .credencial-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(237,231,217,0.6);
    border-radius: 6px;
    border: 1px solid rgba(122,158,126,0.15);
  }
  .cred-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cred-title {
    font-size: 14px;
    color: var(--dark-green);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }
  .cred-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  @media (max-width: 900px) {
    .para-quien-item { font-size: 14px; }
  }
  @media (max-width: 700px) {
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  }


  /* ─── TESTIMONIOS HIPERREALISTAS ─── */
  .testimonios-reales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* WHATSAPP */
  .wa-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: #ECE5DD;
    font-family: -apple-system, 'Segoe UI', sans-serif;
  }
  .wa-header {
    background: #075E54;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
  }
  .wa-back { font-size: 18px; color: rgba(255,255,255,0.8); }
  .wa-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px; font-weight: 600;
    flex-shrink: 0;
  }
  .wa-info { flex: 1; }
  .wa-name { font-size: 15px; font-weight: 600; line-height: 1.2; }
  .wa-status { font-size: 12px; color: rgba(255,255,255,0.7); }
  .wa-icons { font-size: 16px; color: rgba(255,255,255,0.85); letter-spacing: 8px; }
  .wa-body { padding: 14px 12px; display: flex; flex-direction: column; gap: 6px; min-height: 180px; }
  .wa-date-chip {
    text-align: center;
    font-size: 11px;
    background: rgba(0,0,0,0.12);
    color: #555;
    padding: 3px 10px;
    border-radius: 100px;
    align-self: center;
    margin-bottom: 4px;
  }
  .wa-bubble {
    max-width: 82%;
    padding: 8px 12px 6px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.55;
    color: #111;
    position: relative;
  }
  .wa-bubble.received {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 2px;
  }
  .wa-bubble.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 2px;
  }
  .wa-meta {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 3px;
  }
  .wa-ticks { color: #999; }
  .wa-ticks.blue { color: #4FC3F7; }

  /* EMAIL */
  .email-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background: white;
    font-family: -apple-system, 'Segoe UI', sans-serif;
  }
  .email-header-bar {
    background: #f1f3f4;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
  }
  .email-dots { display: flex; gap: 6px; }
  .email-dots span {
    width: 12px; height: 12px; border-radius: 50%;
    background: #ddd;
  }
  .email-dots span:nth-child(1) { background: #ff5f57; }
  .email-dots span:nth-child(2) { background: #febc2e; }
  .email-dots span:nth-child(3) { background: #28c840; }
  .email-url { font-size: 13px; color: #666; flex: 1; text-align: center; }
  .email-body { padding: 20px 22px; }
  .email-subject {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .email-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
  }
  .email-label { color: #999; margin-right: 4px; }
  .email-date { font-size: 12px; color: #999; }
  .email-divider { height: 1px; background: #f0f0f0; margin: 14px 0; }
  .email-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
  }
  .email-firma { border-top: 1px solid #f0f0f0; padding-top: 12px; }
  .email-firma-name { font-size: 14px; font-weight: 600; color: #444; }
  .email-firma-city { font-size: 12px; color: #999; }

  @media (max-width: 760px) {
    .testimonios-reales-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .hero { grid-template-columns: 1fr; padding: 30px 16px; }
    .hero-text { text-align: center; }
    .hero-image { justify-content: center; margin-top: 20px; }
  }
  @media (max-width: 520px) {
    .bonos-grid { grid-template-columns: 1fr; }
    .bono-img-placeholder { height: auto; }
  }


  /* ─── HERO MOBILE FIX ─── */
  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr 1fr !important;
      padding: 30px 16px !important;
      gap: 16px !important;
      min-height: auto !important;
    }
    .hero-text {
      padding-right: 0 !important;
      margin-bottom: 0 !important;
      text-align: left !important;
    }
    .hero-title { font-size: clamp(20px, 5vw, 28px) !important; margin-bottom: 12px !important; }
    .hero-subtitle { font-size: 12px !important; margin-bottom: 16px !important; display: none; }
    .hero-image { justify-content: center !important; }
    .hero-collage-img { transform: none !important; }
    .hero-collage-wrap { max-width: 100% !important; }
    .hero-badge { width: 65px !important; height: 65px !important; font-size: 8px !important; right: -8px !important; bottom: 8px !important; }
    .btn-main { padding: 12px 20px !important; font-size: 12px !important; }
  }
  @media (max-width: 420px) {
    .hero { grid-template-columns: 1fr !important; }
    .hero-image { order: -1 !important; margin-bottom: 16px !important; }
  }
