@font-face {
  font-family: 'LocalSans';
  src: url('../fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w0aXpsog.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: 'LocalSerif';
  src: url('../fonts/pxiEyp8kv8JHgFVrJJbecmNE.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --forest: #163d2b;
  --forest-dark: #0e291d;
  --forest-2: #24583d;
  --leaf: #8ebf65;
  --lime: #d7ed9c;
  --cream: #fbf8ef;
  --paper: #fffdf8;
  --ink: #1f2b24;
  --muted: #5a6b5e;
  --line: #dfe6dc;
  --orange: #f4a261;
  --orange-hover: #e7924e;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(22, 61, 43, 0.08);
  --shadow-md: 0 12px 28px rgba(22, 61, 43, 0.12);
  --shadow-lg: 0 20px 48px rgba(22, 61, 43, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'LocalSans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: 'LocalSerif', Georgia, serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

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

h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forest-2);
  margin-bottom: 0.9rem;
}

.section-dark .eyebrow {
  color: var(--lime);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding: clamp(55px, 8vw, 100px) 0;
}

.section-dark {
  background: linear-gradient(145deg, #0f2c1f 0%, #163d2b 55%, #1e4f37 100%);
  color: var(--white);
}

.section-dark p {
  color: #cad9cd;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-sage {
  background: #eef4e8;
}

.text-center {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-heading.text-center {
  margin-inline: auto;
}

.section-heading > p:not(.eyebrow) {
  font-size: 1.12rem;
  max-width: 620px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 8px 20px rgba(215, 237, 156, 0.35);
}

.btn-primary:hover {
  background: #e1f5b0;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--orange);
  color: #3b1e0a;
  box-shadow: 0 8px 22px rgba(244, 162, 97, 0.38);
}

.btn-accent:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-large {
  min-height: 54px;
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-glow {
  animation: pulseGlow 2.4s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.5), 0 8px 22px rgba(244, 162, 97, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(244, 162, 97, 0), 0 12px 28px rgba(244, 162, 97, 0.45);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--forest-2);
  border-bottom: 2px solid var(--leaf);
  padding-bottom: 2px;
  transition: var(--transition);
}

.text-link.light {
  color: var(--lime);
  border-color: rgba(215, 237, 156, 0.6);
}

.top-offer-bar {
  background: linear-gradient(90deg, #0e291d 0%, #1b4933 50%, #0e291d 100%);
  color: #f0f7ed;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(215, 237, 156, 0.15);
}

.top-offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.top-offer-badge {
  background: var(--orange);
  color: #2b1405;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.top-offer-timer {
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 61, 43, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(215, 237, 156, 0.12);
  border: 1.5px solid var(--lime);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.header-cta {
  background: linear-gradient(105deg, var(--lime), #bfe882);
  color: var(--forest);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.hero {
  padding: clamp(45px, 6vw, 85px) 0 clamp(40px, 6vw, 75px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.hero-copy {
  max-width: 620px;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: #cbd9ce;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #cfded1;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check-icon {
  color: var(--lime);
  font-style: normal;
  font-weight: 900;
}

.hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.book-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 191, 101, 0.45) 0%, rgba(22, 61, 43, 0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.book-visual {
  position: relative;
  z-index: 1;
  width: min(340px, 85%);
  margin: 0 auto;
}

.book-visual img {
  width: 100%;
  height: auto;
  border-radius: 6px 18px 18px 6px;
  box-shadow: 18px 22px 40px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
  transition: var(--transition);
}

.book-badge {
  position: absolute;
  top: 10px;
  right: -8px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.book-note {
  position: absolute;
  bottom: 12px;
  left: -8px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--forest);
  border-left: 4px solid var(--orange);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.book-note strong {
  font-size: 0.8rem;
}

.book-note span {
  font-size: 0.7rem;
  color: var(--muted);
}

.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #102d20 0%, #1f4f37 50%, #102d20 100%);
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  white-space: nowrap;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  animation: marquee 28s linear infinite;
}

.marquee-track b {
  color: var(--orange);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vsl-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff3dc;
  border: 1px solid #f6cf8a;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #633c0c;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 2.2rem;
}

.pulse-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d84315;
  box-shadow: 0 0 0 0 rgba(216, 67, 21, 0.6);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.video-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.vsl-feature-bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-item {
  font-size: 0.95rem;
  color: var(--forest);
}

.video-card {
  background: var(--forest);
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #06170f;
}

.vsl-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.video-caption {
  color: #cbd9cd;
  padding: 10px 8px 4px;
  font-size: 0.8rem;
  text-align: center;
}

.offer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
  margin-top: 30px;
  background: #fff3dc;
  border: 1.5px solid #f4a261;
  border-radius: var(--radius);
  color: #553106;
  text-align: center;
}

.book-carousel-block {
  max-width: 900px;
  margin-inline: auto;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 2px solid #e2ebd9;
  touch-action: pan-y pinch-zoom;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.slide figcaption {
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slide figcaption strong {
  font-size: 1.15rem;
  color: var(--forest);
}

.slide figcaption span {
  font-size: 0.9rem;
  color: var(--muted);
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--forest-2);
  background: var(--white);
  color: var(--forest);
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--lime);
  transform: scale(1.08);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #cbd9c8;
  transition: var(--transition);
}

.dot.active {
  background: var(--forest);
  transform: scale(1.4);
}

.carousel-hint {
  text-align: center;
  font-size: 0.84rem;
  color: #7b8e7e;
  margin-top: 12px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #b9d6a9;
}

.benefit-card .icon {
  font-family: 'LocalSerif', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--forest-2);
  margin-bottom: 16px;
  background: #edf6e6;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.benefit-card h3 {
  color: var(--forest);
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(35px, 6vw, 75px);
}

.inside-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--forest-2);
  font-weight: 900;
  font-size: 1.1rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.result-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(215, 237, 156, 0.2);
  border-radius: var(--radius);
  padding: 30px 24px;
}

.result-box strong {
  display: block;
  font-family: 'LocalSerif', Georgia, serif;
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 14px;
}

.result-box h3 {
  color: var(--white);
}

.testimonials-section {
  background: linear-gradient(180deg, var(--paper) 0%, #f1f6ec 100%);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.testimonial-rating .stars {
  color: #e5932a;
  letter-spacing: 2px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 0;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.78rem;
}

.testimonial-top strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
}

.testimonial-top small {
  display: block;
  font-size: 0.78rem;
  color: #7b8e7e;
}

.testimonial-text {
  padding: 14px 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: auto;
  font-style: italic;
}

.testimonial-reply {
  margin: 0 16px 16px;
  padding: 10px 14px;
  background: #f7f9f4;
  border-left: 3px solid var(--leaf);
  border-radius: 0 8px 8px 0;
}

.testimonial-reply strong {
  display: block;
  font-size: 0.75rem;
  color: var(--forest-2);
}

.testimonial-reply p {
  font-size: 0.8rem;
  margin: 2px 0 0;
  color: #556758;
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(30px, 5vw, 60px);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-list p {
  margin: 0;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.96rem;
}

.audience-list .not-for {
  background: #fff4ed;
  border: 1px solid #ffd1ba;
  color: #693215;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.content-showcase-section {
  background: linear-gradient(145deg, #0f2c1f 0%, #163d2b 50%, #1e4f37 100%);
  color: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: stretch;
}

.content-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.content-main article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(215, 237, 156, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}

.content-main article span {
  display: inline-block;
  font-family: 'LocalSerif', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 12px;
}

.content-main h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.content-main p {
  color: #cbd9cd;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.bonus-card {
  background: linear-gradient(160deg, #d7ed9c 0%, #a4cf7b 100%);
  color: var(--forest);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.bonus-card .eyebrow {
  color: var(--forest-2);
}

.bonus-card h3 {
  color: var(--forest-dark);
  font-size: 1.45rem;
}

.bonus-card p {
  color: #24442e;
  font-size: 0.95rem;
}

.bonus-value {
  margin: 14px 0 18px;
  font-size: 0.9rem;
  color: #24442e;
}

.bonus-value s {
  color: #637768;
}

.bonus-value strong {
  color: #8c3b06;
  font-weight: 900;
}

.purchase-section {
  background: linear-gradient(145deg, #163d2b 0%, #204e37 100%);
  color: var(--white);
  position: relative;
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(35px, 6vw, 70px);
}

.purchase-desc {
  color: #cbd9cd;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.purchase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.purchase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f1f7ed;
  font-size: 0.96rem;
}

.icon-check {
  color: var(--lime);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-badge-wrap {
  margin-top: 1.5rem;
}

.pago-protegido-photo {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.offer-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 42px 30px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.offer-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: #2b1405;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(244, 162, 97, 0.45);
  white-space: nowrap;
}

.small-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--forest-2);
  margin-bottom: 0.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0.8rem 0 0.5rem;
}

.old-price {
  font-size: 1.6rem;
  color: #9aa79d;
  text-decoration: line-through;
  font-weight: 600;
}

.price strong {
  font-family: 'LocalSerif', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 4.4rem);
  color: var(--forest);
  line-height: 1;
}

.currency {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest-2);
}

.price-note {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.offer-guarantee-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f8ee;
  border: 1px solid #d4e4c6;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 1.2rem 0;
  text-align: left;
}

.guarantee-shield {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.offer-guarantee-box strong {
  display: block;
  font-size: 0.84rem;
  color: var(--forest);
}

.offer-guarantee-box p {
  font-size: 0.76rem;
  margin: 2px 0 0;
  color: #556758;
  line-height: 1.35;
}

.secure-note {
  font-size: 0.78rem;
  color: #6a7c6e;
  margin-bottom: 0;
}

.confidence {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.confidence-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.confidence-grid p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--forest-2);
}

.price-why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.price-why-content p {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0;
}

.faq-container {
  max-width: 820px;
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}

details[open] {
  border-color: #b7d6a5;
  box-shadow: var(--shadow-sm);
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  color: var(--forest-2);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}

details[open] summary::after {
  content: '−';
}

details p {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.final-cta {
  padding: clamp(65px, 9vw, 110px) 0;
}

.final-cta .container {
  max-width: 740px;
}

.final-cta p:not(.eyebrow) {
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #cfdece;
}

.site-footer {
  background: #091e14;
  color: #8fa693;
  padding: 24px 0;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-flex p {
  margin: 0;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(22, 61, 43, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(215, 237, 156, 0.25);
    padding: 10px 16px env(safe-area-inset-bottom, 10px);
    transform: translateY(110%);
    transition: transform 0.35s ease;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }

  .mobile-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
  }

  .mobile-sticky-info {
    display: flex;
    flex-direction: column;
  }

  .mobile-sticky-title {
    font-size: 0.76rem;
    font-weight: 700;
    color: #e4efe2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-sticky-price {
    font-size: 0.88rem;
    color: var(--lime);
  }

  .mobile-sticky-price strong {
    font-size: 1.05rem;
  }

  .mobile-sticky-price s {
    font-size: 0.76rem;
    color: #a4bba8;
    margin-left: 4px;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-actions, .trust-row {
    justify-content: center;
  }

  .hero-product {
    order: -1;
  }

  .video-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-grid, .result-grid, .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inside-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .inside-image {
    order: -1;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-main {
    grid-template-columns: 1fr;
  }

  .audience-grid, .price-why {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .purchase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-badge-wrap {
    text-align: center;
  }

  .pago-protegido-photo {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 16px;
  }

  .top-offer-bar {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .top-offer-inner {
    gap: 6px;
  }

  .top-offer-badge {
    font-size: 0.62rem;
  }

  .site-header {
    padding: 8px 0;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .header-cta {
    font-size: 0.78rem;
    padding: 7px 13px;
  }

  .hero {
    padding: 34px 0 42px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    gap: 8px;
  }

  .book-visual {
    width: min(280px, 75vw);
  }

  .book-badge {
    font-size: 0.6rem;
    padding: 6px 10px;
    right: -4px;
    top: 6px;
  }

  .book-note {
    font-size: 0.68rem;
    padding: 8px 10px;
    left: -4px;
    bottom: 8px;
  }

  .carousel {
    flex-direction: column;
    gap: 8px;
  }

  .carousel-btn {
    display: none;
  }

  .slide figcaption {
    padding: 12px 14px;
  }

  .slide figcaption strong {
    font-size: 1rem;
  }

  .slide figcaption span {
    font-size: 0.82rem;
  }

  .offer-card {
    padding: 34px 18px 24px;
  }

  .confidence-grid {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* para video  */
/* Asegurar que la tarjeta y el contenedor ocupen todo el ancho */
.vsl-card {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

/* Contenedor del video con proporción 16:9 exacta */
.vsl-player {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 220px; /* Evita que colapse en pantallas pequeñas */
  overflow: hidden !important;
  border-radius: 14px;
  background: #000000;
}

/* Contenedor shell y el iframe de YouTube expandidos al 100% */
#local-video-player,
.local-video-player-shell {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

#local-video-player iframe,
#youtube-player,
#youtube-player iframe,
.vsl-player iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
}

/* El botón flotante de play centrado sobre el video */
#video-play-overlay,
.video-play-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  background: rgba(6, 23, 15, 0.7) !important;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#video-play-overlay.is-hidden,
.video-play-overlay.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}


/* Tarjeta flotante de oferta especial con bonos */
.early-offer-card {
  position: absolute !important;
  bottom: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 20 !important;
  width: min(92%, 360px) !important;
  background: #ffffff !important;
  color: #071c12 !important;
  padding: 16px 18px !important;
  border-radius: 14px !important;
  border: 2px solid #d7ed9c !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  animation: cardFadeIn 0.4s ease-out both;
}

.early-offer-card[hidden] {
  display: none !important;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.early-offer-badge {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0e2b1e;
  line-height: 1.25;
}

.early-offer-timer {
  font-size: 0.82rem;
  color: #a33b22;
  font-weight: 700;
  background: #fff2ef;
  border: 1px solid #ffd4cb;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.early-offer-timer strong {
  font-size: 1rem;
  font-weight: 900;
  color: #c93b1d;
  font-variant-numeric: tabular-nums;
}

.early-offer-btn {
  width: 100% !important;
  margin-top: 4px;
  padding: 12px 16px !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  background: #d7ed9c !important;
  color: #071c12 !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(7, 28, 18, 0.15) !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.early-offer-btn:hover {
  background: #c3e275 !important;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .early-offer-card {
    bottom: 10px !important;
    padding: 12px 14px !important;
    width: min(94%, 310px) !important;
  }
  .early-offer-badge {
    font-size: 0.84rem;
  }
  .early-offer-timer {
    font-size: 0.76rem;
    padding: 3px 10px;
  }
  .early-offer-timer strong {
    font-size: 0.9rem;
  }
  .early-offer-btn {
    padding: 10px 14px !important;
    font-size: 0.84rem !important;
  }
}

/* =========================================================
   BOTÓN "COMPRAR AHORA": DESTELLO Y CAMBIO DE COLOR
   ========================================================= */

/* Aplicado al botón de compra principal */
.btn[data-checkout],
.btn-accent.btn-large {
  position: relative !important;
  overflow: hidden !important;
  font-weight: 900 !important;
  color: #071c12 !important;
  border: none !important;
  border-radius: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  
  /* Gradiente multicolor vivo */
  background: linear-gradient(
    90deg,
    #d7ed9c 0%,
    #ffc837 25%,
    #ff8008 50%,
    #a8e063 75%,
    #d7ed9c 100%
  ) !important;
  background-size: 300% 100% !important;

  /* Animaciones: desplazamiento de color y pulso */
  animation: 
    colorShift 4s ease infinite,
    pulseGlow 2s infinite ease-in-out !important;
  
  box-shadow: 0 8px 24px rgba(255, 128, 8, 0.4) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Efecto hover */
.btn[data-checkout]:hover,
.btn-accent.btn-large:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(255, 128, 8, 0.6) !important;
}

/* DESTELLO (Ráfaga de luz brillante que cruza el botón) */
.btn[data-checkout]::after,
.btn-accent.btn-large::after {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -120% !important;
  width: 60% !important;
  height: 200% !important;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  transform: rotate(25deg) !important;
  pointer-events: none !important;
  animation: flashSweep 2.8s infinite ease-in-out !important;
}

/* 1. Ciclo continuo de colores */
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 2. Destello que cruza el botón */
@keyframes flashSweep {
  0%, 25% {
    left: -120%;
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  55%, 100% {
    left: 180%;
    opacity: 0;
  }
}

/* 3. Resplandor / latido */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(255, 128, 8, 0.35);
  }
  50% {
    box-shadow: 0 10px 30px rgba(215, 237, 156, 0.7), 0 0 16px rgba(255, 200, 55, 0.5);
  }
}


/* =========================================================
   BOTÓN MÓVIL FIJO: DESTELLO Y CAMBIO DE COLOR
   ========================================================= */

.mobile-sticky-cta .btn,
.mobile-sticky-cta a.btn-accent {
  position: relative !important;
  overflow: hidden !important;
  font-weight: 800 !important;
  color: #071c12 !important;
  border: none !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;

  /* Fondo degradado dinámico (lima -> amarillo oro -> naranja -> verde lima) */
  background: linear-gradient(
    90deg,
    #d7ed9c 0%,
    #ffd15c 25%,
    #ff8a3d 50%,
    #b2ec5d 75%,
    #d7ed9c 100%
  ) !important;
  background-size: 300% 100% !important;

  /* Animación de colores continuos y pulso */
  animation:
    stickyColorCycle 3.5s ease infinite,
    stickyPulse 1.8s infinite ease-in-out !important;

  box-shadow: 0 4px 14px rgba(255, 138, 61, 0.45) !important;
}

/* Efecto destello (haz de luz blanca que cruza el botón) */
.mobile-sticky-cta .btn::after,
.mobile-sticky-cta a.btn-accent::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -120% !important;
  width: 50% !important;
  height: 200% !important;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  transform: rotate(25deg) !important;
  pointer-events: none !important;
  animation: stickyShine 2.5s infinite ease-in-out !important;
}

/* 1. Transición suave de colores */
@keyframes stickyColorCycle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 2. Ráfaga de luz que cruza de izquierda a derecha */
@keyframes stickyShine {
  0%, 30% {
    left: -120%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  65%, 100% {
    left: 180%;
    opacity: 0;
  }
}

/* 3. Latido sutil de brillo */
@keyframes stickyPulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(255, 138, 61, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 18px rgba(215, 237, 156, 0.7), 0 0 10px rgba(255, 209, 92, 0.6);
    transform: scale(1.02);
  }
}
