@font-face {
  font-family: "Anton Local";
  src: url("../fonts/anton.ttf") format("truetype");
  font-display: swap;
}

:root {
  --cream: #fdf7ec;
  --soft: #f6f0ea;
  --ink: #221814;
  --muted: #6f635b;
  --green: #159344;
  --green-dark: #086329;
  --orange: #e9542f;
  --orange-dark: #c93e24;
  --line: #eadfd4;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(108, 70, 45, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.wrap {
  width: min(100% - 28px, 980px);
  margin: 0 auto;
}

section {
  padding: 58px 0;
}

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

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

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

h1,
h2,
h3,
.offer-price,
.price-box strong {
  margin: 0;
  font-family: "Anton Local", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 430px;
  margin: 0 auto;
  font-size: clamp(2.05rem, 8.4vw, 2.72rem);
  text-align: center;
}

h1 span,
h1 strong {
  display: block;
  white-space: nowrap;
}

h1 strong {
  color: var(--green);
}

h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 7.6vw, 4rem);
  text-align: center;
}

h3 {
  font-size: 1.7rem;
}

.lead,
.hero-copy {
  max-width: 410px;
  margin: 7px auto 8px;
  color: var(--muted);
  font-size: clamp(0.78rem, 3vw, 0.95rem);
  line-height: 1.28;
  text-align: center;
}

.hero {
  padding-top: 28px;
  padding-bottom: 0;
}

.hero-wrap {
  max-width: 560px;
}

.hero-product {
  position: relative;
  margin: 0 auto;
  max-width: 520px;
}

.hero-product::after {
  position: absolute;
  inset: auto 0 0;
  height: 34px;
  background: linear-gradient(180deg, rgba(253, 247, 236, 0), var(--cream));
  content: "";
  pointer-events: none;
}

.price-box {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 18px;
  text-align: center;
}

.old-price {
  color: var(--orange-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: line-through;
}

.price-box strong {
  color: var(--green);
  font-size: clamp(2.65rem, 10vw, 3.85rem);
  line-height: 0.9;
}

.offer-price {
  color: var(--green);
  font-size: clamp(3.4rem, 14vw, 5.2rem);
  line-height: 0.86;
}

.cta,
.buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: min(100%, 420px);
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #20bf5a);
  box-shadow: 0 10px 24px rgba(21, 147, 68, 0.28);
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 15px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta:hover,
.buy:hover {
  box-shadow: 0 14px 28px rgba(21, 147, 68, 0.34);
  transform: translateY(-1px);
}

.hero .cta {
  position: relative;
  overflow: hidden;
  animation: heroCtaPulse 2.8s ease-in-out infinite;
}

.hero .cta::after {
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: heroCtaShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hero .cta:hover {
  filter: saturate(1.06);
  transform: translateY(-2px) scale(1.01);
}

@keyframes heroCtaPulse {
  0%,
  100% {
    box-shadow: 0 10px 20px rgba(21, 147, 68, 0.24);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 16px 34px rgba(21, 147, 68, 0.36);
    transform: translateY(-1px);
  }
}

@keyframes heroCtaShine {
  0%,
  42% {
    left: -55%;
  }

  72%,
  100% {
    left: 115%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .cta,
  .hero .cta::after {
    animation: none;
  }
}

.cta.narrow {
  display: flex;
  margin: 30px auto 0;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 12px;
  color: #74685f;
  font-size: 0.68rem;
  font-weight: 800;
  margin-top: 1px;
}

.trust-line span:nth-child(1)::before {
  content: "♧ ";
  color: #8d8177;
}

.trust-line span:nth-child(2)::before {
  content: "● ";
  color: var(--green);
}

.trust-line span:nth-child(3)::before {
  content: "✦ ";
  color: #d6a73c;
}

.problem-grid,
.benefits,
.bonus-grid,
.testimonials {
  display: grid;
  gap: 12px;
}

.problem-grid {
  grid-template-columns: repeat(2, 1fr);
}

.problem-section {
  padding: 72px 0 52px;
}

.problem-section .wrap {
  max-width: 720px;
}

.problem-section h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1.05;
}

.problem-section h2 span,
.problem-section h2 strong {
  display: block;
}

.problem-section h2 strong {
  color: var(--orange);
}

.problem-section .lead {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #605b62;
  font-size: clamp(1rem, 3.5vw, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
}

.problem-grid article,
.benefits article,
.bonus-grid article,
.testimonials article,
.faq details,
.rating-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.problem-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 15px 22px;
  color: #615f66;
  font-size: 0.98rem;
  font-weight: 700;
}

.problem-grid article::before {
  content: none;
}

.problem-section .problem-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 6px;
  background: #fff7ef;
  font-size: 1.28rem;
  line-height: 1;
}

.problem-tail {
  width: 1px;
  height: 34px;
  margin: 56px auto 0;
  background: var(--orange);
}

.book-showcase {
  margin: 12px auto 26px;
  max-width: 620px;
}

.benefits {
  grid-template-columns: repeat(3, 1fr);
}

.benefits article {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 20px;
  background: #f1faf4;
}

.benefits strong {
  font-size: 1.02rem;
}

.benefits span,
.bonus-grid span,
.offer p,
.offer small,
.faq p,
.testimonials p {
  color: var(--muted);
}

.recipe-list {
  display: grid;
  gap: 18px;
  max-width: 460px;
  margin: 0 auto;
}

.recipe-list article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.recipe-list span {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 8px;
  background: rgba(46, 29, 19, 0.9);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 7px 10px;
}

.recipe-list span::before {
  content: "🔥 ";
}

.more {
  margin: 26px 0 0;
  color: #756d63;
  font-family: "Anton Local", Impact, sans-serif;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.bonus-grid {
  grid-template-columns: repeat(2, 1fr);
}

.bonus-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 128px;
  padding: 16px;
}

.bonus-grid img {
  width: 92px;
  flex: 0 0 92px;
  filter: drop-shadow(0 8px 10px rgba(80, 55, 30, 0.12));
}

.bonus-grid strong {
  display: block;
  margin-bottom: 5px;
}

.bonus-grid s,
.bonus-total s {
  color: var(--orange-dark);
}

.bonus-total {
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
}

.bonus-total strong {
  color: var(--green);
}

.section-offers {
  border: 0;
  background: linear-gradient(180deg, #0f7f3d 0%, #005427 100%);
  color: var(--white);
  padding: 46px 0;
}

.section-offers .wrap {
  max-width: 620px;
}

.section-offers h2 {
  max-width: 440px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.05rem, 7.2vw, 3.4rem);
  line-height: 0.98;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  gap: 22px;
  align-items: stretch;
  justify-content: center;
}

.whatsapp-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(100%, 360px);
  margin: 0 auto 16px;
  color: var(--white);
  opacity: 0.95;
}

.whatsapp-divider::before,
.whatsapp-divider::after {
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.whatsapp-divider span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.85rem;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  padding: 18px 18px;
  text-align: center;
}

.offer.premium {
  border: 2px solid #ff8a45;
  background: linear-gradient(180deg, #fffdf7 0%, #fff1df 100%);
  box-shadow: 0 18px 44px rgba(0, 39, 18, 0.28);
}

.popular {
  align-self: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8b2f, #ff5a1e);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 9px 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer img {
  height: 205px;
  width: 100%;
  margin: 12px auto 10px;
  object-fit: contain;
}

.offer ul {
  display: grid;
  gap: 6px;
  flex: 1;
  margin: 0 0 12px;
  padding: 0;
  text-align: left;
}

.offer li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border: 1px solid #f2c39e;
  border-left: 7px solid #ff7d34;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #0b5b38;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 8px 12px;
  text-transform: uppercase;
}

.offer li::before {
  color: #0b5b38;
  content: "+";
  flex: 0 0 auto;
  font-weight: 900;
}

.offer .old-price {
  display: block;
}

.offer-total {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 0 0 12px;
  border: 1px solid #ffbc8b;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf1 0%, #fff1de 100%);
  color: #26533e;
  padding: 14px 12px 12px;
}

.offer-total span {
  font-size: 0.86rem;
  font-weight: 900;
}

.offer-total .offer-price {
  color: #f25d22;
  font-size: clamp(3.35rem, 12vw, 4.35rem);
}

.buy {
  width: 100%;
  margin-top: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8b31, #df3d0b);
  box-shadow: 0 14px 26px rgba(223, 61, 11, 0.24);
  color: var(--white);
  font-size: 1.1rem;
  min-height: 56px;
}

.section-offers .buy:hover {
  box-shadow: 0 16px 30px rgba(223, 61, 11, 0.3);
}

.offer small {
  margin-top: 10px;
  color: #0b5b38;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  box-shadow: 0 14px 32px rgba(0, 78, 34, 0.32);
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta.is-hidden {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 13, 0.72);
}

.offer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  max-height: calc(100vh - 28px);
  overflow: auto;
  border: 2px solid #ff8a45;
  border-radius: 16px;
  background: linear-gradient(180deg, #0f7f3d 0%, #005427 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  color: var(--white);
  padding: 42px 12px 14px;
  -webkit-overflow-scrolling: touch;
}

.offer-modal__dialog h2 {
  max-width: 280px;
  margin: 0 auto 12px;
  color: var(--white);
  font-size: 1.72rem;
  line-height: 0.98;
  text-align: center;
}

.offer-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #ffb347;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.offer-modal .offer {
  padding: 15px;
}

.offer-modal .offer img {
  height: 138px;
  margin-top: 10px;
}

.offer-modal .offer li {
  min-height: 32px;
  font-size: 0.72rem;
  padding: 7px 9px;
}

.offer-modal .offer-total {
  padding: 12px 10px 10px;
}

.offer-modal .offer-total span {
  font-size: 0.78rem;
}

.offer-modal .offer-total .offer-price {
  font-size: 2.95rem;
}

.social-proof {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f2 100%);
}

.social-proof .lead {
  margin-bottom: 28px;
}

.rating-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 24px;
}

.rating-card strong {
  color: var(--orange);
  font-family: "Anton Local", Impact, sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
}

.rating-card span {
  color: #f6b900;
  letter-spacing: 0.08em;
}

.rating-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bars div {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  color: #6a625b;
  font-size: 0.86rem;
  font-weight: 800;
}

.rating-bars i {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e7dd;
}

.rating-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #f6b900;
}

.testimonials {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonials article {
  position: relative;
  padding: 20px;
  border-color: #ead9c6;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.testimonials article::before {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #f1e2d2;
  content: "“";
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonials article:hover {
  box-shadow: 0 18px 42px rgba(108, 70, 45, 0.17);
  transform: translateY(-2px);
}

.testimonial-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7f9ee, #c7f0d7);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.testimonials strong {
  display: block;
  color: #2b211b;
  line-height: 1.1;
}

.testimonials small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.testimonials small::before {
  content: "✓";
}

.stars {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #f6b900;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

.testimonials p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: #5f5650;
  font-size: 0.96rem;
  line-height: 1.58;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 16px;
}

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

.faq summary::after {
  color: var(--green);
  content: "+";
  font-size: 1.4rem;
  font-weight: 900;
}

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

.faq p {
  margin: 0;
  padding: 0 16px 16px;
}

.final-cta {
  background: linear-gradient(90deg, var(--orange), #ff733a);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.cta.light {
  background: var(--white);
  box-shadow: 0 10px 26px rgba(62, 26, 10, 0.2);
  color: var(--orange-dark);
}

footer {
  background: var(--cream);
  color: var(--muted);
  font-size: 0.84rem;
  padding: 26px 14px;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 22px, 460px);
  }

  section {
    padding: 46px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .problem-grid,
  .benefits,
  .bonus-grid,
  .offer-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .rating-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .bonus-grid article {
    min-height: 108px;
  }

  .offer {
    padding: 16px;
  }

  .offer img {
    height: 178px;
  }

  .section-offers {
    padding: 34px 0;
  }

  .section-offers h2 {
    max-width: 330px;
  }

  .whatsapp-divider {
    margin-bottom: 12px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: min(7.15vw, 1.68rem);
  }

  .trust-line {
    gap: 4px 8px;
    font-size: 0.61rem;
  }

  .cta,
  .buy {
    min-height: 50px;
    font-size: 0.8rem;
    padding: 13px 14px;
  }

  .offer img {
    height: 158px;
  }

  .offer li {
    min-height: 34px;
    font-size: 0.72rem;
    padding: 7px 9px;
  }

  .offer-total .offer-price {
    font-size: 3rem;
  }
}
