:root {
  --bg: #fff8f1;
  --surface: #ffffff;
  --surface-warm: #fff0e3;
  --ink: #33231f;
  --muted: #705f58;
  --line: #ead8ca;
  --sage: #687f5d;
  --sage-dark: #4f6847;
  --rose: #bd5a68;
  --rose-dark: #9f4051;
  --thread: #d88b4c;
  --shadow: 0 18px 50px rgba(51, 35, 31, 0.13);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.has-sticky {
  padding-bottom: 78px;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 40;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(234, 216, 202, 0.9);
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  font-size: 0.78rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.desktop-nav a,
.topbar__cta,
.button {
  text-decoration: none;
}

.topbar__cta {
  display: none;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  padding: 11px 16px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 68px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #1f1613;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 19, 16, 0.88) 0%, rgba(51, 35, 31, 0.7) 48%, rgba(51, 35, 31, 0.1) 100%),
    url("./assets/hero-riscos-bordado.png") center right / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1120px);
  padding: 88px 0 96px;
  color: #fff;
}

.hero__content > * {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7cf9f;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero__bullets,
.check-list,
.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__bullets {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.93);
}

.hero__bullets li,
.check-list li,
.audience-list li {
  position: relative;
  padding-left: 26px;
}

.hero__bullets li::before,
.check-list li::before,
.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.hero__actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  padding: 15px 24px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(51, 35, 31, 0.2);
}

.button--primary {
  background: var(--rose);
  color: #fff;
}

.button--primary:hover {
  background: var(--rose-dark);
}

.button--secondary {
  border: 1px solid rgba(79, 104, 71, 0.35);
  background: #fff;
  color: var(--sage-dark);
}

.button--wide {
  width: 100%;
}

.microcopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.offer .microcopy,
.final-cta .microcopy {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.text-large {
  max-width: 860px;
  margin: 30px 0 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.pain-band,
.bonus-section,
.guarantee {
  background: var(--surface-warm);
}

.pain-grid,
.steps,
.idea-grid,
.bonus-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.pain-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pain-grid article,
.steps article,
.idea-grid article,
.bonus-grid article,
.faq-list details,
.project-result,
.offer-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(51, 35, 31, 0.06);
}

.pain-grid article {
  padding: 22px;
  color: var(--muted);
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.steps article {
  padding: 22px;
}

.steps span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  font-weight: 900;
}

.steps strong,
.bonus-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.steps p,
.bonus-grid p,
.project-result p,
.product-figure figcaption {
  margin: 0;
  color: var(--muted);
}

.kit-grid,
.visual-grid,
.picker-grid,
.split {
  display: grid;
  gap: 34px;
  align-items: center;
}

.kit-grid,
.visual-grid {
  grid-template-columns: 1fr;
}

.kit-grid p,
.visual-grid p,
.split p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.product-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-figure img {
  width: 100%;
}

.product-figure figcaption {
  padding: 14px 16px 18px;
  font-size: 0.95rem;
}

.idea-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.idea-grid article {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 20px;
  font-weight: 800;
}

.picker-section {
  background: #fff;
}

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

.project-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.project-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.project-option.is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: #fff;
}

.project-result {
  padding: 28px;
}

.project-result > span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fff0e3;
  color: var(--rose-dark);
  padding: 7px 12px;
  font-weight: 900;
  font-size: 0.88rem;
}

.project-result ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.visual-proof {
  background: #f7eee4;
}

.visual-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.audience-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.bonus-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.bonus-grid article {
  padding: 22px;
}

.offer {
  background:
    linear-gradient(135deg, rgba(104, 127, 93, 0.95), rgba(51, 35, 31, 0.94)),
    url("./assets/feed-riscos-bordado.png") center / cover;
  color: #fff;
}

.offer-box {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.offer-box .eyebrow {
  color: var(--rose-dark);
}

.price {
  display: grid;
  gap: 4px;
  margin: 28px 0;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.price strong {
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.9;
  color: var(--rose-dark);
}

.guarantee .split {
  align-items: start;
}

.faq-list {
  max-width: 860px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: #fff;
}

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

.final-cta p {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 96px;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: var(--sage-dark);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  z-index: 35;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  border-top: 1px solid rgba(234, 216, 202, 0.9);
  background: rgba(255, 248, 241, 0.96);
  padding: 10px 14px;
  box-shadow: 0 -12px 28px rgba(51, 35, 31, 0.11);
}

.sticky-cta .button {
  width: 100%;
}

@media (min-width: 760px) {
  .desktop-nav,
  .topbar__cta {
    display: inline-flex;
  }

  .kit-grid,
  .visual-grid,
  .picker-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content {
    padding-top: 120px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 759px) {
  .section {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(28, 19, 16, 0.88) 0%, rgba(51, 35, 31, 0.72) 64%, rgba(51, 35, 31, 0.42) 100%),
      url("./assets/hero-riscos-bordado.png") center bottom / cover no-repeat;
  }

  .hero__content {
    padding: 78px 0 118px;
  }

  .brand span:last-child {
    max-width: 130px;
    line-height: 1.1;
  }

  .sticky-cta {
    display: block;
  }
}
