:root {
  --bg: #fbf3e3;
  --bg-2: #f6e9d2;
  --cream: #fffaf0;
  --paper: #fffdf7;
  --ink: #4a3826;
  --muted: #846d54;
  --title: #6b4a24;
  --accent: #b45e34;
  --accent-dark: #8f4a28;
  --accent-soft: #f2dbc6;
  --gold: #e0ac4b;
  --green: #82a062;
  --green-deep: #5f7e45;
  --green-soft: #dfe7cb;
  --blue: #6e93a0;
  --pink: #c57e8c;
  --line: #ead8b8;
  --shadow: 0 18px 45px rgba(112, 76, 34, .14);
  --shadow-soft: 0 10px 25px rgba(112, 76, 34, .1);
  --radius: 24px;
  --page-max: 1120px;
  --page-pad: max(16px, calc((100% - var(--page-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid rgba(180, 94, 52, .55);
  outline-offset: 3px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(224, 172, 75, .2), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(130, 160, 98, .18), transparent 24rem),
    var(--bg);
  font-family: "Trebuchet MS", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

p {
  line-height: 1.62;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--title);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.72rem, 3vw, 2.8rem);
  max-width: 21ch;
  line-height: 1.13;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.35rem;
}

.nowrap {
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem var(--page-pad);
  background: rgba(255, 250, 240, .86);
  border-bottom: 1px solid rgba(234, 216, 184, .75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--accent-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: .62rem .9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  color: var(--muted);
}

nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

nav a:last-child {
  background: var(--accent);
  color: #fffaf0;
  box-shadow: var(--shadow-soft);
}

nav a:last-child:hover {
  background: var(--accent-dark);
  color: #fffaf0;
}

.section {
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.6rem) 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 76px);
  padding: clamp(3rem, 8vw, 6.5rem) var(--page-pad);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 243, 227, .96) 0%, rgba(251, 243, 227, .82) 40%, rgba(251, 243, 227, .28) 66%, rgba(251, 243, 227, .04) 100%),
    url("assets/hero-clube-mente-brilhante.webp") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: max-content;
  max-width: 100%;
  padding: .48rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 252, 245, .72);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--gold);
}

.lead {
  color: var(--title);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 800;
}

.hero-copy .lead,
.hero-copy .lead + p {
  max-width: 37rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 56px;
  padding: 1rem 1.45rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(143, 74, 40, .2), inset 0 -3px 0 rgba(74, 56, 38, .16);
  text-decoration: none;
  text-align: center;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button::after {
  content: "→";
  line-height: 1;
  transform: translateY(-1px);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(143, 74, 40, .24), inset 0 -3px 0 rgba(74, 56, 38, .16);
}

p + .button,
ul + .button {
  margin-top: .55rem;
}

.button-large {
  width: 100%;
  font-size: 1.05rem;
}

.button-compact {
  min-height: 48px;
  padding: .85rem 1.1rem;
  font-size: .86rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.secure {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 800;
}

.secure::before {
  content: "";
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fffaf0 0 23%, transparent 25%),
    var(--green);
  box-shadow: 0 0 0 4px rgba(130, 160, 98, .14);
  flex: none;
}

.button + .secure {
  display: flex;
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.hero-actions .button + .secure {
  margin-top: 0;
}

.hero-visual {
  display: none;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: .1rem;
  min-width: 118px;
  padding: .82rem .95rem;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  background: rgba(255, 252, 245, .9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.floating-card strong {
  color: var(--accent-dark);
  font-size: 1.6rem;
}

.floating-card span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
}

.card-focus {
  left: 1rem;
  bottom: 1rem;
}

.card-time {
  right: 1rem;
  top: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero h1,
.offer-intro h2,
.story-card h2,
.price-card h2 {
  margin: .7rem 0 1rem;
}

.benefit-grid,
.focus-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: .2rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.routine-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.routine-showcase figure,
.story-photo,
.showcase-hero {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.routine-showcase img,
.story-photo img,
.showcase-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routine-main {
  min-height: 500px;
  position: relative;
}

.routine-side {
  display: grid;
  gap: 1rem;
}

.routine-side figure {
  min-height: 242px;
  position: relative;
}

.routine-showcase figcaption {
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  display: grid;
  gap: .2rem;
  padding: .82rem .95rem;
  border-radius: 16px;
  background: rgba(255, 252, 245, .9);
  color: var(--title);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.routine-showcase figcaption strong {
  font-size: .98rem;
  font-weight: 950;
}

.routine-showcase figcaption span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 850;
}

.benefit-grid article,
.focus-grid article,
.bonus-grid article,
.testimonial-grid article,
.story-card,
.price-card,
.progress-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, .82);
  box-shadow: var(--shadow-soft);
}

.benefit-grid article,
.focus-grid article,
.bonus-grid article,
.testimonial-grid article,
.compare article,
details {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.benefit-grid article:hover,
.focus-grid article:hover,
.bonus-grid article:hover,
.testimonial-grid article:hover,
.compare article:hover,
details:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.benefit-grid article {
  min-height: 172px;
  padding: 1.35rem;
  font-weight: 800;
}

.benefit-detail {
  grid-column: span 2;
  display: grid;
  place-items: center;
  min-height: 172px;
  margin: 0;
}

.benefit-detail img {
  width: min(100%, 640px);
  max-height: 230px;
  object-fit: contain;
  transform: rotate(-2deg);
  filter: drop-shadow(0 16px 22px rgba(112, 76, 34, .14));
}

.benefit-grid article::before {
  content: "";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: .8rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 44%, rgba(255,255,255,.72) 45% 58%, transparent 59%),
    var(--green);
  box-shadow: inset 0 -2px 0 rgba(74, 56, 38, .12), var(--shadow-soft);
}

.benefit-grid article:nth-child(2)::before { background-color: var(--gold); }
.benefit-grid article:nth-child(3)::before { background-color: var(--blue); }
.benefit-grid article:nth-child(4)::before { background-color: var(--pink); }
.benefit-grid article:nth-child(5)::before { background-color: var(--accent); }
.benefit-grid article:nth-child(6)::before { background-color: var(--green); }
.benefit-grid article:nth-child(7)::before { background-color: var(--gold); }

.story-band {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(251, 239, 211, .84), rgba(223, 231, 203, .72)),
    var(--bg-2);
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.story-photo {
  align-self: stretch;
  min-height: 520px;
}

.offer-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  align-items: center;
  gap: 2.5rem;
}

.binder {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-soft), var(--green-soft));
  box-shadow: var(--shadow);
}

.sheet {
  position: absolute;
  width: 62%;
  min-height: 310px;
  padding: 1.2rem;
  border: 2px solid #2f2a22;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 20px 28px rgba(74, 56, 38, .18);
}

.sheet span {
  display: block;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  font-weight: 900;
}

.sheet-one {
  top: 40px;
  left: 54px;
  transform: rotate(-7deg);
}

.sheet-two {
  top: 82px;
  right: 38px;
  transform: rotate(8deg);
}

.sheet-three {
  left: 105px;
  bottom: 34px;
  transform: rotate(-1deg);
}

.sheet i,
.sheet b,
.sheet em {
  display: block;
  margin: .55rem 0;
  border: 2px dashed #2f2a22;
}

.sheet i {
  height: 34px;
  border-radius: 50%;
}

.sheet b {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: .4rem;
  border-radius: 10px;
}

.sheet em {
  height: 3px;
  border-width: 0 0 2px;
}

.app-preview {
  padding-top: 2rem;
}

.app-live-preview {
  width: 100%;
  margin-bottom: 1rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 88% 12%, rgba(130, 160, 98, .18), transparent 12rem),
    rgba(255, 253, 247, .82);
  box-shadow: var(--shadow-soft);
}

.app-video-frame {
  overflow: hidden;
  border: 1px solid rgba(74, 56, 38, .16);
  border-radius: 24px;
  background: #5b432c;
  box-shadow: var(--shadow);
}

.video-bar {
  display: flex;
  align-items: center;
  gap: .38rem;
  height: 36px;
  padding: 0 .9rem;
  background: #fff7e6;
  border-bottom: 1px solid var(--line);
}

.video-bar span {
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--accent-soft);
}

.video-bar span:nth-child(2) {
  background: var(--gold);
}

.video-bar span:nth-child(3) {
  background: var(--green-soft);
}

.app-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  background: var(--cream);
}

.app-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.app-preview-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(224, 172, 75, .2), transparent 7rem),
    rgba(255, 253, 247, .9);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.app-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.app-preview-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 850;
}

.mini-app-top,
.mini-profile,
.mini-stats {
  display: flex;
  align-items: center;
}

.mini-app-top {
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: 1rem;
}

.mini-app-top span {
  padding: .5rem .72rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.mini-app-top i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 43%, rgba(255, 255, 255, .75) 44% 57%, transparent 58%),
    var(--green);
  box-shadow: var(--shadow-soft);
}

.achievements-card .mini-app-top i {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .95) 0 18%, transparent 19%),
    var(--gold);
}

.profile-card .mini-app-top i {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .95) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 84%, rgba(255, 255, 255, .95) 0 28%, transparent 29%),
    var(--pink);
}

.mini-shelf {
  display: grid;
  gap: .75rem;
}

.mini-shelf div {
  display: grid;
  gap: .15rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: inset 4px 0 0 var(--green-soft);
}

.mini-shelf div:nth-child(2) {
  box-shadow: inset 4px 0 0 var(--accent-soft);
}

.mini-shelf div:nth-child(3) {
  box-shadow: inset 4px 0 0 rgba(110, 147, 160, .3);
}

.mini-shelf b,
.mini-profile b {
  color: var(--title);
  font-weight: 950;
}

.mini-shelf small,
.mini-profile small,
.mini-stats small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.mini-medals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: .2rem 0 1rem;
}

.mini-medals span {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .88) 0 20%, transparent 21%),
    var(--gold);
  box-shadow: inset 0 -5px 0 rgba(74, 56, 38, .1), var(--shadow-soft);
}

.mini-medals span:nth-child(2) {
  background-color: var(--green);
}

.mini-medals span:nth-child(3) {
  background-color: var(--blue);
}

.mini-medals span::after {
  content: "";
  position: absolute;
  bottom: -13px;
  width: 18px;
  height: 22px;
  border-radius: 0 0 7px 7px;
  background: var(--accent-soft);
}

.mini-progress {
  height: 14px;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  overflow: hidden;
}

.mini-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.mini-profile {
  gap: .8rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.mini-avatar {
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 35%, #fff8e9 0 16%, transparent 17%),
    radial-gradient(circle at 50% 86%, #fff8e9 0 27%, transparent 28%),
    linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: var(--shadow-soft);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-top: .75rem;
}

.mini-stats span {
  display: grid;
  justify-items: center;
  gap: .15rem;
  padding: .7rem .4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 240, .78);
}

.mini-stats b {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.focus-grid article {
  padding: 1.35rem;
}

.focus-grid .focus-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border: 1px solid rgba(62, 109, 84, .14);
  border-radius: 20px;
  background: #fffaf1;
  box-shadow: var(--shadow-soft);
}

.focus-grid .iart {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bonus-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-icon svg use[href="#icon-estrela"] {
  fill: currentColor;
  stroke: none;
}

.focus-grid article:nth-child(2) .focus-icon { background: #f4f8ee; }
.focus-grid article:nth-child(3) .focus-icon { background: #fff4db; }
.focus-grid article:nth-child(4) .focus-icon { background: #edf6ff; }
.focus-grid article:nth-child(5) .focus-icon { background: #fff0f5; }
.focus-grid article:nth-child(6) .focus-icon { background: #f5f0ff; }

.note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 253, 247, .7);
  font-weight: 800;
}

.showcase {
  width: 100%;
  max-width: none;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  background: #fff8e9;
}

.showcase .section-heading,
.showcase .flipbook,
.showcase .content-list,
.showcase .note,
.bonus .section-heading,
.bonus .bonus-grid,
.bonus .total {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}

.showcase-hero {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--page-max);
  margin: 0 auto 1.2rem;
  padding: 1.1rem 1.4rem;
}

.showcase-hero img {
  width: min(100%, 380px);
  justify-self: center;
  height: clamp(360px, 42vw, 500px);
  object-fit: contain;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(74, 56, 38, .08);
  border-radius: 18px;
}

.showcase-hero div {
  max-width: 470px;
  padding: 1rem 0;
}

.showcase-hero h3 {
  margin-bottom: .6rem;
}

.flipbook {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: .2rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.page-sample {
  min-height: 335px;
  padding: 1.2rem;
  border: 2px solid #2e281f;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.page-sample span {
  display: block;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  font-weight: 900;
}

.maze,
.dots,
.shapes,
.trace {
  height: 238px;
  border: 2px solid #2e281f;
  border-radius: 10px;
  background-color: #fff;
}

.maze {
  background:
    linear-gradient(90deg, transparent 46%, #2e281f 47% 49%, transparent 50%),
    linear-gradient(transparent 23%, #2e281f 24% 26%, transparent 27% 49%, #2e281f 50% 52%, transparent 53% 74%, #2e281f 75% 77%, transparent 78%);
}

.dots {
  background-image: radial-gradient(circle, #2e281f 0 5px, transparent 6px);
  background-size: 44px 44px;
}

.shapes {
  background:
    radial-gradient(circle at 26% 26%, transparent 0 22px, #2e281f 23px 25px, transparent 26px),
    linear-gradient(45deg, transparent 58%, #2e281f 59% 61%, transparent 62%),
    linear-gradient(135deg, transparent 58%, #2e281f 59% 61%, transparent 62%);
}

.trace {
  background:
    repeating-linear-gradient(0deg, transparent 0 32px, #2e281f 33px 35px, transparent 36px 64px),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(46,40,31,.2) 21px 22px, transparent 23px 40px);
}

.content-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

.content-list span,
.pill-list span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--title);
  font-weight: 900;
}

.content-list span {
  justify-content: center;
  min-height: 48px;
  padding: .62rem .75rem;
  text-align: center;
  font-size: .88rem;
  line-height: 1.15;
}

.content-list span::before,
.pill-list span::before {
  content: "";
  width: .58rem;
  height: .58rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 172, 75, .16);
  flex: none;
}

.pill-list span:nth-child(even)::before,
.content-list span:nth-child(even)::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(130, 160, 98, .16);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compare article {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.compare article + article {
  background: var(--green-soft);
}

.compare h3 {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .55rem;
}

.compare h3::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: var(--accent);
  box-shadow: var(--shadow-soft);
}

.compare article + article h3::before {
  background: var(--green);
}

.mentor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.mentor h2 {
  margin-bottom: 1.4rem;
}

.guarantee,
.scarcity {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.mentor-photo {
  margin: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mentor-avatar {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  border: 10px solid var(--paper);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  box-shadow: var(--shadow);
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-weight: 900;
}

.guarantee-seal {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .1rem;
  width: 100%;
  min-height: 320px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .9), transparent 42%),
    linear-gradient(135deg, #fff8e9, #fbe4c9 55%, #dfe7cb);
  box-shadow: var(--shadow);
  color: var(--accent-dark);
  text-align: center;
  transform: rotate(-2deg);
}

.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(180, 94, 52, .34);
  border-radius: 22px;
}

.seal-star {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: .25rem;
  border-radius: 16px;
  background: var(--gold);
  color: #fffaf0;
  box-shadow: var(--shadow-soft);
  font-size: 1.45rem;
}

.guarantee-seal strong,
.guarantee-seal small {
  position: relative;
  z-index: 1;
}

.guarantee-seal strong {
  color: var(--title);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: .95;
}

.guarantee-seal small {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.recommended {
  padding-top: 2rem;
}

.recommended .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.recommended .section-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.recommended .pill-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.recommended .pill-list span {
  position: relative;
  grid-column: span 2;
  display: flex;
  align-items: center;
  min-height: 124px;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .92), rgba(255, 253, 247, .78)),
    rgba(255, 253, 247, .86);
  box-shadow: var(--shadow-soft);
  line-height: 1.32;
  text-align: left;
}

.recommended .pill-list span:nth-child(4),
.recommended .pill-list span:nth-child(5) {
  grid-column: span 3;
}

.recommended .pill-list span::before {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,255,255,.78) 43% 58%, transparent 59%),
    var(--gold);
  box-shadow: var(--shadow-soft);
}

.recommended .pill-list span:nth-child(even)::before {
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,255,255,.78) 43% 58%, transparent 59%),
    var(--green);
}

.testimonial-grid article,
.bonus-grid article {
  padding: 1.35rem;
}

.testimonial-grid article {
  position: relative;
  min-height: 280px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 90% 12%, rgba(224, 172, 75, .16), transparent 9rem),
    #fff;
  scroll-snap-align: start;
}

.testimonial-grid article::before {
  content: "“";
  display: block;
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: .6;
  opacity: .7;
}

.testimonial-grid strong {
  display: block;
  margin-top: 1rem;
  color: var(--accent-dark);
}

.testimonial-grid span {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 850;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft), var(--green-soft));
  color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
  font-weight: 950;
}

.bonus {
  width: 100%;
  max-width: none;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  background: linear-gradient(180deg, #fbefd3, #fff8e9);
}

.bonus-grid small {
  display: inline-flex;
  width: max-content;
  margin-bottom: .65rem;
  padding: .38rem .55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-grid article {
  position: relative;
}

.bonus-icon {
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--cream);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.bonus-grid article:nth-child(2) .bonus-icon,
.bonus-grid article:nth-child(5) .bonus-icon {
  color: var(--green-deep);
}

.bonus-grid article:nth-child(3) .bonus-icon,
.bonus-grid article:nth-child(6) .bonus-icon {
  color: var(--blue);
}

.bonus-grid strong,
.total {
  color: var(--green-deep, #5f7e45);
  font-weight: 950;
}

.total {
  width: max-content;
  max-width: 100%;
  margin-top: 1.2rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  font-size: 1.2rem;
}

.scarcity {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.progress-card {
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, .9), rgba(251, 239, 211, .9)),
    var(--paper);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
  font-weight: 950;
}

.progress {
  height: 18px;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: var(--accent-soft);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 93%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--accent));
}

.progress-card .button {
  width: 100%;
  white-space: nowrap;
  padding-inline: 1rem;
  font-size: .92rem;
}

.pricing {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(rgba(74, 56, 38, .78), rgba(74, 56, 38, .78)),
    url("assets/app-home-card.webp") center / cover;
}

.price-card {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.price-card ul {
  display: grid;
  gap: .7rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 850;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: .9rem;
  height: .9rem;
  border-radius: .3rem;
  background: var(--green);
}

.price {
  display: grid;
  gap: .18rem;
  margin: 1.5rem 0;
  padding: 1.3rem;
  border-radius: 20px;
  background: #fff7df;
  text-align: center;
}

.price span,
.price small {
  color: var(--muted);
  font-weight: 900;
}

.price small {
  text-decoration: line-through;
}

.price strong {
  color: var(--accent-dark);
  font-size: clamp(3rem, 9vw, 5.2rem);
  line-height: .95;
}

.price em {
  color: var(--title);
  font-style: normal;
  font-weight: 900;
}

.faq {
  max-width: var(--page-max);
}

.faq .section-heading {
  margin-bottom: 1.2rem;
}

details {
  padding: 1rem 1.2rem;
  margin-bottom: .8rem;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--title);
  font-weight: 950;
  list-style: none;
}

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

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  flex: none;
}

details[open] summary::after {
  content: "−";
  background: var(--green-soft);
  color: var(--green-deep);
}

details p {
  margin: .8rem 0 0;
}

.final-cta-box {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, .92), rgba(251, 239, 211, .9)),
    var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta-box h2 {
  margin-bottom: 1rem;
}

.final-cta-box p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  width: min(420px, 100%);
}

footer {
  padding: 2rem 1rem 3rem;
  background: #4a3826;
  color: rgba(255, 250, 240, .78);
  text-align: center;
  font-size: .86rem;
}

footer p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .offer-intro,
  .app-live-preview,
  .mentor,
  .guarantee,
  .scarcity,
  .story-card,
  .showcase-hero {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .benefit-grid,
  .focus-grid,
  .bonus-grid,
  .app-preview-grid,
  .compare,
  .routine-showcase {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-auto-columns: minmax(280px, 88vw);
  }

  .routine-main,
  .routine-side figure,
  .story-photo {
    min-height: 300px;
  }

  .showcase-hero div {
    padding: .4rem .6rem .8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .binder {
    min-height: 390px;
  }

  .sheet {
    min-height: 260px;
  }

  .sheet-one {
    left: 24px;
  }

  .sheet-two {
    right: 18px;
  }

  .sheet-three {
    left: 70px;
  }

  .mentor-avatar {
    width: 150px;
    height: 150px;
    font-size: 2.4rem;
  }

  .guarantee-seal {
    width: 170px;
    min-height: 170px;
  }

  .guarantee-seal strong {
    font-size: 1.85rem;
  }

  .app-video-frame video {
    aspect-ratio: 16 / 9;
  }

  .content-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommended .pill-list {
    grid-template-columns: 1fr;
  }

  .recommended .pill-list span,
  .recommended .pill-list span:nth-child(4),
  .recommended .pill-list span:nth-child(5) {
    grid-column: auto;
    min-height: 104px;
  }

  .benefit-detail {
    grid-column: auto;
    min-height: 150px;
  }

  .benefit-detail img {
    max-height: 150px;
  }

}

@media (max-width: 520px) {
  .section {
    width: min(100% - 24px, var(--page-max));
  }

  .topbar {
    padding-inline: .8rem;
  }

  .brand span:last-child {
    max-width: 170px;
  }

  .hero {
    padding: 2.8rem 16px 2.6rem;
    background:
      linear-gradient(90deg, rgba(251, 243, 227, .97) 0%, rgba(251, 243, 227, .88) 58%, rgba(251, 243, 227, .68) 100%),
      url("assets/hero-clube-mente-brilhante.webp") center right 34% / cover no-repeat;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    max-width: 21ch;
    font-size: clamp(1.34rem, 6.1vw, 1.55rem);
    line-height: 1.14;
  }

  .hero-copy .lead,
  .hero-copy .lead + p {
    max-width: calc(100% - 12px);
  }

  .hero-actions,
  .hero-actions .button {
    width: calc(100% - 12px);
  }

  .hero-actions {
    display: grid;
    gap: .85rem;
  }

  .button {
    width: 100%;
  }

  .secure {
    align-items: flex-start;
    width: 100%;
    line-height: 1.35;
  }

  .hero-copy p,
  .benefit-grid article,
  .focus-grid article,
  .bonus-grid article,
  details {
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.42rem, 6vw, 1.78rem);
  }

  .benefit-grid article,
  .focus-grid article,
  .bonus-grid article,
  .testimonial-grid article {
    min-width: 0;
  }

  .floating-card {
    position: static;
    display: inline-grid;
    margin: .8rem 0 0 .8rem;
  }

  .hero-visual {
    overflow: visible;
  }

  .hero-visual img {
    border-radius: 28px;
  }

  .progress-label {
    display: grid;
  }

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