@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Comic+Neue:wght@400;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --pink: #FF6B8B;
  --yellow: #FFD166;
  --green: #6BCB77;
  --blue: #4D9BFF;
  --purple: #B388FF;
  --brown: #6B4A86;
  --cream: #FFF7E6;
  --cream-deep: #FFF0C9;
  --white: #FFFFFF;
  --muted: #766B84;
  --line: #EEE2F2;
  --shadow: 0 22px 55px rgba(107, 74, 134, .13);
  --soft-shadow: 0 12px 30px rgba(107, 74, 134, .1);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--brown); background: var(--cream); font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.topline { position: relative; z-index: 10; color: var(--brown); background: var(--yellow); font-size: 12px; font-weight: 700; }
.topline-inner { min-height: 31px; display: flex; justify-content: center; align-items: center; gap: 8px; text-align: center; }
.topline-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--pink); }

.site-header { position: absolute; z-index: 5; top: 31px; right: 0; left: 0; color: var(--brown); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: 'Baloo 2', sans-serif; font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.brand em { color: var(--pink); font-style: normal; }
.brand-thumb { width: 43px; height: 43px; flex: 0 0 43px; border: 2px solid var(--white); border-radius: 50%; object-fit: cover; box-shadow: 0 6px 14px rgba(90,58,27,.16); }
.desktop-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.desktop-nav a:not(.nav-cta) { opacity: .8; transition: opacity .2s ease; }
.desktop-nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta, .mobile-nav-cta { padding: 12px 19px; color: var(--white); background: var(--pink); border-radius: 999px; box-shadow: 0 8px 18px rgba(255,107,139,.22); transition: transform .2s ease, background .2s ease; }
.nav-cta:hover, .mobile-nav-cta:hover { background: #f25579; transform: translateY(-2px); }
.mobile-nav-cta { display: none; font-size: 12px; }

.hero { position: relative; overflow: hidden; padding: 142px 0 42px; background: radial-gradient(circle at 90% 10%, rgba(255,209,102,.58), transparent 24%), radial-gradient(circle at 8% 78%, rgba(107,203,119,.24), transparent 24%), var(--cream); }
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-one { width: 510px; height: 510px; top: 170px; right: -190px; background: rgba(255,107,139,.1); }
.hero-shape-two { width: 240px; height: 240px; bottom: 110px; left: -130px; background: rgba(77,155,255,.1); }
.hero-grid { position: relative; z-index: 1; min-height: 535px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); align-items: center; gap: 50px; }
.hero-copy { max-width: 635px; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { margin-right: 6px; }
.eyebrow.light { color: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Baloo 2', 'Comic Neue', sans-serif; font-weight: 800; letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 700px; margin-bottom: 23px; font-size: clamp(44px, 5.4vw, 70px); }
h1 span { color: var(--pink); }
.hero-lead { max-width: 600px; margin-bottom: 25px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 999px; cursor: pointer; font: inherit; font-weight: 800; line-height: 1.15; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 20px; transition: transform .2s ease; }
.button:hover span { transform: translateX(3px); }
.button-primary { padding: 18px 25px; color: var(--brown); background: var(--yellow); box-shadow: 0 14px 28px rgba(255,209,102,.3); }
.button-primary:hover { background: #ffda7d; box-shadow: 0 17px 32px rgba(255,209,102,.38); }
.microcopy { margin: 13px 0 0; color: var(--muted); font-size: 12px; }
.microcopy span { margin-right: 4px; color: var(--green); font-weight: 800; }

.hero-visual { position: relative; min-height: 520px; }
.hero-image-frame { position: absolute; z-index: 2; top: 10px; left: 8%; width: 82%; overflow: hidden; border: 8px solid var(--white); border-radius: 35px 35px 92px 35px; background: var(--white); box-shadow: 0 27px 48px rgba(90,58,27,.2); transform: rotate(2deg); }
.hero-image-frame img { width: 100%; height: auto; }
.hero-note { position: absolute; z-index: 4; right: 0; bottom: 2px; display: grid; gap: 0; padding: 12px 16px; border: 3px solid var(--white); border-radius: 18px; color: var(--brown); background: var(--yellow); box-shadow: 0 10px 23px rgba(90,58,27,.17); transform: rotate(-3deg); }
.hero-note span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-note strong { font-family: 'Baloo 2', sans-serif; font-size: 21px; line-height: 1; }
.spark, .doodle { position: absolute; z-index: 5; color: var(--pink); animation: float 3.3s ease-in-out infinite; }
.spark { font-size: 33px; }
.spark-a { top: -5px; right: 4%; }
.spark-b { bottom: 72px; left: 2%; font-size: 21px; animation-delay: .6s; }
.doodle { font-size: 31px; }
.doodle-heart { right: 9%; bottom: 122px; transform: rotate(12deg); animation-delay: .3s; }
.hero-sticker { position: absolute; z-index: 3; padding: 8px 12px; border: 2px solid var(--white); border-radius: 999px; color: var(--brown); font-family: 'Baloo 2', sans-serif; font-size: 14px; font-weight: 800; box-shadow: var(--soft-shadow); }
.sticker-yellow { top: 12%; left: 0; background: var(--yellow); transform: rotate(-8deg); }
.sticker-green { right: -2%; top: 27%; color: var(--white); background: var(--green); transform: rotate(7deg); }
.hero-metrics { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 20px; border: 2px solid rgba(90,58,27,.07); border-radius: 24px; background: rgba(255,255,255,.88); box-shadow: 0 12px 28px rgba(90,58,27,.08); }
.hero-metrics > div { min-height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; border-right: 1px solid var(--line); text-align: center; }
.hero-metrics > div:last-child { border-right: 0; }
.hero-metrics strong { color: var(--blue); font-family: 'Baloo 2', sans-serif; font-size: 31px; line-height: 1; }
.hero-metrics span { color: var(--muted); font-size: 12px; font-weight: 600; }
.hero-wave { position: absolute; right: -5%; bottom: -2px; left: -5%; height: 75px; background: var(--white); clip-path: ellipse(65% 59% at 50% 100%); }

.section { padding: 112px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-heading { max-width: 690px; }
.section-heading.centered { margin: 0 auto 55px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 620px; margin-right: auto; margin-left: auto; color: var(--muted); font-size: 16px; }
h2 { margin-bottom: 22px; font-size: clamp(39px, 4.8vw, 59px); }
h3 { margin-bottom: 9px; font-size: 25px; }

.pain-section { padding-top: 128px; }
.pain-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 95px; }
.pain-visual { position: relative; min-height: 370px; }
.cloud { position: absolute; width: 125px; height: 46px; border-radius: 999px; background: rgba(255,255,255,.88); box-shadow: 40px 10px 0 -4px rgba(255,255,255,.88), 18px -16px 0 -2px rgba(255,255,255,.88); }
.cloud-one { top: 41px; left: 6%; }
.cloud-two { right: 5%; bottom: 72px; width: 100px; transform: scale(.75); opacity: .8; }
.pain-sun { position: absolute; top: 7px; right: 14%; color: var(--yellow); font-size: 51px; line-height: 1; }
.pain-card { position: absolute; top: 105px; left: 14%; width: min(290px, 75%); display: grid; gap: 3px; padding: 30px 27px; border: 3px solid var(--white); border-radius: 28px 28px 45px 28px; background: var(--pink); box-shadow: var(--shadow); transform: rotate(-5deg); }
.pain-card::after { content: ''; position: absolute; right: 18px; bottom: -18px; width: 34px; height: 34px; background: var(--pink); clip-path: polygon(0 0, 100% 0, 100% 100%); transform: rotate(16deg); }
.pain-card-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 50%; color: var(--pink); background: var(--white); font-size: 25px; }
.pain-card strong { color: var(--white); font-family: 'Baloo 2', sans-serif; font-size: 26px; line-height: 1.05; }
.pain-card > span:last-child { color: rgba(255,255,255,.82); font-size: 13px; }
.pain-leaf { position: absolute; color: var(--green); font-size: 42px; }
.leaf-one { bottom: 20px; left: 7%; transform: rotate(-24deg); }
.leaf-two { right: 12%; bottom: 9px; transform: rotate(28deg) scaleX(-1); }
.section-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.recognition-list { margin-top: 28px; }
.recognition-list > div { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); }
.recognition-list > div:last-child { border-bottom: 1px solid var(--line); }
.recognition-list span { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 10px; font-weight: 800; }
.recognition-list p { margin: 1px 0 0; color: var(--brown); font-size: 14px; }

.turn-section { position: relative; overflow: hidden; padding: 108px 0 120px; background: var(--yellow); }
.turn-section::before, .turn-section::after { content: ''; position: absolute; border: 2px dashed rgba(90,58,27,.18); border-radius: 50%; }
.turn-section::before { width: 230px; height: 230px; top: -120px; left: -60px; }
.turn-section::after { width: 310px; height: 310px; right: -110px; bottom: -190px; }
.turn-inner { position: relative; z-index: 1; max-width: 810px; text-align: center; }
.turn-kicker { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 17px; color: var(--brown); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.turn-kicker span { color: var(--pink); font-size: 22px; }
.turn-inner h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 59px); }
.turn-inner > p { max-width: 650px; margin: 0 auto 28px; color: rgba(90,58,27,.75); font-size: 16px; }
.turn-pills { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.turn-pills span { padding: 10px 16px; border: 2px solid rgba(90,58,27,.12); border-radius: 999px; background: rgba(255,255,255,.6); font-family: 'Baloo 2', sans-serif; font-size: 17px; font-weight: 800; }
.turn-pills i { color: var(--pink); font-size: 23px; font-style: normal; font-weight: 800; }

.product-section { padding-bottom: 120px; }
.product-intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 75px; }
.product-stack { position: relative; min-height: 410px; }
.product-cover { position: absolute; width: 220px; overflow: hidden; border: 6px solid var(--white); border-radius: 20px; background: var(--white); box-shadow: 0 20px 38px rgba(90,58,27,.18); }
.product-cover img { width: 100%; height: auto; }
.cover-back { top: 68px; left: 8%; transform: rotate(-10deg); }
.cover-side { top: 39px; right: 1%; transform: rotate(9deg); }
.cover-front { z-index: 2; top: 24px; left: 25%; width: 242px; transform: rotate(-1.5deg); }
.product-sticker { position: absolute; z-index: 4; right: 4%; bottom: 7px; padding: 12px 16px; border: 3px solid var(--white); border-radius: 17px; color: var(--brown); background: var(--green); box-shadow: var(--soft-shadow); font-size: 11px; font-weight: 700; line-height: 1.05; text-transform: uppercase; transform: rotate(4deg); }
.product-sticker strong { font-family: 'Baloo 2', sans-serif; font-size: 18px; text-transform: none; }
.product-highlights { display: grid; gap: 19px; }
.highlight-row { display: flex; gap: 15px; align-items: flex-start; padding: 22px; border: 2px solid var(--line); border-radius: 21px 21px 30px 21px; background: #fffdfa; box-shadow: 0 9px 20px rgba(90,58,27,.05); }
.highlight-icon { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 15px; color: var(--white); font-size: 23px; }
.highlight-icon.pink { background: var(--pink); }
.highlight-icon.yellow { color: var(--brown); background: var(--yellow); }
.highlight-icon.green { background: var(--green); }
.highlight-row strong { font-family: 'Baloo 2', sans-serif; font-size: 22px; line-height: 1; }
.highlight-row p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.product-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 72px; }
.module-card { min-height: 210px; padding: 26px; border: 2px solid var(--line); border-top: 8px solid var(--pink); border-radius: 22px 22px 32px 32px; background: #fffdfa; box-shadow: 0 10px 24px rgba(90,58,27,.06); }
.module-card.module-yellow { border-top-color: var(--yellow); }
.module-card.module-green { border-top-color: var(--green); }
.module-number { display: block; margin-bottom: 19px; color: var(--pink); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.module-card h3 { margin-bottom: 8px; font-size: 25px; }
.module-card p { min-height: 47px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.module-card > strong { color: var(--brown); font-size: 12px; }
.inside-collection { margin-top: 110px; padding-top: 85px; border-top: 2px dashed var(--line); }
.inside-collection .section-heading { max-width: 590px; margin-bottom: 28px; }
.inside-collection .section-heading h2 { font-size: clamp(36px, 4.3vw, 52px); }
.inside-collection .section-heading > p:last-child { color: var(--muted); font-size: 16px; }
.sample-wall { min-height: 380px; display: flex; align-items: center; justify-content: center; gap: 23px; }
.sample { position: relative; width: 235px; margin: 0; padding: 10px 10px 14px; border-radius: 9px; background: var(--white); box-shadow: 0 16px 30px rgba(90,58,27,.14); }
.sample img { width: 100%; aspect-ratio: 720 / 1040; border-radius: 3px; object-fit: cover; }
.sample figcaption { display: flex; align-items: center; gap: 7px; padding: 11px 4px 0; color: var(--brown); font-size: 11px; font-weight: 700; }
.sample-one { transform: rotate(-6deg) translateY(13px); }
.sample-two { z-index: 2; transform: rotate(2deg) translateY(-13px); }
.sample-three { transform: rotate(7deg) translateY(13px); }
.sample-tape { position: absolute; z-index: 2; top: -13px; left: 50%; width: 68px; height: 24px; background: rgba(255,209,102,.78); opacity: .86; transform: translateX(-50%) rotate(-3deg); }
.sample-two .sample-tape { background: rgba(255,107,139,.7); transform: translateX(-50%) rotate(5deg); }
.sample-three .sample-tape { background: rgba(107,203,119,.72); transform: translateX(-50%) rotate(-7deg); }
.sample-dot { width: 9px; height: 9px; display: inline-block; border-radius: 50%; }
.sample-dot.pink { background: var(--pink); }
.sample-dot.yellow { background: var(--yellow); }
.sample-dot.green { background: var(--green); }

.benefit-section { background: var(--cream); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { min-height: 205px; padding: 25px; border: 2px solid var(--line); border-radius: 22px 22px 33px 22px; background: var(--white); box-shadow: 0 10px 24px rgba(90,58,27,.06); }
.benefit-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 16px; color: var(--white); font-size: 23px; }
.benefit-icon.pink { background: var(--pink); }
.benefit-icon.blue { background: var(--blue); }
.benefit-icon.yellow { color: var(--brown); background: var(--yellow); }
.benefit-icon.green { background: var(--green); }
.benefit-icon.purple { background: var(--purple); }
.benefit-icon.brown { background: var(--brown); }
.benefit-card h3 { margin-bottom: 7px; font-size: 24px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }
.testimonial-area { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 45px; margin-top: 70px; padding: 30px; border: 2px dashed rgba(255,107,139,.55); border-radius: 25px 25px 37px 25px; background: #fffdfa; }
.testimonial-area h3 { margin-bottom: 8px; font-size: 28px; }
.testimonial-area > div:first-child > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.testimonial-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial-slots > div { min-height: 115px; display: flex; flex-direction: column; justify-content: center; padding: 15px; border-radius: 17px; background: var(--cream); text-align: center; }
.testimonial-slots span { color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.testimonial-slots strong { margin-top: 7px; color: var(--muted); font-family: 'Baloo 2', sans-serif; font-size: 18px; }

.bonus-section { position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.bonus-section::after { content: ''; position: absolute; right: -135px; bottom: -215px; width: 460px; height: 460px; border: 2px dashed rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255,255,255,.04), 0 0 0 54px rgba(255,255,255,.035); }
.bonus-cloud { position: absolute; width: 130px; height: 48px; border-radius: 999px; background: rgba(255,255,255,.15); box-shadow: 44px 10px 0 -4px rgba(255,255,255,.15), 18px -17px 0 -2px rgba(255,255,255,.15); }
.bonus-cloud.cloud-one { top: 95px; left: 3%; }
.bonus-cloud.cloud-two { right: 7%; bottom: 110px; transform: scale(.8); }
.light-copy { position: relative; z-index: 1; }
.light-copy h2 { color: var(--white); }
.light-copy > p:last-child { color: rgba(255,255,255,.84); }
.bonus-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bonus-card { min-height: 245px; display: flex; flex-direction: column; padding: 25px; border: 3px solid rgba(255,255,255,.3); border-radius: 24px 24px 35px 24px; background: rgba(255,255,255,.12); box-shadow: 0 12px 24px rgba(42,92,172,.13); }
.bonus-card.bonus-pink { border-color: rgba(255,107,139,.95); }
.bonus-card.bonus-yellow { border-color: rgba(255,209,102,.95); }
.bonus-card.bonus-green { border-color: rgba(107,203,119,.95); }
.bonus-card.bonus-purple { border-color: rgba(179,136,255,.95); }
.bonus-card.bonus-blue { border-color: rgba(255,255,255,.72); }
.bonus-wide { grid-column: 2 / span 2; }
.bonus-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; color: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.bonus-top strong { font-size: 22px; }
.bonus-card h3 { color: var(--white); font-size: 25px; }
.bonus-card p { margin-bottom: 18px; color: rgba(255,255,255,.82); font-size: 14px; }
.bonus-card small { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); color: var(--yellow); font-size: 11px; font-weight: 800; }

.steps-section { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.step-card { position: relative; min-height: 235px; padding: 31px 27px 26px; border: 2px solid var(--line); border-radius: 25px 25px 37px 25px; background: var(--cream); box-shadow: 0 10px 24px rgba(90,58,27,.06); }
.step-card:nth-child(2) { background: #f8f4ff; }
.step-card:nth-child(3) { background: #effaf0; }
.step-number { position: absolute; top: -18px; left: 23px; width: 42px; height: 42px; display: grid; place-items: center; border: 3px solid var(--white); border-radius: 50%; color: var(--brown); background: var(--yellow); font-family: 'Baloo 2', sans-serif; font-size: 22px; font-weight: 800; box-shadow: 0 6px 13px rgba(90,58,27,.13); }
.step-icon { display: grid; width: 49px; height: 49px; place-items: center; margin: 8px 0 16px; border-radius: 17px; color: var(--white); background: var(--pink); font-size: 25px; }
.step-card:nth-child(2) .step-icon { background: var(--purple); }
.step-card:nth-child(3) .step-icon { color: var(--brown); background: var(--green); }
.step-card h3 { font-size: 27px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

.offer-section { position: relative; overflow: hidden; padding: 120px 0; color: var(--white); background: var(--blue); }
.offer-section::before { content: ''; position: absolute; top: -165px; left: -160px; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,209,102,.14); }
.offer-deco { position: absolute; z-index: 1; color: rgba(255,255,255,.63); font-size: 38px; }
.offer-deco-one { top: 65px; left: 10%; }
.offer-deco-two { right: 10%; bottom: 80px; color: var(--yellow); transform: rotate(14deg); }
.offer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 430px; align-items: center; gap: 88px; }
.offer-copy h2 { max-width: 590px; color: var(--white); }
.offer-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.86); font-size: 16px; }
.offer-summary { max-width: 550px; margin-top: 29px; }
.offer-summary > div { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.76); font-size: 13px; }
.offer-summary strong { color: var(--white); font-size: 13px; text-align: right; }
.offer-summary .offer-total { padding-top: 19px; border-bottom: 0; color: var(--yellow); font-weight: 800; }
.offer-summary .offer-total strong { color: var(--yellow); font-family: 'Baloo 2', sans-serif; font-size: 27px; }
.price-card { position: relative; overflow: hidden; padding: 45px 37px 31px; border: 5px solid var(--yellow); border-radius: 29px 29px 42px 29px; color: var(--brown); background: var(--white); box-shadow: 0 28px 58px rgba(31,75,147,.28); text-align: center; transform: rotate(1.2deg); }
.price-ribbon { position: absolute; top: 0; right: 0; left: 0; padding: 10px; color: var(--brown); background: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.price-label { margin: 23px 0 1px; color: var(--muted); font-size: 13px; font-weight: 700; }
.price { color: var(--pink); font-family: 'Baloo 2', sans-serif; font-size: 89px; font-weight: 800; letter-spacing: -.08em; line-height: .95; }
.price small { margin-right: 5px; color: var(--brown); font-family: 'Poppins', sans-serif; font-size: 19px; letter-spacing: 0; vertical-align: 26px; }
.price span { font-size: 46px; letter-spacing: -.08em; }
.price-sub { margin: 10px 0 23px; color: var(--muted); font-size: 12px; }
.price-list { list-style: none; margin: 0 0 23px; padding: 0; text-align: left; }
.price-list li { position: relative; padding: 8px 0 8px 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.button-offer { width: 100%; padding: 17px 18px; color: var(--white); background: var(--pink); box-shadow: 0 13px 24px rgba(255,107,139,.3); }
.button-offer:hover { background: #f25579; }
.secure-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; }
.secure-note span { color: var(--green); font-weight: 800; }

.guarantee-section { padding: 62px 0 72px; background: var(--cream-deep); }
.guarantee-inner { display: grid; grid-template-columns: 104px 1fr auto; align-items: center; gap: 28px; }
.guarantee-seal { width: 98px; height: 98px; display: grid; place-items: center; align-content: center; border: 3px dashed var(--pink); border-radius: 50%; color: var(--pink); font-family: 'Baloo 2', sans-serif; font-size: 35px; font-weight: 800; line-height: .76; transform: rotate(-8deg); }
.guarantee-seal small { font-family: 'Poppins', sans-serif; font-size: 10px; letter-spacing: .15em; }
.guarantee-inner h2 { margin-bottom: 8px; font-size: 34px; }
.guarantee-inner > div:nth-child(2) > p:last-child { max-width: 680px; margin: 0; color: var(--muted); font-size: 14px; }
.button-dark { color: var(--white); background: var(--brown); box-shadow: none; white-space: nowrap; }
.button-dark:hover { background: #70471f; }
.guarantee-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; margin-top: 65px; padding-top: 48px; border-top: 2px dashed rgba(90,58,27,.19); }
.guarantee-faq .section-heading h3 { margin-bottom: 13px; font-size: 32px; }
.guarantee-faq .section-heading > p:last-child { color: var(--muted); font-size: 14px; }
.faq-list details { border-top: 1px solid rgba(90,58,27,.2); }
.faq-list details:last-child { border-bottom: 1px solid rgba(90,58,27,.2); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--pink); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 670px; margin: -2px 38px 19px 0; color: var(--muted); font-size: 13px; }

.final-cta-section { position: relative; overflow: hidden; padding: 120px 0 135px; color: var(--white); background: var(--pink); text-align: center; }
.final-cta-section::before { content: '✦'; position: absolute; top: 37px; left: 13%; color: rgba(255,255,255,.58); font-size: 35px; transform: rotate(18deg); }
.final-cta-section::after { content: '♥'; position: absolute; right: 13%; bottom: 54px; color: var(--yellow); font-size: 29px; transform: rotate(12deg); }
.final-cloud { position: absolute; width: 125px; height: 45px; border-radius: 999px; background: rgba(255,255,255,.15); box-shadow: 40px 10px 0 -4px rgba(255,255,255,.15), 18px -16px 0 -2px rgba(255,255,255,.15); }
.final-cloud.cloud-one { top: 110px; left: 5%; }
.final-cloud.cloud-two { right: 5%; bottom: 110px; transform: scale(.75); }
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; }
.final-cta-inner h2 { color: var(--white); font-size: clamp(43px, 5.5vw, 65px); }
.final-cta-inner > p:not(.eyebrow) { color: rgba(255,255,255,.9); font-size: 18px; }
.final-cta-inner .button { margin-top: 14px; }

.site-footer { padding: 40px 0 90px; color: rgba(255,255,255,.72); background: var(--brown); }
.footer-inner { display: grid; grid-template-columns: 1fr 1.2fr auto; align-items: center; gap: 28px; }
.brand-footer { color: var(--white); font-size: 18px; }
.brand-footer .brand-thumb { border-color: rgba(255,255,255,.8); }
.footer-inner p, .footer-links, .footer-inner small { margin: 0; font-size: 12px; }
.footer-links { display: flex; justify-content: flex-end; gap: 9px; color: rgba(255,255,255,.9); }
.footer-inner small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.56); text-align: center; }

.mobile-buy-bar { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-actions { align-items: center; }
  .hero-visual { width: min(100%, 570px); margin: 0 auto; }
  .pain-grid, .product-intro-grid { grid-template-columns: 1fr; gap: 46px; }
  .pain-visual { width: min(100%, 480px); margin: 0 auto; }
  .product-stack { width: min(100%, 480px); margin: 0 auto; }
  .offer-grid { grid-template-columns: 1fr; gap: 55px; }
  .offer-copy { text-align: center; }
  .offer-copy > p:not(.eyebrow), .offer-summary { margin-right: auto; margin-left: auto; }
  .price-card { width: min(100%, 430px); margin: 0 auto; }
  .guarantee-inner { grid-template-columns: 90px 1fr; }
  .guarantee-inner > .button { grid-column: 2; justify-self: start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner p { grid-column: 1 / -1; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 520px); }
  .topline { font-size: 10px; }
  .topline-inner { min-height: 30px; padding: 3px 0; }
  .site-header { top: 30px; }
  .header-inner { min-height: 68px; }
  .brand { font-size: 18px; }
  .brand-thumb { width: 35px; height: 35px; flex-basis: 35px; }
  .desktop-nav { display: none; }
  .mobile-nav-cta { display: inline-flex; padding: 10px 14px; }
  .hero { padding-top: 120px; padding-bottom: 31px; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 16px; }
  .button-primary { width: 100%; font-size: 13px; }
  .hero-visual { min-height: 390px; }
  .hero-image-frame { top: 8px; left: 11%; width: 78%; border-width: 5px; border-radius: 23px 23px 51px 23px; }
  .hero-note { right: -1%; bottom: 4px; padding: 9px 12px; }
  .hero-note span { font-size: 8px; }
  .hero-note strong { font-size: 16px; }
  .hero-sticker { font-size: 11px; }
  .sticker-yellow { left: 0; }
  .sticker-green { right: -1%; }
  .spark { font-size: 22px; }
  .doodle { font-size: 25px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); margin-top: 10px; }
  .hero-metrics > div { min-height: 73px; }
  .hero-metrics > div:nth-child(2) { border-right: 0; }
  .hero-metrics > div:nth-child(3), .hero-metrics > div:nth-child(4) { border-top: 1px solid var(--line); }
  .hero-metrics strong { font-size: 26px; }
  .hero-metrics span { font-size: 10px; }
  .hero-wave { height: 47px; }
  .section { padding: 78px 0; }
  h2 { font-size: 40px; }
  .section-heading.centered { margin-bottom: 36px; }
  .pain-section { padding-top: 86px; }
  .pain-visual { min-height: 300px; }
  .pain-card { top: 80px; left: 11%; width: 78%; padding: 24px 22px; }
  .pain-card strong { font-size: 23px; }
  .pain-sun { right: 10%; font-size: 42px; }
  .cloud-one { left: 0; }
  .recognition-list p { font-size: 13px; }
  .turn-section { padding: 78px 0 86px; }
  .turn-inner h2 { font-size: 39px; }
  .turn-inner > p { font-size: 15px; }
  .turn-pills { gap: 6px; }
  .turn-pills span { padding: 8px 11px; font-size: 14px; }
  .turn-pills i { font-size: 18px; }
  .product-intro-grid { gap: 22px; }
  .product-stack { min-height: 337px; }
  .product-cover { width: 158px; border-width: 4px; border-radius: 12px; }
  .cover-back { left: 1%; top: 56px; }
  .cover-side { right: 0; top: 30px; }
  .cover-front { left: 22%; top: 19px; width: 185px; }
  .product-sticker { right: 0; bottom: 0; padding: 8px 10px; }
  .product-sticker strong { font-size: 15px; }
  .product-modules, .benefit-grid, .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .module-card, .benefit-card { min-height: 0; }
  .module-card p { min-height: 0; }
  .inside-collection { margin-top: 70px; padding-top: 62px; }
  .inside-collection .section-heading h2 { font-size: 37px; }
  .sample-wall { min-height: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 8px; padding: 15px 5px 0; }
  .sample { width: 100%; }
  .sample-two { grid-row: 1; grid-column: 2; }
  .sample-three { grid-column: 1 / -1; width: 58%; margin: 0 auto; }
  .testimonial-area { grid-template-columns: 1fr; gap: 23px; margin-top: 48px; padding: 22px; }
  .testimonial-area h3 { font-size: 25px; }
  .testimonial-slots { gap: 7px; }
  .testimonial-slots > div { min-height: 100px; padding: 10px 5px; }
  .testimonial-slots strong { font-size: 15px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-wide { grid-column: auto; }
  .bonus-card { min-height: 0; }
  .steps-grid { margin-top: 20px; }
  .step-card { min-height: 0; padding: 28px 22px 22px; }
  .offer-section { padding: 82px 0; }
  .offer-summary > div { font-size: 12px; }
  .offer-summary strong { font-size: 11px; }
  .price-card { padding: 43px 22px 27px; }
  .price { font-size: 78px; }
  .price span { font-size: 42px; }
  .guarantee-section { padding: 42px 0 54px; }
  .guarantee-inner { grid-template-columns: 72px 1fr; gap: 18px; }
  .guarantee-seal { width: 70px; height: 70px; font-size: 25px; }
  .guarantee-seal small { font-size: 8px; }
  .guarantee-inner h2 { font-size: 27px; }
  .guarantee-inner > div:nth-child(2) > p:last-child { font-size: 13px; }
  .guarantee-inner > .button { grid-column: 1 / -1; width: 100%; }
  .guarantee-faq { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; padding-top: 38px; }
  .guarantee-faq .section-heading h3 { font-size: 29px; }
  .faq-list summary { font-size: 13px; }
  .faq-list details p { margin-right: 0; font-size: 12px; }
  .final-cta-section { padding: 82px 0 104px; }
  .final-cta-inner h2 { font-size: 44px; }
  .final-cta-inner > p:not(.eyebrow) { font-size: 16px; }
  .site-footer { padding-bottom: 99px; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner p, .footer-inner small { grid-column: auto; }
  .footer-links { justify-content: flex-start; }
  .mobile-buy-bar { position: fixed; z-index: 20; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 15px; border-top: 1px solid rgba(90,58,27,.12); background: rgba(255,255,255,.97); box-shadow: 0 -8px 25px rgba(90,58,27,.13); backdrop-filter: blur(8px); }
  .mobile-buy-bar > div { display: grid; line-height: 1.05; }
  .mobile-buy-bar span { color: var(--muted); font-size: 10px; }
  .mobile-buy-bar strong { color: var(--pink); font-family: 'Baloo 2', sans-serif; font-size: 22px; }
  .mobile-buy-bar .button { width: auto; padding: 13px 16px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* CTA persistente — fica disponível durante toda a navegação */
.mobile-buy-bar {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 70px;
  padding: 10px 22px;
  border-top: 2px solid rgba(255,255,255,.2);
  color: var(--white);
  background: rgba(90,58,27,.97);
  box-shadow: 0 -10px 30px rgba(90,58,27,.18);
  backdrop-filter: blur(9px);
}
.mobile-buy-bar > div { display: flex; align-items: baseline; gap: 12px; line-height: 1.05; }
.mobile-buy-bar span { color: rgba(255,255,255,.82); font-size: 12px; font-weight: 600; }
.mobile-buy-bar strong { color: var(--yellow); font-family: 'Baloo 2', sans-serif; font-size: 24px; }
.mobile-buy-bar .button { width: auto; min-width: 230px; padding: 13px 22px; font-size: 13px; }

@media (max-width: 700px) {
  .mobile-buy-bar { justify-content: space-between; gap: 10px; min-height: 66px; padding: 9px 14px; }
  .mobile-buy-bar > div { display: grid; gap: 2px; }
  .mobile-buy-bar span { font-size: 9px; }
  .mobile-buy-bar strong { font-size: 21px; }
  .mobile-buy-bar .button { min-width: 0; padding: 12px 15px; font-size: 11px; }
}

/* Ajustes finais de direção visual */
.pain-section, .turn-section, .product-section, .benefit-section, .steps-section, .guarantee-section { position: relative; overflow: hidden; }
.sticker-yellow { top: 44%; left: -3%; transform: rotate(-5deg); }
.sticker-green { top: 44%; right: -3%; transform: rotate(5deg); }
.hero-sticker { animation: stickerPulse 2.9s ease-in-out infinite; }
.sticker-green { animation-delay: .45s; }

.floating-decor { position: absolute; z-index: 0; width: 72px; height: auto; pointer-events: none; object-fit: contain; border-radius: 22px; mix-blend-mode: multiply; animation: decorPulse 3.5s ease-in-out infinite; }
.decor-heart { width: 76px; }
.decor-star { width: 72px; }
.decor-rainbow { width: 68px; }
.hero-decor-heart { top: 235px; left: 2%; animation-delay: .3s; }
.hero-decor-star { right: 3%; bottom: 145px; animation-delay: 1.1s; }
.pain-decor-star { top: 100px; right: 4%; animation-delay: .6s; }
.turn-decor-heart { top: 40px; left: 7%; animation-delay: 1.2s; }
.turn-decor-rainbow { right: 7%; bottom: 34px; animation-delay: .4s; }
.product-decor-star { top: 175px; right: 3%; animation-delay: 1.6s; }
.benefit-decor-heart { right: 3%; bottom: 165px; animation-delay: .8s; }
.bonus-decor-star { top: 110px; right: 7%; opacity: .82; animation-delay: 1.3s; }
.steps-decor-rainbow { top: 112px; left: 3%; animation-delay: .7s; }
.offer-decor-heart { top: 105px; left: 5%; opacity: .78; animation-delay: .3s; }
.guarantee-decor-star { top: 32px; right: 5%; width: 57px; animation-delay: 1.5s; }
.final-decor-rainbow { top: 95px; right: 9%; animation-delay: .8s; }

.button[data-cta], .nav-cta, .mobile-nav-cta { animation: ctaPulse 2.35s ease-in-out infinite; }
.button[data-cta]:hover, .nav-cta:hover, .mobile-nav-cta:hover { animation-play-state: paused; }
.price-card .button-offer { min-height: 62px; padding-right: 22px; padding-left: 22px; font-size: 15px; }

.guarantee-section { background: linear-gradient(135deg, #FFF7E6 0%, #E9F8E7 100%); }
.final-cta-section { color: var(--brown); background: linear-gradient(135deg, #EEDFFF 0%, #D6D9FF 52%, #BFD9FF 100%); }
.final-cta-section .eyebrow.light { color: var(--brown); }
.final-cta-inner h2 { color: var(--brown); }
.final-cta-inner > p:not(.eyebrow) { color: rgba(90,58,27,.82); }
.final-cta-section::before { color: rgba(255,107,139,.7); }
.final-cta-section::after { color: var(--pink); }

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 13px 24px rgba(255,107,139,.22); }
  50% { transform: scale(1.035); box-shadow: 0 16px 34px rgba(255,107,139,.42); }
}
@keyframes stickerPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.16) brightness(1.04); }
}
@keyframes decorPulse {
  0%, 100% { opacity: .72; transform: scale(1) rotate(-2deg); }
  50% { opacity: 1; transform: scale(1.13) rotate(4deg); }
}

@media (max-width: 700px) {
  .hero-decor-heart { top: 168px; left: -12px; width: 57px; }
  .hero-decor-star { right: -10px; bottom: 115px; width: 55px; }
  .pain-decor-star { top: 67px; right: -10px; width: 52px; }
  .turn-decor-heart { top: 23px; left: -9px; width: 55px; }
  .turn-decor-rainbow { right: -9px; bottom: 22px; width: 52px; }
  .product-decor-star { top: 119px; right: -10px; width: 52px; }
  .benefit-decor-heart { right: -10px; bottom: 122px; width: 54px; }
  .bonus-decor-star { top: 95px; right: -8px; width: 51px; }
  .steps-decor-rainbow { top: 85px; left: -9px; width: 50px; }
  .offer-decor-heart { top: 76px; left: -9px; width: 52px; }
  .guarantee-decor-star { top: 20px; right: -8px; width: 44px; }
  .final-decor-rainbow { top: 60px; right: -7px; width: 50px; }
  .price-card .button-offer { min-height: 58px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .button[data-cta], .nav-cta, .mobile-nav-cta, .hero-sticker, .floating-decor { animation: none; }
}

/* Virada em cards leves, com movimento editorial discreto */
.turn-badge { display: inline-block; margin: 10px 0 24px; padding: 9px 17px; border: 2px solid rgba(107,74,134,.12); border-radius: 999px; color: var(--purple); background: rgba(255,255,255,.8); font-family: 'Baloo 2', sans-serif; font-size: 16px; font-weight: 800; transform: rotate(-2deg); }
.turn-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.turn-cards article { min-height: 130px; display: grid; place-items: center; gap: 7px; padding: 20px 15px; border: 2px solid rgba(107,74,134,.1); border-radius: 23px 23px 34px 23px; background: rgba(255,255,255,.92); box-shadow: 0 12px 24px rgba(107,74,134,.1); animation: turnFloat 4.8s ease-in-out infinite; }
.turn-cards article:nth-child(2) { animation-delay: .7s; }
.turn-cards article:nth-child(3) { animation-delay: 1.4s; }
.turn-card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: rgba(107,203,119,.12); font-size: 31px; line-height: 1; }
.turn-cards article strong { color: var(--brown); font-family: 'Baloo 2', sans-serif; font-size: 17px; line-height: 1.1; text-align: center; }
.sample { animation: galleryFloat 5.5s ease-in-out infinite; }
.sample-one { animation-delay: -.2s; }
.sample-two { animation-delay: -.9s; }
.sample-three { animation-delay: -1.6s; }
.sample-five { animation-delay: -2.3s; }
.sample-six { animation-delay: -3s; }
@keyframes turnFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-7px) rotate(1deg); } }
@keyframes galleryFloat { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(1deg); } }

@media (max-width: 700px) {
  .turn-badge { margin-bottom: 18px; font-size: 14px; }
  .turn-cards { grid-template-columns: 1fr; gap: 10px; }
  .turn-cards article { min-height: 89px; grid-template-columns: 45px 1fr; place-items: center start; padding: 13px 17px; }
  .turn-cards article strong { text-align: left; }
  .turn-card-icon { width: 39px; height: 39px; font-size: 26px; }
  .sample-three { grid-column: auto; width: 100%; margin: 0; }
}

/* Paleta leve da marca: amor, alegria, esperança e criatividade */
body { background: var(--cream); }
.hero { background: radial-gradient(circle at 90% 8%, rgba(255,209,102,.48), transparent 24%), radial-gradient(circle at 8% 78%, rgba(107,203,119,.2), transparent 24%), linear-gradient(135deg, #FFF7E6 0%, #FFF8F3 58%, #F1E9FF 100%); }
.pain-section { background: linear-gradient(135deg, #FFF7E6 0%, #FFE9F0 100%); }
.turn-section { background: linear-gradient(135deg, #EFE4FF 0%, #FFF1D2 100%); }
.product-section { background: #FFFDFC; }
.benefit-section { background: linear-gradient(135deg, #FFF7E6 0%, #F0F8FF 100%); }
.bonus-section { background: linear-gradient(135deg, #75B8FF 0%, #9D8AEF 100%); }
.steps-section { background: linear-gradient(135deg, #FFFDFC 0%, #F3EEFF 100%); }
.offer-section { background: linear-gradient(135deg, #75B8FF 0%, #A796F2 100%); }
.price-card { border-color: var(--pink); }
.site-footer { background: #8067B0; }
.mobile-buy-bar { color: var(--brown); background: rgba(255,253,252,.97); border-top-color: rgba(107,74,134,.14); }
.mobile-buy-bar span { color: var(--muted); }
.mobile-buy-bar strong { color: var(--pink); }
.pain-family-image { object-position: center 42%; }

/* Revisão mobile-first: coleção, não catálogo de métricas */
.floating-decor { border-radius: 0; mix-blend-mode: normal; }
.hero-mini-pages { position: absolute; z-index: 5; top: 112px; right: 2%; display: flex; align-items: flex-end; gap: 8px; transform: rotate(5deg); }
.hero-mini-pages img { width: 74px; height: 104px; object-fit: cover; border: 4px solid var(--white); border-radius: 8px; box-shadow: 0 10px 22px rgba(90,58,27,.2); }
.hero-mini-pages img:first-child { transform: rotate(-8deg) translateY(9px); }
.hero-mini-pages img:last-child { transform: rotate(7deg); }
.hero-badges { position: absolute; z-index: 6; right: 31%; bottom: 5px; left: 5%; display: flex; align-items: center; justify-content: center; gap: 9px; }
.hero-badges .hero-sticker { position: static; padding: 8px 14px; transform: none; white-space: nowrap; }
.hero-badges .sticker-yellow, .hero-badges .sticker-green { top: auto; right: auto; left: auto; }
.hero-collection-note { position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 9px; color: rgba(90,58,27,.72); font-size: 13px; font-weight: 700; text-align: center; }
.hero-collection-note i { color: var(--pink); font-style: normal; }
.pain-family-image { position: absolute; inset: 25px 6% 0; width: 88%; height: 350px; border: 7px solid var(--white); border-radius: 30px 30px 58px 30px; object-fit: cover; box-shadow: 0 18px 35px rgba(90,58,27,.15); transform: rotate(-3deg); }
.pain-visual .pain-card { z-index: 3; top: auto; bottom: 10px; left: 4%; width: min(250px, 73%); padding: 18px 19px; transform: rotate(-5deg); }
.pain-visual .pain-card strong { font-size: 22px; }
.pain-visual .pain-card-icon { width: 38px; height: 38px; margin-bottom: 9px; font-size: 20px; }
.pain-visual .pain-sun { z-index: 2; }
.product-modules { grid-template-columns: repeat(4, 1fr); }
.module-card.module-purple { border-top-color: var(--purple); }
.inside-collection .section-heading h2 { max-width: 520px; }
.sample-wall { display: grid; grid-template-columns: repeat(6, 1fr); align-items: start; gap: 15px; min-height: 0; }
.sample { width: 100%; }
.sample-one { transform: rotate(-5deg) translateY(10px); }
.sample-two { transform: rotate(3deg) translateY(-8px); }
.sample-three { transform: rotate(-3deg) translateY(15px); }
.sample-four { transform: rotate(5deg) translateY(-5px); }
.sample-five { transform: rotate(-4deg) translateY(11px); }
.sample-six { transform: rotate(4deg) translateY(-2px); }
.sample-dot.purple { background: var(--purple); }
.sample-dot.blue { background: var(--blue); }
.bonus-feature { grid-column: 1 / -1; min-height: 0; background: rgba(255,255,255,.16); }
.bonus-feature-grid { display: grid; grid-template-columns: 125px 1fr; align-items: center; gap: 24px; }
.bonus-feature-grid img { width: 125px; border: 5px solid var(--white); border-radius: 12px; box-shadow: 0 12px 22px rgba(42,92,172,.2); }
.bonus-feature-grid h3 { margin-bottom: 6px; }
.bonus-feature-grid p { margin-bottom: 14px; }

/* Selos em uma faixa própria: a arte principal e o destaque da marca ficam legíveis. */
.hero-badges { right: 48%; left: 0; justify-content: flex-start; }
.hero-note { right: 0; bottom: 0; }

@media (max-width: 1020px) {
  .product-modules { grid-template-columns: repeat(2, 1fr); }
  .sample-wall { grid-template-columns: repeat(3, 1fr); row-gap: 27px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 520px); }
  h1 { font-size: 34px; line-height: 1.04; }
  h2 { font-size: 31px; line-height: 1.08; }
  h3 { font-size: 22px; }
  .hero { padding-top: 105px; }
  .hero-copy { text-align: left; }
  .hero-copy .eyebrow { font-size: 11px; }
  .hero-lead { font-size: 15px; line-height: 1.55; }
  .hero-actions { align-items: stretch; }
  .button-primary { font-size: 13px; line-height: 1.2; }
  .hero-visual { min-height: 350px; }
  .hero-image-frame { left: 8%; width: 82%; }
  .hero-mini-pages { top: 74px; right: -2%; }
  .hero-mini-pages img { width: 53px; height: 76px; border-width: 3px; }
  .hero-badges { right: 0; bottom: 48px; left: 0; justify-content: center; gap: 5px; }
  .hero-badges .hero-sticker { padding: 7px 10px; font-size: 10px; }
  .hero-note { right: 0; bottom: -2px; }
  .hero-collection-note { flex-wrap: wrap; gap: 6px 9px; margin-top: 5px; padding: 0 20px; font-size: 11px; }
  .hero-collection-note i:last-of-type { display: none; }
  .pain-grid { gap: 28px; }
  .pain-visual { min-height: 270px; }
  .pain-family-image { inset: 8px 5% 0; width: 90%; height: 260px; border-width: 5px; border-radius: 23px 23px 42px 23px; }
  .pain-visual .pain-card { bottom: 0; left: 4%; width: 72%; padding: 15px 16px; }
  .pain-visual .pain-card strong { font-size: 19px; }
  .pain-visual .pain-card > span:last-child { font-size: 11px; }
  .pain-sun { font-size: 34px; }
  .recognition-list { margin-top: 20px; }
  .recognition-list p { font-size: 13px; }
  .turn-inner h2 { font-size: 31px; }
  .turn-inner > p { font-size: 14px; }
  .turn-pills span { font-size: 12px; }
  .product-section { padding-bottom: 78px; }
  .product-intro-grid { gap: 9px; }
  .product-stack { min-height: 290px; }
  .product-modules { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 45px; }
  .module-card { min-height: 185px; padding: 17px 15px; }
  .module-card h3 { font-size: 20px; }
  .module-card p { font-size: 13px; line-height: 1.38; }
  .module-number { margin-bottom: 12px; font-size: 10px; }
  .module-card > strong { font-size: 11px; }
  .inside-collection { margin-top: 62px; padding-top: 55px; }
  .inside-collection .section-heading h2 { font-size: 31px; }
  .sample-wall { grid-template-columns: repeat(2, 1fr); gap: 20px 8px; padding: 7px 4px 0; }
  .sample-three, .sample-four, .sample-five, .sample-six { width: 100%; margin: 0; }
  .sample-three { grid-column: auto; }
  .sample-four { grid-column: auto; }
  .sample-five { grid-column: auto; }
  .sample-six { grid-column: auto; }
  .sample figcaption { font-size: 10px; }
  .bonus-feature-grid { grid-template-columns: 83px 1fr; gap: 14px; }
  .bonus-feature-grid img { width: 83px; border-width: 3px; }
  .bonus-feature-grid h3 { font-size: 21px; }
  .bonus-feature-grid p { font-size: 13px; }
  .benefit-card { padding: 19px; }
  .benefit-card p { font-size: 13px; }
  .offer-copy h2 { font-size: 31px; }
  .price-card { transform: none; }
  .price { font-size: 69px; }
  .price-card .button-offer { font-size: 12px; }
  .guarantee-inner h2 { font-size: 25px; }
  .final-cta-inner h2 { font-size: 35px; }
}

/* Revisão de hierarquia: imagens e selos ficam sempre fora das artes principais. */
.hero-copy h1 { max-width: 660px; font-size: clamp(38px, 4.2vw, 56px); line-height: .99; }
.hero-copy h1 .hero-line { display: inline-block; white-space: nowrap; }
.hero-copy h1 .hero-line-main { color: var(--brown); }
.hero-visual { min-height: 0; display: flex; flex-direction: column; align-items: center; }
.hero-image-frame { position: relative; top: auto; left: auto; width: 82%; margin: 10px auto 0; flex: none; }
.hero-support-row { position: relative; z-index: 6; width: 100%; display: grid; grid-template-columns: 102px minmax(0, 1fr) auto; align-items: center; gap: 8px; margin-top: 15px; }
.hero-mini-pages { position: relative; top: auto; right: auto; display: flex; align-items: flex-end; justify-content: center; gap: 5px; transform: rotate(3deg); animation: miniFloat 5s ease-in-out infinite; }
.hero-mini-pages img { width: 47px; height: 66px; border-width: 3px; }
.hero-badges { position: static; display: flex; align-items: center; justify-content: center; gap: 5px; min-width: 0; }
.hero-badges .hero-sticker { position: static; padding: 7px 9px; font-size: 10px; white-space: nowrap; }
.hero-note { position: static; justify-self: end; padding: 8px 10px; white-space: nowrap; }
.hero-note span { font-size: 8px; }
.hero-note strong { font-size: 17px; }

.pain-visual { min-height: 0; display: flex; flex-direction: column; align-items: center; padding: 20px 0 5px; }
.pain-family-image { position: relative; inset: auto; display: block; width: 96%; height: auto; aspect-ratio: 1.95 / 1; object-fit: cover; margin: 0 auto; transform: rotate(-1.8deg); }
.pain-visual .pain-card { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: min(88%, 310px); margin: 18px auto 0; padding: 18px 19px; transform: rotate(-3deg); align-self: flex-start; }
.pain-visual .pain-card strong { font-size: 21px; }

.product-visual-column { min-width: 0; }
.product-visual-column .product-sticker { position: relative; right: auto; bottom: auto; display: table; margin: 13px auto 0; padding: 10px 14px; transform: rotate(3deg); }
.product-visual-column .product-sticker strong { font-size: 17px; }

.site-footer { padding: 49px 0 105px; color: rgba(255,255,255,.84); background: linear-gradient(135deg, #6B78D9 0%, #9F86E8 100%); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.brand-footer { color: var(--white); font-size: 20px; }
.brand-footer .brand-thumb { border-color: rgba(255,255,255,.86); }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; color: var(--white); font-size: 13px; }
.footer-links a { color: inherit; }
.footer-security { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); font-size: 13px !important; }
.footer-lock { width: 20px; height: 20px; flex: 0 0 20px; }
.footer-inner small { width: min(100%, 720px); grid-column: auto; margin: 4px 0 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.68); font-size: 12px; }

@keyframes miniFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@media (max-width: 700px) {
  .hero-copy h1 { max-width: 100%; font-size: clamp(30px, 8.6vw, 34px); line-height: 1.01; letter-spacing: -.045em; }
  .hero-visual { width: 100%; }
  .hero-image-frame { width: 88%; margin-top: 6px; }
  .hero-support-row { grid-template-columns: 92px minmax(0, 1fr); align-items: start; gap: 7px; margin-top: 12px; }
  .hero-mini-pages img { width: 42px; height: 58px; }
  .hero-badges { justify-content: flex-start; flex-wrap: wrap; gap: 4px; }
  .hero-badges .hero-sticker { padding: 6px 7px; font-size: 9px; }
  .hero-note { grid-column: 1 / -1; justify-self: center; margin-top: 3px; padding: 8px 11px; }
  .hero-note span { font-size: 8px; }
  .hero-note strong { font-size: 16px; }
  .pain-visual { padding-top: 14px; }
  .pain-family-image { width: 96%; aspect-ratio: 1.8 / 1; }
  .pain-visual .pain-card { width: min(88%, 300px); margin-top: 16px; }
  .product-visual-column .product-sticker { margin-top: 10px; }
  .site-footer { padding-bottom: 108px; }
  .footer-links { gap: 8px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mini-pages { animation: none; }
}

/* First fold mobile-first: imagem limpa, selos abaixo e CTA secundário separado. */
.hero-visual > .spark,
.hero-visual > .doodle { display: none; }
.hero-image-frame {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 530px);
  margin: 8px auto 0;
  border-width: 6px;
  border-radius: 30px;
  transform: none;
  box-shadow: 0 18px 34px rgba(107,74,134,.15);
}
.hero-badges {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  width: min(100%, 530px);
  margin: 15px auto 0;
}
.hero-badges .hero-sticker {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  padding: 8px 13px;
  border-width: 2px;
  font-size: 12px;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}
.hero-badges .sticker-yellow { color: var(--brown); background: #FFE4A0; transform: rotate(-2deg); }
.hero-badges .sticker-green { color: #39744B; background: #CDEFD1; transform: rotate(2deg); }
.hero-badges .sticker-purple { color: #6B4A86; background: #E8DCFF; transform: rotate(-1deg); }
.hero-badges .sticker-purple strong { font-family: 'Baloo 2', sans-serif; font-size: 15px; }
.hero-price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 530px);
  margin: 17px auto 0;
  padding: 11px 12px 11px 16px;
  border: 1px solid rgba(179,136,255,.26);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 24px rgba(107,74,134,.08);
}
.hero-price-strip > div { display: grid; gap: 1px; line-height: 1.05; }
.hero-price-strip span { color: var(--muted); font-size: 11px; font-weight: 600; }
.hero-price-strip strong { color: var(--pink); font-family: 'Baloo 2', sans-serif; font-size: 22px; line-height: 1; }
.hero-price-button { flex: 0 0 auto; padding: 12px 16px; color: var(--white); background: var(--pink); box-shadow: 0 10px 20px rgba(255,107,139,.2); font-size: 12px; }
.hero-price-button:hover { background: #f25579; }
.hero-collection-note { margin-top: 13px; }

/* Capas apresentadas como uma pequena vitrine: mais conteúdo, sem sobreposição. */
.product-cover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  align-items: start;
}
.product-cover-card {
  min-width: 0;
  margin: 0;
  padding: 8px 8px 11px;
  border: 2px solid var(--line);
  border-top-width: 5px;
  border-radius: 19px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 13px 26px rgba(107,74,134,.1);
  animation: coverFloat 6s ease-in-out infinite;
}
.product-cover-card:nth-child(2) { animation-delay: -.8s; }
.product-cover-card:nth-child(3) { animation-delay: -1.6s; }
.product-cover-card:nth-child(4) { animation-delay: -2.4s; }
.product-cover-card:nth-child(5) { animation-delay: -3.2s; }
.product-cover-card:nth-child(6) { animation-delay: -4s; }
.cover-card-pink { border-top-color: var(--pink); }
.cover-card-yellow { border-top-color: var(--yellow); }
.cover-card-blue { border-top-color: var(--blue); }
.cover-card-green { border-top-color: var(--green); }
.cover-card-purple { border-top-color: var(--purple); }
.product-cover-card img { width: 100%; aspect-ratio: 720 / 1040; border-radius: 11px; object-fit: cover; }
.product-cover-card figcaption {
  padding: 9px 3px 0;
  color: var(--brown);
  font-family: 'Baloo 2', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}
.product-visual-column .product-sticker {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: table;
  margin: 17px auto 0;
  transform: rotate(-2deg);
}
.cover-count-note { margin: 12px auto 0; color: var(--muted); font-size: 12px; text-align: center; }
@keyframes coverFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 700px) {
  .topline { display: none; }
  .site-header { top: 0; }
  .hero { padding-top: 82px; padding-bottom: 31px; }
  .hero-grid { gap: 16px; }
  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(28px, 8.4vw, 35px);
    line-height: 1.03;
    letter-spacing: -.052em;
  }
  .hero-copy h1 .hero-line { display: block; white-space: nowrap; }
  .hero-lead { max-width: 330px; margin-bottom: 16px; font-size: 14px; line-height: 1.45; }
  .hero-actions { width: 100%; }
  .button-primary { min-height: 56px; padding: 15px 16px; font-size: 13px; }
  .hero-image-frame { width: min(100%, 370px); margin-top: 2px; border-width: 5px; border-radius: 24px; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; width: 100%; margin-top: 13px; }
  .hero-badges .hero-sticker { width: 100%; min-height: 34px; padding: 7px 7px; font-size: 10px; white-space: normal; }
  .hero-badges .sticker-purple { grid-column: 1 / -1; }
  .hero-badges .sticker-purple strong { font-size: 14px; }
  .hero-price-strip { width: 100%; margin-top: 14px; padding: 9px 9px 9px 12px; gap: 8px; }
  .hero-price-strip span { font-size: 9px; }
  .hero-price-strip strong { font-size: 19px; }
  .hero-price-button { padding: 11px 12px; font-size: 10px; }
  .hero-price-button span { font-size: 15px; }
  .hero-collection-note { display: none; }
  .hero-decor-heart { top: 149px; left: -14px; width: 46px; opacity: .45; }
  .hero-decor-star { right: -12px; bottom: 112px; width: 48px; opacity: .45; }
  .product-cover-grid { gap: 11px; }
  .product-cover-card { padding: 6px 6px 9px; border-radius: 15px; }
  .product-cover-card img { border-radius: 8px; }
  .product-cover-card figcaption { padding-top: 7px; font-size: 11px; }
  .product-visual-column .product-sticker { margin-top: 13px; }
  .cover-count-note { margin-top: 9px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-cover-card { animation: none; }
}

/* Galeria interna com seis propostas, mantendo uma composição equilibrada. */
.sample-seven { transform: rotate(3deg) translateY(8px); animation-delay: -3.7s; }

/* Bônus com aparência de presente: cor, destaque e benefício claro. */
.bonus-showcase {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 34px;
  padding: 28px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 30px 30px 48px 30px;
  background: linear-gradient(120deg, rgba(255,255,255,.26), rgba(255,255,255,.1));
  box-shadow: 0 20px 38px rgba(42,92,172,.18);
}
.bonus-showcase-art {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  background: radial-gradient(circle at 25% 23%, rgba(255,209,102,.95), transparent 18%), radial-gradient(circle at 78% 75%, rgba(255,107,139,.45), transparent 28%), rgba(255,255,255,.16);
}
.bonus-image-frame {
  width: min(80%, 300px);
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 22px 22px 34px 22px;
  background: var(--white);
  box-shadow: 0 20px 33px rgba(44,71,140,.26);
  transform: rotate(-3deg);
}
.bonus-image-frame img { width: 100%; height: auto; }
.bonus-floating-tag {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 20px;
  padding: 10px 15px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: #74531D;
  background: var(--yellow);
  box-shadow: 0 9px 18px rgba(44,71,140,.15);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  transform: rotate(-5deg);
}
.bonus-spark { position: absolute; color: var(--yellow); font-size: 30px; animation: float 3.8s ease-in-out infinite; }
.bonus-spark-one { top: 19px; right: 24px; }
.bonus-spark-two { right: 29px; bottom: 22px; color: var(--pink); font-size: 34px; animation-delay: .8s; }
.bonus-showcase-copy { padding: 7px 8px 7px 0; }
.bonus-label { display: inline-block; margin-bottom: 13px; color: var(--yellow); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.bonus-showcase-copy h3 { max-width: 520px; margin-bottom: 12px; color: var(--white); font-size: clamp(29px, 4vw, 44px); line-height: 1.02; }
.bonus-showcase-copy p { max-width: 510px; margin-bottom: 20px; color: rgba(255,255,255,.88); font-size: 16px; }
.bonus-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.bonus-chips span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; color: var(--white); background: rgba(255,255,255,.12); font-size: 11px; font-weight: 700; }
.bonus-closing { display: block; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.24); color: var(--yellow); font-family: 'Baloo 2', sans-serif; font-size: 19px; line-height: 1.05; }

/* A quinta capa fica centralizada para a vitrine não terminar desalinhada. */
.product-cover-card:nth-child(5) { grid-column: 1 / -1; width: min(48%, 220px); justify-self: center; }

@media (max-width: 700px) {
  .bonus-showcase { grid-template-columns: 1fr; gap: 22px; padding: 17px; border-radius: 24px 24px 36px 24px; }
  .bonus-showcase-art { min-height: 280px; }
  .bonus-image-frame { width: min(68%, 250px); border-width: 5px; }
  .bonus-floating-tag { top: 13px; left: 12px; padding: 8px 10px; font-size: 9px; }
  .bonus-spark { font-size: 24px; }
  .bonus-spark-two { font-size: 27px; }
  .bonus-showcase-copy { padding: 0 4px 4px; }
  .bonus-label { font-size: 9px; }
  .bonus-showcase-copy h3 { font-size: 29px; }
  .bonus-showcase-copy p { font-size: 14px; }
  .bonus-chips { gap: 6px; margin-bottom: 17px; }
  .bonus-chips span { font-size: 10px; }
  .bonus-closing { font-size: 17px; }
  .product-cover-card:nth-child(5) { width: 52%; }
}

/* Imagem da área de membros dentro da apresentação dos módulos. */
.modules-preview {
  width: min(100%, 1080px);
  margin: 46px auto 0;
  padding: 10px;
  border: 2px solid var(--line);
  border-radius: 28px;
  background: #fffdfa;
  box-shadow: 0 18px 40px rgba(107,74,134,.12);
}
.modules-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}
.modules-preview figcaption {
  padding: 12px 10px 4px;
  color: var(--muted);
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* CTAs intermediários para manter o próximo passo sempre claro. */
.mid-cta {
  position: relative;
  padding: 22px 0;
  background: linear-gradient(90deg, #fff7e6 0%, #fff4f8 50%, #f3eeff 100%);
  border-top: 1px solid rgba(179,136,255,.15);
  border-bottom: 1px solid rgba(255,107,139,.14);
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.mid-cta-inner p {
  margin: 0;
  color: var(--purple-dark);
  font-family: 'Baloo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.mid-cta .button {
  min-height: 50px;
  padding: 13px 22px;
  font-size: 14px;
}
.inside-section {
  background: #fffdfc;
}
.inside-section .inside-collection {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 700px) {
  .modules-preview {
    margin-top: 32px;
    padding: 6px;
    border-radius: 20px;
  }
  .modules-preview img { border-radius: 14px; }
  .modules-preview figcaption { padding: 9px 7px 3px; font-size: 13px; line-height: 1.15; }
  .mid-cta { padding: 17px 0; }
  .mid-cta-inner { flex-direction: column; gap: 11px; text-align: center; }
  .mid-cta-inner p { font-size: 16px; line-height: 1.1; }
  .mid-cta .button { width: 100%; min-height: 50px; padding: 13px 15px; font-size: 12px; }
}
