:root {
  --cream: #fff7ea;
  --cream-strong: #f6ead8;
  --peach: #f1b37c;
  --peach-soft: #f8d7b7;
  --sage: #edf6ef;
  --sage-bg: #f5fbf2;
  --green: #079957;
  --green-dark: #057545;
  --brown: #7b4a1c;
  --brown-dark: #3d2412;
  --text: #1f1a16;
  --muted: #665b52;
  --line: rgba(91, 55, 25, 0.16);
  --white: #ffffff;
  --red: #f30b0b;
  --shadow: 0 24px 70px rgba(80, 43, 17, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: var(--sage-bg);
}

a {
  color: inherit;
}

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

.shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.urgency {
  min-height: 52px;
  padding: 7px 18px;
  color: #fff;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 7vw, 88px);
  line-height: 1;
}

.urgency strong {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 900;
}

.timer {
  display: flex;
  gap: clamp(18px, 4vw, 48px);
}

.timer span {
  display: grid;
  justify-items: center;
  min-width: 42px;
}

.timer b {
  font-size: 22px;
  font-weight: 900;
}

.timer small {
  margin-top: 1px;
  font-size: 9px;
  font-weight: 800;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(245, 251, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown-dark);
  font-weight: 900;
  text-decoration: none;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brown);
}

.nav-cta {
  min-height: 40px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 76px;
  background:
    linear-gradient(100deg, rgba(245, 251, 242, 0.95) 0%, rgba(255, 247, 234, 0.85) 52%, rgba(237, 246, 239, 0.9) 100%),
    url("./assets/fundo-pf.webp") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -110px -10%;
  height: 230px;
  background: linear-gradient(180deg, transparent, var(--sage-bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 54px;
}

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

.hero-logo {
  width: 116px;
  margin-bottom: 22px;
  opacity: 0.76;
}

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

h1,
h2 {
  color: var(--brown);
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--brown-dark);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--brown-dark);
  font-size: 16px;
  font-weight: 800;
}

.hero-points li,
.bundle-copy li {
  position: relative;
  padding-left: 34px;
}

.hero-points li::before,
.bundle-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
}

.hero-points li::after,
.bundle-copy li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.48em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(7, 153, 87, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 20px 38px rgba(7, 153, 87, 0.28);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.btn-secondary {
  color: #fff;
  background: var(--brown);
}

.safety-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.video-card,
.hero-offer,
.product-frame,
.module-card,
.bonus-grid article,
.pricing-card,
.guarantee-card,
.faq {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.video-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 0;
  padding: 0;
  background: #1e1d1a;
  cursor: pointer;
  text-decoration: none;
}

.video-card img,
.video-card iframe {
  width: 100%;
  height: 100%;
}

.video-card img {
  object-fit: cover;
}

.video-card iframe {
  display: block;
  position: absolute;
  inset: 0;
  border: 0;
}

.video-card.is-playing {
  cursor: default;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 42%, rgba(0, 0, 0, 0.16));
}

.video-card.is-playing::before {
  display: none;
}

.video-title,
.youtube-tag {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.62);
}

.video-title {
  top: 18px;
  left: 20px;
  max-width: calc(100% - 40px);
  font-size: 15px;
}

.youtube-tag {
  right: 18px;
  bottom: 16px;
  font-size: 13px;
}

.play-button {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #ff0000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 14px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
}

.hero-offer {
  padding: 22px;
  border-radius: var(--radius);
}

.offer-label,
.section-head p,
.single-offer p,
.pricing-card p,
.guarantee-card p {
  color: var(--muted);
}

.offer-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brown-dark);
}

.price-line span {
  font-size: 15px;
  font-weight: 800;
}

.price-line strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.hero-offer p {
  margin: 5px 0 16px;
  color: var(--green-dark);
  font-weight: 900;
}

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

.hero-offer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.intro-section {
  padding: 34px 0 70px;
  background: linear-gradient(180deg, var(--sage-bg), var(--cream));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.intro-grid h2,
.section-head h2,
.single-offer h2,
.bundle-copy h2,
.guarantee-card h2,
.faq-section h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

.intro-grid p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-frame {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 231, 0.72));
}

.benefits-section {
  padding: 0 0 72px;
  background: var(--cream);
}

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

.benefits-grid article {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--sage);
  border: 1px solid rgba(7, 153, 87, 0.14);
}

.benefits-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.benefits-grid h3 {
  margin: 12px 0 8px;
  color: var(--brown-dark);
  font-size: 22px;
}

.benefits-grid p,
.module-card p,
.bonus-grid p,
.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.modules-section,
.bonus-section,
.breathing-section,
.faq-section {
  padding: 80px 0;
}

.modules-section {
  background: #fff;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
  text-align: center;
}

.section-head p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
}

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

.module-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.module-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.module-card div {
  padding: 22px;
}

.module-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-card h3 {
  min-height: 58px;
  margin: 8px 0 10px;
  color: var(--brown-dark);
  font-size: 20px;
  line-height: 1.08;
}

.single-offer {
  padding: 54px 0;
  background: linear-gradient(90deg, var(--cream-strong), var(--sage));
}

.single-offer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.7fr);
  align-items: center;
  gap: 34px;
}

.single-offer h2 {
  margin-bottom: 10px;
}

.single-offer p {
  margin-bottom: 0;
  font-size: 18px;
}

.inline-price {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.inline-price span {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.inline-price strong {
  color: var(--brown-dark);
  font-size: 28px;
}

.breathing-section {
  background: linear-gradient(180deg, #fff, var(--sage));
}

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

.compact-grid article {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(48, 69, 51, 0.1);
}

.compact-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.compact-grid h3 {
  min-height: 60px;
  margin: 0;
  padding: 18px;
  color: var(--brown-dark);
  font-size: 17px;
  line-height: 1.15;
}

.breathing-cta {
  margin-top: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brown-dark);
}

.breathing-cta span {
  font-weight: 950;
  text-transform: uppercase;
}

.breathing-cta strong {
  font-size: 22px;
}

.bonus-section {
  background: #fff;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.bonus-grid article {
  overflow: hidden;
  border-radius: var(--radius);
}

.bonus-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.bonus-grid h3 {
  margin: 0;
  padding: 18px 18px 8px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.08;
}

.bonus-grid p {
  padding: 0 18px 22px;
  font-size: 14px;
}

.bundle-section {
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(61, 36, 18, 0.94), rgba(123, 74, 28, 0.9)),
    url("./assets/fundo-pf.webp") center / cover;
}

.bundle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 54px;
  align-items: center;
}

.bundle-copy h2 {
  color: #fff;
}

.bundle-copy p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.6;
}

.bundle-copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

.pricing-card {
  display: grid;
  justify-items: center;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  color: var(--text);
  text-align: center;
}

.pricing-card img {
  width: 100%;
  max-width: 430px;
  margin-bottom: 22px;
}

.save-line {
  color: var(--brown);
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.save-line s {
  color: #d92c2c;
  text-decoration-thickness: 3px;
}

.bundle-main-price {
  margin: 12px 0 2px;
  color: var(--brown-dark);
}

.bundle-main-price small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-main-price strong {
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.94;
}

.pricing-card p {
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 950;
}

.pricing-card .btn {
  width: 100%;
}

.trust-row {
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.trust-row span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brown-dark);
  background: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.guarantee-section {
  padding: 58px 0;
  background: var(--sage-bg);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 30px;
  padding: 32px;
  border-radius: var(--radius);
}

.guarantee-card img {
  width: 110px;
}

.guarantee-card h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.guarantee-card p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.55;
}

.faq-section {
  background: linear-gradient(180deg, var(--cream-strong), var(--sage-bg));
}

.faq-section h2 {
  text-align: center;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px;
  border-radius: var(--radius);
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 0 46px 0 18px;
  border: 0;
  border-radius: 14px;
  color: var(--brown-dark);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: var(--cream);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 20px;
}

.faq-answer.open {
  display: block;
}

.whatsapp {
  width: fit-content;
  margin: 28px auto 0;
  display: flex;
}

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

footer {
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  color: #fff;
  background: #060403;
  font-size: 13px;
}

footer a {
  text-decoration: none;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .single-offer-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-panel,
  .product-frame,
  .pricing-card {
    max-width: 680px;
    width: 100%;
  }

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

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

  .inline-price {
    justify-items: start;
  }

  .breathing-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .urgency {
    min-height: 50px;
    flex-direction: column;
    gap: 4px;
  }

  .urgency strong {
    font-size: 12px;
  }

  .timer {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .timer b {
    font-size: 18px;
  }

  .timer small {
    font-size: 8px;
  }

  .site-nav {
    min-height: 64px;
  }

  .nav-brand span {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    padding: 36px 0 52px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-logo {
    display: none;
  }

  h1 {
    order: 2;
    font-size: clamp(34px, 10vw, 46px);
    text-align: center;
  }

  .hero-subtitle,
  .safety-note {
    text-align: center;
  }

  .hero-subtitle {
    order: 3;
    margin-bottom: 0;
  }

  .hero-panel {
    order: 4;
    gap: 0;
  }

  .hero-points,
  .hero-offer {
    display: none;
  }

  .hero-actions {
    order: 5;
    display: grid;
  }

  .safety-note {
    order: 6;
    margin-top: -4px;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    font-size: 15px;
  }

  .hero-offer,
  .pricing-card,
  .guarantee-card,
  .product-frame {
    padding: 20px;
  }

  .video-title {
    top: 12px;
    left: 14px;
    font-size: 12px;
  }

  .youtube-tag {
    right: 12px;
    bottom: 10px;
    font-size: 10px;
  }

  .play-button {
    width: 54px;
    height: 38px;
    border-radius: 12px;
  }

  .play-button::after {
    left: 22px;
    top: 10px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 15px;
  }

  .intro-section,
  .modules-section,
  .breathing-section,
  .bonus-section,
  .bundle-section,
  .faq-section {
    padding: 54px 0;
  }

  .intro-grid h2,
  .section-head h2,
  .single-offer h2,
  .bundle-copy h2,
  .faq-section h2 {
    font-size: 34px;
    text-align: center;
  }

  .intro-grid p,
  .section-head p,
  .single-offer p,
  .bundle-copy p {
    font-size: 16px;
    text-align: center;
  }

  .benefits-grid,
  .module-grid,
  .compact-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .module-card h3 {
    min-height: 0;
  }

  .compact-grid h3 {
    min-height: auto;
  }

  .single-offer {
    padding: 42px 0;
  }

  .inline-price {
    justify-items: stretch;
    text-align: center;
  }

  .breathing-cta {
    text-align: center;
    justify-items: stretch;
  }

  .bundle-copy ul {
    font-size: 15px;
  }

  .trust-row {
    display: grid;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .faq-question {
    font-size: 14px;
  }

  footer {
    padding-bottom: 68px;
  }

  .mobile-sticky-cta.is-visible {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    border-radius: 999px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 14px 34px rgba(7, 153, 87, 0.34);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
  }
}
