﻿:root {
  --ink: #211c17;
  --soft-ink: #3d352d;
  --muted: #756d64;
  --paper: #fffefa;
  --cream: #faf7f1;
  --warm: #f4efe8;
  --sand: #eee6da;
  --gold: #bb9650;
  --gold-dark: #7f6332;
  --line: rgba(84, 70, 53, 0.14);
  --shadow: 0 24px 70px rgba(79, 58, 35, 0.1);
  --radius: 8px;
  --body: "Inter", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(187, 150, 80, 0.08) 18.1% 18.2%, transparent 18.3% 100%),
    linear-gradient(65deg, transparent 0 58%, rgba(187, 150, 80, 0.07) 58.1% 58.2%, transparent 58.3% 100%);
}

main > * {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(127, 99, 50, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(127, 99, 50, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.5;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 34px 0 70px;
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.98) 0%, rgba(255, 254, 250, 0.94) 38%, rgba(255, 254, 250, 0.62) 58%, rgba(255, 254, 250, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.1) 0%, rgba(255, 254, 250, 0.88) 100%),
    url("assets/hero-desktop-gemini.webp?v=20260625-095625");
  background-color: var(--paper);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero__inner {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 660px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 104px);
  margin: 0 auto;
}

.hero__copy {
  min-width: 0;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  color: var(--soft-ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: 4.05rem;
  line-height: 1.05;
}

h2 {
  font-size: 2.85rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero__actions span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(116, 80, 32, 0.18);
  filter: brightness(1.02);
}

.button--primary {
  background: linear-gradient(180deg, #d8b86c, var(--gold));
  color: #201811;
}

.button--ghost {
  margin-top: 28px;
  border-color: rgba(127, 99, 50, 0.22);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.hero__seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 590px;
  margin: -12px 0 24px;
}

.hero__seals span {
  padding: 8px 11px;
  border: 1px solid rgba(127, 99, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}

.hero__proof div {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.hero__proof strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.hero__proof span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-mask {
  overflow: hidden;
}

.image-bg {
  position: relative;
  overflow: hidden;
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
}

.image-mask img,
.image-mask picture,
.image-mask picture img {
  width: 100%;
  height: 100%;
}

.image-mask img,
.image-mask picture img {
  object-fit: cover;
}

.hero__media {
  display: none;
}

.hero__media::before {
  content: none;
}

.hero__media img {
  object-position: center;
}

.hero__note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  width: min(330px, calc(100% - 44px));
  padding: 18px 20px;
  border: 1px solid rgba(195, 154, 76, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 42px rgba(64, 44, 25, 0.14);
  backdrop-filter: blur(14px);
}

.hero__note span,
.media-caption span,
.card-copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__note strong,
.media-caption strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.section {
  padding: 108px 0;
}

.luxury-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(127, 99, 50, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.luxury-ticker__track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 18px 0;
  animation: tickerMove 34s linear infinite;
}

.luxury-ticker__track span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.luxury-ticker__track span::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 18px;
  vertical-align: middle;
  background: rgba(127, 99, 50, 0.32);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section--warm {
  background: #fbf9f4;
}

.section-header {
  max-width: 720px;
}

.section-header--center {
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p,
.intro__copy p,
.product__copy p,
.author__copy p,
.offer__copy p {
  color: var(--muted);
}

.intro__layout,
.product__layout,
.author__layout,
.offer__layout,
.method__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.intro__media {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  background-color: var(--cream);
  box-shadow: var(--shadow);
  background-position: center;
}

.author__media img {
  width: calc(100% + 58px);
  height: calc(100% + 58px);
  max-width: none;
  object-position: left top;
}

.intro__media::before,
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(33, 28, 23, 0.05), rgba(33, 28, 23, 0.34)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.38));
}

.intro__media::after,
.audience-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 6px;
  pointer-events: none;
}

.media-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  width: min(360px, calc(100% - 44px));
  padding: 18px 20px;
  border: 1px solid rgba(195, 154, 76, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
}

.clean-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--soft-ink);
  font-weight: 650;
}

.clean-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--gold);
}

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

.audience-card {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: rgba(255, 253, 248, 0.72);
  background-position: center 18%;
  box-shadow: 0 18px 42px rgba(88, 60, 28, 0.06);
  overflow: hidden;
}

.card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 24px 22px 26px;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 38px rgba(44, 31, 18, 0.12);
  backdrop-filter: blur(12px);
}

.card-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(127, 99, 50, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 254, 250, 0.58)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 46px rgba(79, 58, 35, 0.06);
}

.section-cta p {
  margin: 0;
  color: var(--soft-ink);
  font-weight: 750;
}

.method {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.92), rgba(250, 247, 241, 0.92)),
    var(--cream);
}

.method__layout {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
}

.steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(195, 154, 76, 0.4);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.method .button {
  width: max-content;
  margin-top: 18px;
}

.promise {
  background:
    linear-gradient(180deg, rgba(33, 28, 23, 0.94), rgba(48, 40, 32, 0.94)),
    #211c17;
  color: var(--paper);
}

.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(216, 184, 108, 0.18) 46.1% 46.25%, transparent 46.4% 100%),
    radial-gradient(circle at 80% 0, rgba(216, 184, 108, 0.18), transparent 26rem);
}

.promise__box {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 960px;
}

.promise h2 {
  max-width: 820px;
}

.promise .eyebrow {
  color: #d8b86c;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 4px;
}

.promise-grid div {
  min-height: 150px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.055);
}

.promise-grid span {
  display: block;
  margin-bottom: 36px;
  color: #d8b86c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.promise-grid strong {
  display: block;
  color: var(--paper);
  line-height: 1.32;
}

.promise .button {
  width: max-content;
}

.product {
  background: var(--paper);
}

.product__media {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(195, 154, 76, 0.28);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 34px;
}

.product__media img {
  width: min(430px, 92%);
  height: auto;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 36px rgba(48, 34, 19, 0.16));
}

.product__copy .button {
  width: max-content;
  margin-top: 30px;
}

.ebook-float {
  animation: ebookFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes ebookFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ebook-float {
    animation: none;
  }

  .luxury-ticker__track {
    animation: none;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.outcomes {
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.72), rgba(255, 254, 250, 0.92)),
    var(--cream);
}

.outcomes__box {
  padding: 58px;
  border: 1px solid rgba(195, 154, 76, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 20px 54px rgba(88, 60, 28, 0.08);
}

.outcomes__box h2 {
  max-width: 780px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.outcome-grid span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft-ink);
  font-weight: 850;
}

.conversion-band {
  padding: 34px 0;
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.94), rgba(250, 247, 241, 0.82)),
    var(--cream);
}

.conversion-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(127, 99, 50, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 54px rgba(79, 58, 35, 0.08);
}

.conversion-band p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.28;
}

.author__layout {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
}

.author__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(195, 154, 76, 0.45);
}

.offer {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(187, 150, 80, 0.11), transparent 24rem),
    linear-gradient(180deg, #fffefa 0%, #faf7f1 100%);
}

.offer h2,
.offer h3,
.offer .eyebrow {
  color: var(--ink);
}

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

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

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

.trust-seals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 30px;
}

.trust-seals article {
  padding: 20px 18px;
  border: 1px solid rgba(127, 99, 50, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(79, 58, 35, 0.06);
}

.trust-seals article > span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: rgba(187, 150, 80, 0.15);
  color: var(--gold-dark);
  font-weight: 900;
}

.trust-seals strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}

.trust-seals small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.price-card {
  position: relative;
  padding: 28px 28px 34px;
  border: 1px solid rgba(127, 99, 50, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 76px rgba(79, 58, 35, 0.12);
  text-align: center;
}

.price-card img {
  width: min(350px, 100%);
  height: 210px;
  margin: 0 auto 18px;
  border-radius: 6px;
  object-fit: cover;
  object-position: left top;
}

.price-card__from {
  margin-bottom: 6px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-card__label {
  margin-bottom: 2px;
  color: var(--soft-ink);
  font-weight: 800;
}

.price-card__value {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 5.7rem;
  font-weight: 700;
  line-height: 0.82;
}

.price-card__value span {
  margin-right: 6px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 900;
}

.price-card__installments {
  margin-bottom: 24px;
  color: var(--muted);
}

.price-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

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

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-cta {
  padding: 94px 0 104px;
  background: var(--cream);
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(520px, calc(100% - 36px));
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(127, 99, 50, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 18px 48px rgba(50, 35, 20, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-cta.is-sticky-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.sticky-cta span {
  color: var(--soft-ink);
  font-size: 0.75rem;
  font-weight: 900;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1040px) {
  .hero__inner,
  .intro__layout,
  .product__layout,
  .author__layout,
  .offer__layout,
  .method__layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 740px;
  }

  .hero__media {
    min-height: 500px;
  }

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

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

  .offer__layout {
    gap: 54px;
  }
}

@media (max-width: 720px) {
  .container,
  .hero__inner {
    width: calc(100% - 28px);
    max-width: 1120px;
  }

  .hero {
    min-height: auto;
    padding: 0 0 56px;
    background: var(--paper);
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
    height: 330px;
    background:
      linear-gradient(180deg, rgba(255, 254, 250, 0.02) 0%, rgba(255, 254, 250, 0.04) 52%, rgba(255, 254, 250, 0.72) 84%, var(--paper) 100%),
      url("assets/hero-desktop-gemini.webp?v=20260625-095625");
    background-color: var(--paper);
    background-position: 88% center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero::after {
    content: none;
  }

  .hero__inner {
    gap: 26px;
    min-height: auto;
    padding-top: 320px;
  }

  .brand {
    margin-bottom: 22px;
    font-size: 0.68rem;
  }

  .hero__note {
    display: none;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.34rem;
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 1rem;
    max-width: 33ch;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 348px);
    max-width: 100%;
  }

  .hero__seals {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 348px);
    margin-top: -4px;
  }

  .hero__seals span {
    width: 100%;
    text-align: center;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 0.68rem;
    white-space: normal;
  }

  .hero__proof,
  .audience-grid,
  .outcome-grid,
  .trust-seals,
  .promise-grid,
  .section-cta,
  .conversion-band__inner {
    grid-template-columns: 1fr;
  }

  .luxury-ticker__track {
    gap: 26px;
    padding: 15px 0;
  }

  .section-cta,
  .conversion-band__inner {
    padding: 22px;
  }

  .section-cta .button,
  .conversion-band .button,
  .promise .button,
  .method .button,
  .product__copy .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-header--center {
    margin-bottom: 34px;
    text-align: left;
  }

  .intro__layout,
  .product__layout,
  .author__layout,
  .offer__layout,
  .method__layout {
    gap: 36px;
  }

  .intro__media,
  .product__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product__media {
    padding: 24px;
  }

  .product__media img {
    width: min(330px, 92%);
    max-height: 330px;
  }

  .media-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 16px;
  }

  .audience-card {
    min-height: 500px;
    background-position: center 12%;
  }

  .steps article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .outcomes__box {
    padding: 34px 22px;
  }

  .promise-grid div {
    min-height: auto;
  }

  .conversion-band p {
    font-size: 1.18rem;
  }

  .author__media {
    aspect-ratio: 4 / 5;
  }

  .price-card {
    padding: 24px 18px 28px;
  }

  .price-card img {
    height: 185px;
  }

  .price-card__value {
    font-size: 4.65rem;
  }

  .sticky-cta {
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    text-align: center;
  }

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

/* === Ajustes finais Codex (inicio) === */
.button,
.sticky-cta a {
  position: relative;
  overflow: hidden;
}

.button--primary,
.sticky-cta a,
.hero__actions .button--primary,
.offer .button--primary,
.final-cta .button--primary {
  color: #fffefa !important;
  text-shadow: 0 1px 14px rgba(33, 28, 23, 0.24);
}

.button--primary::after,
.sticky-cta a::after {
  content: "";
  position: absolute;
  inset: -45% -35%;
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,0.62) 49%, transparent 62%, transparent 100%);
  transform: translateX(-120%) rotate(8deg);
  animation: ctaShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShine {
  0%, 55% { transform: translateX(-120%) rotate(8deg); opacity: 0; }
  68% { opacity: 0.95; }
  82%, 100% { transform: translateX(120%) rotate(8deg); opacity: 0; }
}

.hero-title {
  max-width: 900px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title__accent {
  color: #ad8552;
  font-style: italic;
}

@media (min-width: 960px) {
  .method__layout {
    display: block !important;
    max-width: 1120px;
    margin: 0 auto;
  }

  .method .section-header {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
  }

  .method .section-header p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .steps article {
    min-height: 224px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .method .button {
    width: fit-content;
    margin: 30px auto 0;
  }
}

@media (max-width: 719px) {
  .hero,
  .hero__copy {
    text-align: center;
  }

  .hero__copy {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .brand,
  .hero .eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__seals {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
  }

  .hero__actions {
    align-items: center;
  }

  .hero__actions .button {
    width: min(100%, 340px);
    justify-content: center;
  }

  .hero::before {
    background-position: 94% center !important;
    opacity: 1;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255,254,250,0.46) 0%, rgba(255,254,250,0.62) 45%, rgba(255,254,250,0.89) 100%) !important;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(2.35rem, 13.8vw, 4.1rem);
    line-height: 0.9;
  }

  .hero-title__accent {
    margin-top: 0.06em;
  }
}
/* === Ajustes finais Codex (fim) === */
/* === HOTFIX HERO MICHELLI - 20260625-061137 === */

@media (min-width: 720px) {
  html body .hero {
    min-height: 100vh !important;
    padding: 34px 0 70px !important;
    background:
      linear-gradient(
        90deg,
        rgba(255, 254, 250, 0.96) 0%,
        rgba(255, 254, 250, 0.84) 32%,
        rgba(255, 254, 250, 0.36) 54%,
        rgba(255, 254, 250, 0.04) 78%,
        rgba(255, 254, 250, 0) 100%
      ),
      url("assets/hero-desktop-gemini.webp?v=20260625-095625") !important;
    background-color: var(--paper) !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  html body .hero::before {
    content: none !important;
    background: none !important;
  }

  html body .hero::after {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 160px !important;
    background: linear-gradient(180deg, transparent, var(--paper)) !important;
    pointer-events: none !important;
  }
}

@media (max-width: 719px) {
  html body .hero {
    position: relative !important;
    min-height: auto !important;
    padding: 0 0 56px !important;
    background: var(--paper) !important;
    overflow: hidden !important;
  }

  html body .hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto !important;
    z-index: 0 !important;
    height: 330px !important;
    background:
      linear-gradient(
        180deg,
        rgba(255, 254, 250, 0.02) 0%,
        rgba(255, 254, 250, 0.08) 42%,
        rgba(255, 254, 250, 0.72) 78%,
        var(--paper) 100%
      ),
      url("assets/hero-mobile.webp?v=20260625-095625") !important;
    background-color: var(--paper) !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1 !important;
  }

  html body .hero::after {
    content: none !important;
    background: none !important;
  }

  html body .hero__inner {
    position: relative !important;
    z-index: 1 !important;
    min-height: auto !important;
    padding-top: 320px !important;
  }

  html body .hero__copy {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* === FIM HOTFIX HERO MICHELLI === */


/* === HOTFIX MOBILE FOTO + TITULO MICHELLI - 20260625-063346 === */

@media (max-width: 719px) {
  html body .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 254, 250, 0.02) 0%,
        rgba(255, 254, 250, 0.08) 42%,
        rgba(255, 254, 250, 0.72) 78%,
        var(--paper) 100%
      ),
      url("assets/hero-mobile.webp?v=20260625-095625") !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
  }

  html body .hero-title {
    max-width: min(100%, 350px) !important;
    font-size: clamp(2.05rem, 9.4vw, 2.85rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  html body .hero-title span {
    display: block !important;
  }

  html body .hero-title__accent {
    margin-top: 0.10em !important;
  }
}

/* === FIM HOTFIX MOBILE FOTO + TITULO MICHELLI === */


/* === HOTFIX LOGO + TITULO HERO MICHELLI - 20260625-063945 === */

.hero-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 112px !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.hero-logo-img {
  display: block !important;
  width: 104px !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
}

.hero-title,
.hero-title span,
.hero-title__accent {
  text-transform: none !important;
}

@media (max-width: 719px) {
  html body .hero-logo-link {
    justify-content: center !important;
    max-width: 92px !important;
    margin: 0 auto 14px !important;
  }

  html body .hero-logo-img {
    width: 88px !important;
  }

  html body .hero-title {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(2rem, 9vw, 2.7rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    text-align: center !important;
    text-transform: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  html body .hero-title span {
    display: block !important;
    text-transform: none !important;
  }

  html body .hero-title__accent {
    margin-top: 0.08em !important;
    text-transform: none !important;
  }
}

/* === FIM HOTFIX LOGO + TITULO HERO MICHELLI === */


/* === AJUSTE LOGO MOBILE MAIOR - 20260625-070033 === */
@media (max-width: 719px) {
  html body .hero-logo-link {
    max-width: 118px !important;
    margin: 0 auto 14px !important;
  }

  html body .hero-logo-img {
    width: 108px !important;
    max-width: 108px !important;
  }
}
/* === FIM AJUSTE LOGO MOBILE MAIOR === */


/* === AJUSTE DESIGN HERO MOBILE - 20260625-070524 === */
@media (max-width: 719px) {
  html body .hero::after {
    content: "21 DIAS INTENCIONAIS" !important;
    position: absolute !important;
    top: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 4 !important;
    padding: 7px 14px !important;
    border: 1px solid rgba(123, 96, 73, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 254, 250, 0.58) !important;
    backdrop-filter: blur(8px) !important;
    color: rgba(78, 58, 44, 0.72) !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 28px rgba(70, 48, 34, 0.08) !important;
    pointer-events: none !important;
  }

  html body .hero__inner {
    padding-top: 285px !important;
  }

  html body .hero__copy {
    transform: translateY(-14px) !important;
  }
}
/* === FIM AJUSTE DESIGN HERO MOBILE === */


/* === AJUSTE SELO TOPO MOBILE - 20260625-070852 === */
@media (max-width: 719px) {
  html body .hero::after {
    content: "DIAS INTENCIONAIS" !important;
    position: absolute !important;
    top: 12px !important;
    left: 14px !important;
    right: auto !important;
    transform: none !important;
    z-index: 4 !important;
    padding: 6px 12px !important;
    border: 1px solid rgba(123, 96, 73, 0.14) !important;
    border-radius: 999px !important;
    background: rgba(255, 254, 250, 0.42) !important;
    backdrop-filter: blur(6px) !important;
    color: rgba(78, 58, 44, 0.68) !important;
    font-size: 0.56rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: 0 8px 20px rgba(70, 48, 34, 0.05) !important;
    pointer-events: none !important;
  }
}
/* === FIM AJUSTE SELO TOPO MOBILE === */


/* === REMOVER BOLHA DO SELO MOBILE - 20260625-071209 === */
@media (max-width: 719px) {
  html body .hero::after {
    content: "DIAS INTENCIONAIS" !important;
    position: absolute !important;
    top: 18px !important;
    left: 28px !important;
    right: auto !important;
    bottom: auto !important;
    inset: auto auto auto auto !important;
    transform: none !important;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;

    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;

    z-index: 5 !important;
    color: rgba(78, 58, 44, 0.70) !important;
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.22em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
  }
}
/* === FIM REMOVER BOLHA DO SELO MOBILE === */


/* === AJUSTE ENQUADRAMENTO FOTO AUTORA - 20260625-085522 === */
.author .author__media img {
  object-fit: cover !important;
  object-position: 58% center !important;
}
/* === FIM AJUSTE ENQUADRAMENTO FOTO AUTORA === */


/* === AJUSTE FOTO AUTORA MAIS PARA ESQUERDA - 20260625-090802 === */
.author .author__media img {
  object-fit: cover !important;
  object-position: 66% center !important;
}
/* === FIM AJUSTE FOTO AUTORA MAIS PARA ESQUERDA === */


/* === RESET ENQUADRAMENTO NOVA FOTO AUTORA - 20260625-091306 === */
.author .author__media img {
  object-fit: cover !important;
  object-position: center center !important;
}
/* === FIM RESET ENQUADRAMENTO NOVA FOTO AUTORA === */


/* === AJUSTE FINO FOTO AUTORA MAIS À ESQUERDA - 20260625-092541 === */
.author .author__media img {
  object-fit: cover !important;
  object-position: 44% center !important;
}
/* === FIM AJUSTE FINO FOTO AUTORA MAIS À ESQUERDA === */




