:root {
  --fondo: #FDFBFA;
  --fondo-alt: #F7EFF1;
  --superficie: #FFFFFF;
  --texto: #2E1B2C;
  --texto-suave: #7C6476;
  --berry: #A62A55;
  --morado: #7B4B94;
  --nude: #D8A7B4;
  --linea: rgba(46,27,44,0.12);
  --shadow-soft: 0 12px 26px rgba(46, 27, 44, 0.08);
  --shadow-image: 0 12px 22px rgba(46, 27, 44, 0.08);
  --radius-card-mobile: 20px;
  --radius-card-desktop: 28px;
  --font-title: "Instrument Serif", serif;
  --font-body: "Hanken Grotesk", sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--fondo);
  color: var(--texto);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

img[width], img[height] {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin-top: 0;
}

em {
  font-style: italic;
  color: var(--morado);
}

.container {
  width: min(100% - 1.25rem, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.top-strip {
  background: var(--berry);
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--linea);
}

.top-strip p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: none;
  color: #fff;
}

.section,
.hero-section,
.site-footer {
  position: relative;
}

.section {
  padding: 5.3rem 0;
}

.section-dark {
  background: var(--fondo-alt);
}

.section-black {
  background: var(--fondo);
}

.hero-section {
  background: var(--fondo);
  overflow: hidden;
}

.hero-section::before,
.receipt-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 10%;
  width: 26rem;
  height: 26rem;
  background: none;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 2.5rem;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
}

.eyebrow,
.section-title,
.bonus-label,
.receipt-brand,
.small-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--morado);
}

.hero-copy h1,
.section-title,
.final-cta h2,
.receipt-body h3,
.bonus-card h3 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 10vw, 5.1rem);
  max-width: 700px;
}

.subhead {
  color: var(--texto-suave);
  font-size: 1.08rem;
  max-width: 620px;
}

.cta-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.1rem;
}

.hero-copy .cta-row {
  order: 5;
}

.hero-copy .microcopy {
  order: 6;
}

.hero-copy .eyebrow {
  order: 1;
}

.hero-copy h1 {
  order: 2;
}

.hero-media {
  order: 3;
}

.hero-copy .subhead {
  order: 4;
}

.cta-row--center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 100%;
  padding: 1rem 1.3rem;
  background: var(--berry);
  color: #fff;
  border: 1px solid var(--berry);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--morado);
  transform: translateY(-1px);
}

.microcopy {
  color: var(--texto-suave);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.strike {
  text-decoration: line-through;
  color: var(--texto-suave);
}

.hero-media,
.benefits-media {
  display: flex;
  justify-content: center;
}

.hero-media {
  width: 100%;
}

.image-frame {
  position: relative;
  width: 100%;
  background: var(--superficie);
  border: 1px solid var(--linea);
  overflow: hidden;
  border-radius: var(--radius-card-mobile);
  box-shadow: var(--shadow-image);
}

.image-frame--hero,
.image-frame--editorial {
  aspect-ratio: 4 / 5;
  max-width: 560px;
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-title {
    margin-bottom: 1.2rem;
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-copy {
    display: contents;
    gap: 0.8rem;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-media {
    order: 3;
    width: 100%;
  }

  .hero-copy .subhead {
    order: 4;
  }

  .hero-copy .cta-row {
    order: 5;
    margin-top: 0.1rem;
  }

  .hero-copy .microcopy {
    order: 6;
    margin-top: 0.1rem;
  }

  .hero-media .image-frame {
    width: 100%;
    max-width: none;
    border-radius: 20px;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .subhead,
  .hero-copy .cta-row,
  .hero-copy .microcopy,
  .hero-media {
    margin-top: 0;
  }

  .guarantee-section {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .guarantee-wrap {
    gap: 0.7rem;
  }

  .guarantee-ring {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .guarantee-wrap p {
    margin: 0;
  }

  .faq-wrap {
    margin-top: 0;
  }
}

.hero-media .image-frame,
.benefits-media .image-frame {
  isolation: isolate;
}

.hero-media .image-frame::before {
  content: "";
  position: absolute;
  inset: 10px 0 0 10px;
  border: 1px solid var(--berry);
  border-radius: var(--radius-card-mobile);
  transform: translate(10px, 10px);
  z-index: -1;
}

.hero-media .image-frame img,
.benefits-media .image-frame img,
.image-frame--bonus img,
.image-frame--receipt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-media .image-frame {
  animation: heroFadeIn 0.8s ease both;
}

.image-frame--tablet,
.image-frame--bonus {
  aspect-ratio: 3 / 4;
}

.image-frame--receipt {
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--superficie);
  color: var(--texto-suave);
  text-align: center;
  border: 1px dashed var(--linea);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.media-placeholder span,
.media-placeholder small {
  display: block;
}

.media-placeholder small {
  margin-top: 0.4rem;
  opacity: 0.8;
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
  background: rgba(166, 42, 85, 0.06);
  height: 3rem;
}

.marquee-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  align-items: center;
  height: 100%;
  padding: 0;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--texto-suave);
  overflow: hidden;
  animation: none;
  will-change: auto;
}

.marquee-group {
  display: inline-flex;
  align-items: center;
  width: 100%;
  flex: 0 0 100%;
  justify-content: center;
  padding-right: 0;
}

.marquee-track .marquee-group + .marquee-group {
  display: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1.25rem));
  }
}

.section-title {
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 0.94;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
}

.problem-list li {
  padding: 1rem 0;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--linea);
}

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

.closing-italic {
  margin-top: 1.5rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--morado);
  line-height: 1;
}

.chapter-grid {
  display: grid;
  gap: 1rem;
}

.chapter-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--linea);
  align-items: start;
}

.chapter-meta {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.5rem;
}

.chapter-num {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--morado);
  line-height: 1;
}

.chapter-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--morado);
  flex-shrink: 0;
  opacity: 0.88;
  transform: translateY(0.04rem);
}

.chapter-item h3 {
  font-size: 1.5rem;
  font-family: var(--font-title);
  margin-bottom: 0.45rem;
}

.chapter-item p,
.bonus-card p,
.receipt-row,
.faq-list p,
.footer-note,
.site-footer nav,
.site-footer p,
.microcopy,
.receipt-footer,
.time-copy,
.save-copy {
  color: var(--texto-suave);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  overscroll-behavior-x: contain;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 0;
  transition: transform 0.35s ease;
}

.slide {
  display: none;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.slide.is-active {
  display: flex;
  opacity: 1;
}

.image-frame {
  background: var(--fondo-alt);
}

.image-frame--tablet {
  width: 100%;
  max-width: 240px;
  min-width: 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  box-shadow: var(--shadow-image);
  overflow: hidden;
  background: var(--fondo-alt);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.image-frame--tablet img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.25rem;
  color: var(--texto-suave);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--linea);
  border-radius: 50%;
  background: transparent;
  color: var(--texto);
  font-size: 1.6rem;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-counter {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(123, 75, 148, 0.25);
  padding: 0;
}

.carousel-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--morado);
}

@media (max-width: 767px) {
  .carousel {
    max-width: 100%;
  }

  .carousel-track {
    gap: 0.7rem;
  }

  .slide {
    width: 100%;
  }

  .slide.is-active {
    display: flex;
  }

  .image-frame--tablet {
    max-width: 100%;
    width: min(100%, 320px);
    aspect-ratio: 3 / 4;
    max-height: 55vh;
  }

  .carousel-controls {
    margin-top: 0.2rem;
  }
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.benefits-media {
  display: flex;
  align-items: stretch;
}

.benefits-media .image-frame {
  height: 100%;
  min-height: 100%;
}

.benefits-copy {
  display: grid;
  align-content: center;
}

.benefits-copy .section-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.96;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: -0.03em;
}

.benefits-copy .section-title em {
  color: var(--morado);
  font-style: italic;
  text-transform: none;
}

.benefit-list {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--linea);
  counter-reset: item;
}

.benefit-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--linea);
  font-size: 1.05rem;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.45rem;
  align-items: start;
}

.benefit-list li::before {
  content: counter(item, decimal) "";
  counter-increment: item;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--morado);
  line-height: 1;
  margin-top: 0.1rem;
}

.benefits-copy .cta-row {
  justify-content: flex-start;
  margin-top: 1rem;
}

.benefits-copy .cta-row .btn,
.benefits-copy .checkout-link {
  width: 100%;
}

.bonus-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 1.75rem;
  overflow: hidden;
  overscroll-behavior-x: contain;
}

.bonus-grid {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  scroll-snap-type: x proximity;
  padding: 0 0 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}

@media (max-width: 767px) {
  .bonus-grid,
  .testimonial-grid {
    overflow: hidden;
  }
}

.bonus-grid::-webkit-scrollbar {
  display: none;
}

.bonus-card {
  scroll-snap-align: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 0 0 100%;
  background: var(--superficie);
  border: 1px solid var(--linea);
  padding: 1rem;
}

.bonus-nav-btn {
  position: absolute;
  top: 38%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(122, 75, 148, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--morado);
  box-shadow: 0 8px 18px rgba(46, 27, 44, 0.08);
}

.bonus-nav-btn svg {
  width: 18px;
  height: 18px;
}

.bonus-nav-btn--prev {
  left: 0;
}

.bonus-nav-btn--next {
  right: 0;
}

.bonus-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bonus-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.bonus-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(123, 75, 148, 0.25);
  padding: 0;
}

.bonus-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--morado);
}

@media (max-width: 767px) {
  .section-dark .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .section-dark .section-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 8vw, 2.8rem);
    line-height: 0.96;
  }

  .bonus-carousel {
    padding: 0 0.8rem;
    margin-top: 0.75rem;
  }

  .bonus-grid {
    grid-auto-columns: minmax(235px, 82%);
    padding-left: 0;
    padding-right: 0;
  }

  .bonus-nav-btn {
    display: flex;
    top: 39%;
  }

  .bonus-dots {
    display: flex;
    margin-top: 0.9rem;
  }
}

@media (min-width: 768px) {
  .bonus-nav-btn {
    display: none;
  }
}

.bonus-card h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.bonus-label {
  margin: 0.6rem 0 0;
}

.bonus-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.line-through {
  text-decoration: line-through;
  color: var(--texto-suave);
}

.bonus-highlight {
  color: var(--berry);
  font-weight: 700;
}

.testimonials-section {
  background: var(--fondo-alt);
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 1.75rem;
  overflow: hidden;
  overscroll-behavior-x: contain;
}

.testimonial-grid {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  scroll-snap-type: x proximity;
  padding: 0 0 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  align-items: start;
  overscroll-behavior-x: contain;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 0 0 100%;
  background: var(--superficie);
  border: 1px solid var(--linea);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
  display: flex;
  align-items: flex-start;
}

.testimonial-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f3f5;
}

.testimonial-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 16px;
}

.testimonial-nav-btn {
  position: absolute;
  top: 38%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(122, 75, 148, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--morado);
  box-shadow: 0 8px 18px rgba(46, 27, 44, 0.08);
}

.testimonial-nav-btn svg {
  width: 18px;
  height: 18px;
}

.testimonial-nav-btn--prev {
  left: 0;
}

.testimonial-nav-btn--next {
  right: 0;
}

.testimonial-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(123, 75, 148, 0.25);
  padding: 0;
}

.testimonial-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--morado);
}

.receipt-section {
  background: var(--fondo);
}

.receipt {
  position: relative;
  display: grid;
  gap: 2rem;
  background: var(--superficie);
  border: 1px solid var(--nude);
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.receipt::before,
.receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background-repeat: repeat-x;
  background-size: 18px 18px;
  background-position: center;
}

.receipt::before {
  top: -9px;
  background-image: radial-gradient(circle at 10px 10px, transparent 10px, var(--superficie) 11px);
}

.receipt::after {
  bottom: -9px;
  background-image: radial-gradient(circle at 10px 10px, transparent 10px, var(--superficie) 11px);
  transform: rotate(180deg);
}

.receipt-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.receipt-body {
  display: grid;
  gap: 0.8rem;
}

.receipt-brand {
  margin: 0;
  text-align: center;
}

.receipt-body h3 {
  font-size: clamp(2.1rem, 7vw, 3.2rem);
  text-align: center;
}

.receipt-row,
.receipt-total-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--linea);
}

.amount {
  font-weight: 700;
  color: var(--texto);
}

.receipt-divider {
  border-top: 1px solid var(--linea);
}

.receipt-price-box {
  display: grid;
  justify-items: center;
  padding: 1rem 0 0.5rem;
}

.price-big {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 10vw, 4rem);
  line-height: 0.9;
  color: var(--berry);
  margin: 0;
}

.payment-copy,
.save-copy,
.time-copy {
  margin: 0;
}

.save-copy,
.time-copy {
  font-weight: 700;
}

.btn-full {
  width: 100%;
}

.receipt-footer {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--texto);
}

.guarantee-wrap {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.guarantee-ring {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: var(--superficie);
  border: 1px solid var(--linea);
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--morado);
  font-size: 1.3rem;
}

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

.final-cta {
  background: var(--texto);
  border-top: 1px solid var(--nude);
}

.final-cta .section-title,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta-inner {
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2.3rem, 8vw, 4rem);
  margin-bottom: 1.4rem;
}

.final-cta p {
  color: var(--texto-suave);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.site-footer {
  background: #F4EDF0;
  border-top: 1px solid var(--linea);
  padding: 1.5rem 0 3rem;
}

.site-footer p,
.site-footer nav,
.site-footer a,
.footer-note p {
  color: var(--texto);
}

.footer-inner,
.footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--superficie);
  border-top: 1px solid var(--linea);
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  z-index: 50;
}

.mobile-bar__price {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--berry);
  line-height: 1;
}

.mobile-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--berry);
  color: #fff;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media .image-frame {
    animation: none;
  }

  .marquee-track {
    animation: none;
    transform: none;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-copy .cta-row,
  .hero-copy .microcopy,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .subhead,
  .hero-media {
    order: initial;
  }

  .image-frame {
    border-radius: var(--radius-card-desktop);
  }

  .hero-media .image-frame::before {
    inset: 16px 0 0 16px;
    border-radius: var(--radius-card-desktop);
    transform: translate(16px, 16px);
  }

  .chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 2rem;
  }

  .benefits-grid {
    grid-template-columns: 45% 55%;
  }

  .benefits-copy .cta-row .btn,
  .benefits-copy .checkout-link {
    width: auto;
  }

  .bonus-grid {
    grid-auto-columns: minmax(220px, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .testimonial-grid {
    grid-auto-columns: minmax(250px, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .receipt {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 1.8rem;
  }

  .mobile-bar {
    display: none;
  }

  .btn {
    width: auto;
  }
}
.guarantee-img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .guarantee-img { width: 150px; }
}

/* ==== CORRECAO MOBILE: sem arrasto lateral e sem zoom ao tocar ==== */
html, body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
}

button,
a,
.carousel-dot,
.bonus-dot,
.testimonial-dot,
.faq-question,
summary {
  touch-action: manipulation;
}

.bonus-grid,
.testimonial-grid,
.bonus-carousel,
.testimonial-carousel {
  overflow-x: clip;
  scroll-snap-type: none;
}
