@font-face {
  font-family: 'Manrope';
  src: url('./assets/fonts/manrope-latin-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./assets/fonts/cormorant-garamond-latin-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
}

@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-latin-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 300 700;
  font-display: optional;
}


:root {
  --color-bg: #dbd4c2;
  --color-surface: #f4efe6;
  --color-surface-alt: #ede4d6;
  --color-panel: rgba(255, 250, 242, 0.72);
  --color-primary: #957e56;
  --color-secondary: #ae927a;
  --color-sage: #8c8773;
  --color-deep: #443c36;
  --color-text: #3f352d;
  --color-muted: rgba(68, 60, 54, 0.72);
  --color-accent: #c79a2e;
  --color-accent-strong: #dbac3f;
  --color-border: rgba(68, 60, 54, 0.12);
  --shadow-soft: 0 20px 50px rgba(68, 60, 54, 0.12);
  --shadow-card: 0 16px 32px rgba(68, 60, 54, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(174, 146, 122, 0.18), transparent 32%),
    linear-gradient(180deg, #f5efe4 0%, #dbd4c2 28%, #e8dfd1 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.section,
.hero {
  margin-top: 18px;
  padding: 28px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.hero {
  display: grid;
  gap: 20px;
  position: relative;
  overflow: visible;
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.9), rgba(236, 226, 213, 0.88));
}

.hero__content,
.hero__actions {
  display: grid;
  gap: 12px;
}

.hero__content h1,
.section-heading h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__content h1 {
  font-size: clamp(2.65rem, 9vw, 5.7rem);
  max-width: none;
}

.section-heading h2 {
  font-size: clamp(2rem, 7vw, 4rem);
  max-width: none;
}

.hero__lead,
.section-intro,
.section-note,
.text-flow p,
.product-card p,
.bonus-card p,
.offer-list,
.offer-bonus-line,
.guarantee-box p,
.faq-list p,
.footer,
.creator-badges,
.checkout-note {
  line-height: 1.7;
}

.hero__lead,
.section-intro,
.section-note,
.text-flow p,
.checkout-note {
  margin: 0;
}

.hero__lead {
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0.35rem auto 0 !important;
  padding-inline: 0.5rem;
  color: var(--color-muted);
}

.text-flow__chapter {
  display: grid;
  gap: 12px;
  padding: 14px 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(68, 60, 54, 0.1);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.72), rgba(245, 236, 222, 0.38));
}

.text-flow__chapter + .text-flow__chapter {
  margin-top: 12px;
}

.text-flow__microtitle {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f4d1f;
}

.section--contrast .text-flow__chapter {
  border-color: rgba(255, 242, 213, 0.2);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 241, 209, 0.04));
}

.section--contrast .text-flow__microtitle {
  color: #f0cb80;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(149, 126, 86, 0.18);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(247, 232, 204, 0.82));
  box-shadow: 0 10px 22px rgba(149, 126, 86, 0.14);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7f5a1f;
}

.hero__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: '→';
  font-size: 1.05em;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary,
.button--checkout,
.button--secondary {
  color: #2f1f09;
  background: linear-gradient(135deg, #ffd96c, #cf8400);
  border: 1px solid #af6700;
  box-shadow: 0 18px 34px rgba(127, 72, 0, 0.28);
}

.button--pending,
.button[aria-disabled='true'] {
  opacity: 0.72;
  cursor: not-allowed;
  filter: saturate(0.7);
  box-shadow: none;
  transform: none;
  background: linear-gradient(135deg, #c8b28a, #b89f75);
}

.button--pending:hover,
.button[aria-disabled='true']:hover {
  transform: none;
}

.hero__benefits,
.offer-list,
.creator-badges {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hero__benefits li,
.offer-list li,
.creator-badges li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero__benefits li {
  display: block;
  text-align: center;
  font-size: 0.94rem;
}

.hero__benefits li::before,
.offer-list li::before,
.creator-badges li::before {
  content: '•';
  color: var(--color-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.hero__benefits li::before {
  content: none;
  display: none;
}

.section--offer .offer-list {
  margin-top: 0;
  gap: 10px;
}

.section--offer .offer-list li {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(149, 126, 86, 0.2);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 8px 16px rgba(68, 60, 54, 0.06);
}

.section--offer .offer-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #2f1f09;
  font-size: 0.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd96c, #cf8400);
  border: 1px solid rgba(142, 84, 0, 0.45);
  box-shadow: 0 8px 14px rgba(127, 72, 0, 0.22);
  margin-top: 0.08em;
}

.card-frame {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(229, 220, 208, 0.88));
  border: 1px solid rgba(68, 60, 54, 0.12);
  box-shadow: var(--shadow-card);
}

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

.section--soft {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.76), rgba(244, 236, 224, 0.66));
}

.section--light {
  background: linear-gradient(180deg, rgba(250, 246, 240, 0.82), rgba(232, 223, 209, 0.7));
}

.section--contrast {
  color: #f8f2ea;
  background: linear-gradient(160deg, rgba(68, 60, 54, 0.98), rgba(113, 102, 89, 0.96));
}

.section--contrast .eyebrow,
.section--contrast .section-heading h2,
.section--contrast .highlight-copy {
  color: #f5e7cc;
}

.section--contrast .button--secondary {
  color: #2f1f09;
  background: linear-gradient(135deg, #ffd96c, #cf8400);
  border: 1px solid #af6700;
  box-shadow: 0 18px 34px rgba(127, 72, 0, 0.28);
}

.section--mechanism .text-flow + .button {
  margin-top: 20px;
}

.section--mechanism .button {
  margin-bottom: 8px;
}

.section--golden {
  background: linear-gradient(180deg, rgba(149, 126, 86, 0.14), rgba(174, 146, 122, 0.25));
}

.section--offer {
  background:
    radial-gradient(circle at top left, rgba(199, 154, 46, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(240, 230, 215, 0.84));
}

.section--faq {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(235, 227, 216, 0.84));
}

.section--tone-flax {
  background:
    radial-gradient(circle at 12% 10%, rgba(219, 212, 194, 0.5), transparent 38%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.95), rgba(226, 216, 198, 0.84));
}

.section--tone-rose {
  background:
    radial-gradient(circle at 85% 12%, rgba(174, 146, 122, 0.22), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(149, 126, 86, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(252, 242, 233, 0.95), rgba(231, 203, 182, 0.84));
}

.section--tone-sage {
  background:
    radial-gradient(circle at 10% 8%, rgba(140, 135, 115, 0.2), transparent 38%),
    radial-gradient(circle at 88% 86%, rgba(140, 135, 115, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(247, 245, 237, 0.95), rgba(211, 208, 190, 0.82));
}

.section--tone-golden-rose {
  background:
    radial-gradient(circle at top right, rgba(174, 146, 122, 0.2), transparent 34%),
    radial-gradient(circle at 14% 22%, rgba(149, 126, 86, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(244, 232, 212, 0.84), rgba(226, 192, 160, 0.62));
}

.section--tone-flax-sage {
  background:
    radial-gradient(circle at 84% 12%, rgba(140, 135, 115, 0.2), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(219, 212, 194, 0.38), transparent 36%),
    linear-gradient(180deg, rgba(248, 242, 229, 0.95), rgba(214, 208, 189, 0.8));
}

.section--tone-offer {
  background:
    radial-gradient(circle at top left, rgba(199, 154, 46, 0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(174, 146, 122, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(233, 218, 197, 0.86));
}

.section--tone-firewood {
  background:
    radial-gradient(circle at 84% 18%, rgba(140, 135, 115, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(68, 60, 54, 0.98), rgba(94, 84, 73, 0.97));
}

.section--tone-sage-mechanism {
  color: #f6f1e7;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.12), transparent 36%),
    radial-gradient(circle at 90% 88%, rgba(68, 60, 54, 0.16), transparent 38%),
    linear-gradient(180deg, #8c8773, #7f7a67);
}

.section--tone-sage-mechanism .section-heading h2 {
  color: #fff0d4;
}

.section--tone-sage-mechanism .text-flow__microtitle {
  color: #f0e2c2;
}

.section--tone-sage-mechanism .highlight-copy {
  color: #fff7e7;
}

.section--tone-sage-mechanism .text-flow__chapter {
  border-color: rgba(255, 244, 220, 0.22);
  background: linear-gradient(180deg, rgba(68, 60, 54, 0.44), rgba(68, 60, 54, 0.34));
}

.section--tone-sage-mechanism .text-flow__chapter p {
  color: #f6f1e7;
}

.method-differential {
  margin-top: 18px;
}

.method-differential__chapter {
  gap: 14px;
  padding: 18px 18px 20px;
  background:
    radial-gradient(circle at 12% 14%, rgba(253, 186, 116, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(78, 67, 57, 0.58), rgba(53, 45, 39, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 28px rgba(0, 0, 0, 0.16);
}

.method-differential__title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff4dc;
}

.section--tone-rose-story {
  background:
    radial-gradient(circle at 14% 16%, rgba(174, 146, 122, 0.22), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(149, 126, 86, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(251, 243, 235, 0.96), rgba(227, 200, 176, 0.84));
}

.section--tone-sage-light {
  background:
    radial-gradient(circle at top right, rgba(140, 135, 115, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(252, 249, 243, 0.92), rgba(228, 221, 205, 0.8));
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading + .text-flow,
.section-heading + .feature-list,
.section-heading + .quote-list,
.section-heading + .product-grid,
.section-heading + .video-grid,
.section-heading + .bonus-grid,
.section-heading + .faq-list,
.section-heading + .guarantee-box {
  margin-top: 6px;
}

.text-flow {
  display: grid;
  gap: 12px;
}

.text-flow + .text-flow {
  margin-top: 16px;
}

.quote-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

.quote-list li {
  padding: 14px 16px;
  border-left: 2px solid rgba(149, 126, 86, 0.6);
  background: rgba(255, 251, 246, 0.46);
  border-radius: 0 18px 18px 0;
  font-style: italic;
}

.highlight-copy {
  font-size: 1.2rem;
  font-weight: 700;
}

.split-section,
.offer-layout {
  display: grid;
  gap: 22px;
}

.product-grid,
.bonus-grid,
.video-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.product-card,
.bonus-card,
.video-card,
.offer-panel,
.creator-card,
.faq-list details {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(68, 60, 54, 0.12);
  background: rgba(255, 251, 246, 0.76);
  box-shadow: var(--shadow-card);
}

.product-card h3,
.bonus-card h3,
.guarantee-box h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.product-card__media {
  margin: 10px 0 12px;
}

.method-infographic {
  width: min(100%, 520px);
  margin: 0 auto 16px;
  overflow: hidden;
}

.method-infographic img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.avatar-infographic {
  width: 100%;
  overflow: hidden;
}

.avatar-infographic img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.avatar-grid {
  display: grid;
  gap: 16px;
  width: min(100%, 920px);
  margin: 0 auto 16px;
}

.frequency-banners {
  display: grid;
  gap: 12px;
  width: min(100%, 920px);
  margin: 18px auto 16px;
}

.frequency-banner {
  overflow: hidden;
}

.frequency-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--color-text);
}

.feature-list li::before {
  content: '✦';
  color: #b26d00;
  font-size: 0.9rem;
  line-height: 1.2;
  margin-top: 0.1em;
}

.section--contrast .product-card,
.section--contrast .video-card,
.section--contrast .creator-card {
  background: rgba(255, 249, 240, 0.08);
}

.video-card {
  padding: 10px;
  overflow: hidden;
}

.video-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  aspect-ratio: 941 / 1440;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

[data-page-block='prova-social'] .video-grid {
  width: min(100%, 760px);
  margin-inline: auto;
  justify-items: center;
}

[data-page-block='prova-social'] .video-card {
  width: min(100%, 290px);
  padding: 8px;
}

.section--offer-content .offer-content__cta {
  margin-top: 12px;
}

.video-player {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(68, 60, 54, 0.16), rgba(68, 60, 54, 0.34)),
    radial-gradient(circle at top, rgba(199, 154, 46, 0.24), transparent 48%);
  color: #fff6e8;
  text-align: center;
  overflow: hidden;
}

.video-player--embed {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 0;
  min-height: auto;
  background: #000;
}

.video-player--embed::before {
  content: none;
}

.video-player--embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-player--preview {
  display: block;
  gap: 0;
  padding: 0;
  min-height: auto;
  background: #000;
}

.video-player--preview::before {
  content: none !important;
  display: none !important;
}

.video-player__trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0;
  border: 0;
  background: #000;
  cursor: pointer;
}

.video-player__trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.video-player__trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.video-player__big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(2px);
  transition: transform 180ms ease, background 180ms ease;
  z-index: 2;
}

.video-player__big-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

.video-player__trigger:hover .video-player__big-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0, 0, 0, 0.72);
}

.video-player__thumb-link {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
}

.video-player__thumb-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.video-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(2px);
}

.video-player::before {
  content: '▶';
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.18);
  border: 1px solid rgba(255, 248, 237, 0.26);
  font-size: 1.55rem;
}

.video-player span {
  font-weight: 800;
  font-size: 1.02rem;
}

.video-player small {
  max-width: 20ch;
  color: rgba(255, 246, 232, 0.84);
}

/* Keep embedded YouTube players clean and fully interactive */
.video-player.video-player--embed::before {
  content: none !important;
  display: none !important;
}

.video-player.video-player--embed iframe {
  display: block;
}

.video-fallback-link {
  display: block;
  padding: 8px 10px 10px;
  color: #f4dfb3;
  font-size: 0.82rem;
  text-align: center;
  text-decoration: underline;
}

.bonus-card {
  display: grid;
  gap: 10px;
}

.bonus-card img {
  width: 100%;
  max-width: 360px;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  height: auto;
  border-radius: 18px;
  margin-inline: auto;
}

.section--creator-story {
  display: grid;
  gap: 18px;
}

.creator-visual {
  width: min(100%, 860px);
  margin-inline: auto;
}

.creator-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.price-tag {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(68, 60, 54, 0.12);
  text-align: center;
}

.price-tag span {
  color: var(--color-muted);
  text-decoration: line-through;
}

.price-tag strong {
  color: var(--color-primary);
  font-size: 1.08rem;
}

.bonus-total-anchor {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(149, 126, 86, 0.24);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.92), rgba(247, 228, 193, 0.76));
}

.bonus-total-anchor__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-muted);
}

.bonus-total-anchor__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bonus-total-anchor__old {
  color: var(--color-muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.bonus-total-anchor__new {
  font-size: clamp(1.35rem, 3.8vw, 1.8rem);
  font-weight: 900;
  color: #8a4d00;
  white-space: nowrap;
}

.offer-panel {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top, rgba(249, 115, 22, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(8, 8, 8, 0.98));
}

.offer-bonus-line {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(175, 112, 9, 0.26);
  background: linear-gradient(180deg, rgba(255, 247, 226, 0.9), rgba(248, 232, 194, 0.76));
}

.offer-bonus-line__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-muted);
}

.offer-bonus-line__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-bonus-line__old {
  font-size: 1.05rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.offer-bonus-line__new {
  font-size: clamp(1.35rem, 3.8vw, 1.8rem);
  font-weight: 900;
  color: #8a4d00;
}

.offer-value-summary {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 15, 0.92);
}

.offer-value-summary h3 {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  color: #fff3df;
}

.offer-value-summary__rows {
  display: grid;
  gap: 8px;
}

.offer-value-summary__rows p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.offer-value-summary__rows p strong {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: line-through;
  font-weight: 700;
}

.offer-value-summary__rows .offer-value-summary__total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.offer-value-summary__rows .offer-value-summary__total strong {
  color: #fdba74;
  font-size: 1.12rem;
}

.price-box,
.guarantee-box {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-box {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
  background:
    radial-gradient(circle at top, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.price-box__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff4e3;
}

.price-box__old {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: line-through;
}

.price-box__installments {
  font-size: clamp(2.3rem, 8vw, 4rem);
  line-height: 0.95;
  color: #fdba74;
}

.price-box__cash,
.price-box__terms,
.checkout-note {
  color: var(--color-muted);
}

.checkout-note {
  text-align: center;
  margin-inline: auto;
  max-width: 54ch;
}

.price-box__cash {
  font-size: 1rem;
  font-weight: 700;
  color: #fff0d4;
}

.guarantee-box {
  background:
    radial-gradient(circle at top, rgba(249, 115, 22, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-box h3 {
  color: #fff2dc;
}

.guarantee-box p {
  color: rgba(255, 244, 227, 0.82);
}

.guarantee-box__seal {
  width: clamp(82px, 22vw, 124px);
  height: auto;
  margin: 0 auto 8px;
}

.offer-panel .section-note {
  text-align: center;
}

.offer-panel .button--checkout {
  width: min(100%, 460px);
  margin-inline: auto;
  min-height: 60px;
  font-size: 1.08rem;
}

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

.trust-badge {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.16);
  color: #f5ecdf;
}

.trust-badge img {
  width: clamp(48px, 14vw, 74px);
  height: auto;
  object-fit: contain;
}

.trust-badge small {
  display: block;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 244, 227, 0.88);
}

.offer-panel .checkout-note {
  font-size: 0.98rem;
}

.offer-content__note {
  width: min(100%, 520px);
  margin-inline: auto;
  text-align: center;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.018);
    opacity: 0.96;
  }
}

.button--pulse {
  animation: ctaPulse 2.8s ease-in-out infinite;
  will-change: transform;
}

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

.section--creator-story .text-flow {
  max-width: 72ch;
  margin-inline: auto;
}

.section--creator-story .button {
  margin-inline: auto;
}

.faq-list details {
  background: rgba(255, 251, 246, 0.82);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  float: right;
  color: var(--color-primary);
}

.faq-list details[open] summary::after {
  content: '−';
}

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

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px 6px;
  color: var(--color-muted);
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-links,
.footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-contact-copy {
  font-weight: 700;
  color: var(--color-text);
}

.footer-contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-meta {
  font-size: 0.94rem;
}

.footer-disclaimer {
  max-width: 76ch;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(68, 60, 54, 0.78);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #2adf73, #1ea952);
  border: 1px solid rgba(14, 113, 52, 0.45);
  box-shadow: 0 10px 18px rgba(21, 137, 67, 0.24);
}

.footer-whatsapp::before {
  content: '';
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.601 2.326A7.85 7.85 0 0 0 8.118.053C3.993.592.133 3.93.28 8.04a7.9 7.9 0 0 0 1.127 3.975L0 16l4.125-1.053a7.91 7.91 0 0 0 3.81.974h.003c4.125 0 7.985-3.338 7.838-7.448-.072-2.043-.814-3.94-2.165-5.347zm-5.32 11.444c-1.17 0-2.304-.33-3.283-.95l-.235-.149-2.448.625.653-2.384-.153-.245a6.476 6.476 0 0 1-.999-3.468c0-3.505 2.851-6.356 6.356-6.356 1.73 0 3.357.674 4.58 1.897a6.454 6.454 0 0 1 1.886 4.592c-.002 3.505-2.853 6.356-6.357 6.356zm3.487-4.915c-.19-.095-1.118-.553-1.292-.616-.173-.064-.299-.095-.425.095-.127.19-.49.616-.6.742-.111.127-.221.143-.41.048-.19-.095-.8-.296-1.524-.943-.563-.502-.943-1.12-1.053-1.31-.111-.19-.012-.292.083-.386.086-.086.19-.221.285-.332.095-.111.127-.19.19-.316.064-.127.032-.237-.016-.332-.048-.095-.425-1.023-.584-1.4-.155-.374-.312-.323-.425-.329-.111-.006-.237-.007-.364-.007a.696.696 0 0 0-.506.237c-.173.19-.664.648-.664 1.58 0 .932.68 1.833.775 1.96.095.127 1.337 2.039 3.237 2.859.452.195.804.312 1.08.399.454.144.867.124 1.194.075.364-.054 1.118-.457 1.275-.899.158-.442.158-.822.111-.899-.048-.078-.174-.126-.364-.221z'/%3E%3C/svg%3E");
}

.footer-whatsapp:hover {
  transform: translateY(-1px);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff5e6;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-email:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.footer-whatsapp[aria-disabled='true'] {
  opacity: 0.84;
}

/* Vertical rhythm between text and UI blocks */
.text-flow + .button,
.text-flow + .text-flow,
.feature-list + .button,
.quote-list + .button,
.faq-list + .button,
.section-note + .button,
.button + .checkout-note,
.product-grid + .button,
.video-grid + .button,
.bonus-grid + .button,
.bonus-total-anchor + .button,
.text-flow + .product-grid,
.feature-list + .text-flow,
.quote-list + .text-flow,
.text-flow + .video-grid,
.text-flow + .bonus-grid,
.text-flow + .section-note,
.feature-list + .section-note,
.bonus-grid + .bonus-total-anchor,
.bonus-total-anchor + .section-note,
.product-grid + .section-note,
.product-grid + .text-flow,
.video-grid + .section-note,
.bonus-grid + .section-note,
.section-note + .section-note {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .hero__content h1,
  .section-heading h2 {
    text-align: center;
    line-height: 1.05;
  }

  .hero__content h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.5rem);
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 8.2vw, 3rem);
  }

  .section-heading,
  .hero__content {
    text-align: center;
  }

  .hero__actions {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .button {
    display: flex;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .trust-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .text-flow {
    gap: 10px;
  }

  .text-flow + .button,
  .feature-list + .button,
  .quote-list + .button,
  .faq-list + .button,
  .section-note + .button,
  .button + .checkout-note,
  .product-grid + .button,
  .video-grid + .button,
  .bonus-grid + .button,
  .bonus-total-anchor + .button,
  .text-flow + .product-grid,
  .feature-list + .text-flow,
  .quote-list + .text-flow,
  .text-flow + .video-grid,
  .text-flow + .bonus-grid,
  .text-flow + .section-note,
  .feature-list + .section-note,
  .bonus-grid + .bonus-total-anchor,
  .bonus-total-anchor + .section-note,
  .product-grid + .section-note,
  .product-grid + .text-flow,
  .video-grid + .section-note,
  .bonus-grid + .section-note,
  .section-note + .section-note {
    margin-top: 16px;
  }

  .creator-visual {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .page-shell {
    width: min(calc(100% - 48px), var(--max-width));
    padding-top: 28px;
  }

  .section,
  .hero {
    margin-top: 24px;
    padding: 42px 36px;
  }

  .hero,
  .split-section,
  .offer-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
  }

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

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

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

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

  .section--offer-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      'content'
      'cta';
    align-items: start;
  }

  .section--offer-content .offer-content__text {
    grid-area: content;
  }

  .section--offer-content .offer-content__cta {
    grid-area: cta;
    justify-self: start;
    margin-top: 16px;
  }

  .hero {
    grid-template-areas:
      'content visual'
      'actions visual';
    align-items: start;
  }

  .hero__content {
    grid-area: content;
  }

  .hero__visual {
    grid-area: visual;
  }

  .hero__actions {
    grid-area: actions;
    justify-items: start;
    text-align: left;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
  }

  .creator-visual {
    width: min(100%, 900px);
  }

  .hero__content h1 {
    max-width: 10ch;
  }

  .section-heading h2 {
    max-width: 16ch;
  }
}

@media (min-width: 1100px) {
  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tema de teste aplicado a partir do Design System */
:root {
  --color-bg: #050505;
  --color-surface: rgba(10, 10, 10, 0.92);
  --color-surface-alt: rgba(17, 17, 17, 0.9);
  --color-panel: rgba(14, 14, 14, 0.82);
  --color-primary: #f97316;
  --color-secondary: #fb923c;
  --color-sage: #7c7c7c;
  --color-deep: #050505;
  --color-text: #f7f2ea;
  --color-muted: rgba(255, 255, 255, 0.66);
  --color-accent: #fdba74;
  --color-accent-strong: #fb923c;
  --color-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 28px 70px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 18px 38px rgba(0, 0, 0, 0.34);
  --max-width: 1280px;
}

body {
  font-family: 'Inter', 'Manrope', sans-serif;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
    radial-gradient(circle at 20% 0%, rgba(249, 115, 22, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.1), transparent 20%),
    url("./assets/webp/mocap-principal-hero-oferta.webp") center top / cover fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px) center / 20% 100%,
    linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.06) 15%, transparent 60%);
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--max-width));
  padding: 18px 0 64px;
}

.theme-lumina-test {
  --color-bg: #f4f4f2;
  --color-surface: rgba(255, 255, 255, 0.82);
  --color-surface-alt: rgba(255, 255, 255, 0.72);
  --color-panel: rgba(255, 255, 255, 0.68);
  --color-primary: #18181b;
  --color-secondary: #52525b;
  --color-sage: #71717a;
  --color-deep: #09090b;
  --color-text: #18181b;
  --color-muted: rgba(39, 39, 42, 0.74);
  --color-accent: #f97316;
  --color-accent-strong: #fb923c;
  --color-border: rgba(24, 24, 27, 0.08);
  --shadow-soft: 0 20px 50px rgba(24, 24, 27, 0.08);
  --shadow-card: 0 16px 32px rgba(24, 24, 27, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

.theme-lumina-test body,
body.theme-lumina-test {
  font-family: 'Inter', 'Manrope', sans-serif;
}

.lumina-bg,
.lumina-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.lumina-bg { z-index: 0; }
.lumina-bg__image,
.lumina-bg__overlay,
.lumina-bg__glow { position: absolute; inset: 0; }

.lumina-bg__image {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.9)),
    url("./assets/webp/mocap-principal-hero-oferta.webp") center top / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: normal;
  filter: grayscale(1) saturate(0.3) contrast(0.95);
}

.lumina-bg__overlay {
  background:
    radial-gradient(circle at top, rgba(249,115,22,0.06), transparent 24%),
    linear-gradient(180deg, rgba(248,250,252,0.94), rgba(244,244,245,0.98));
}

.lumina-bg__glow {
  background:
    radial-gradient(circle at 12% 10%, rgba(249,115,22,0.08), transparent 18%),
    radial-gradient(circle at 86% 8%, rgba(99,102,241,0.06), transparent 16%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.42), transparent 26%);
}

.lumina-grid {
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, 1280px);
  margin: 0 auto;
  border-right: 1px solid rgba(24, 24, 27, 0.05);
  opacity: 0.9;
}

.lumina-grid__col {
  position: relative;
  border-left: 1px solid rgba(24, 24, 27, 0.05);
  overflow: hidden;
}

.lumina-grid__col span {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  font-size: 0.72rem;
  font-family: 'Inter', monospace;
  color: rgba(24, 24, 27, 0.14);
  letter-spacing: 0.08em;
}

.lumina-grid__col--focus::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(24,24,27,0.02), rgba(249,115,22,0.14), rgba(24,24,27,0.02));
}

.lumina-grid__beam {
  position: absolute;
  top: -30%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.35), transparent);
  animation: beam-fall linear infinite;
  filter: blur(0.2px);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.18);
}

.lumina-grid__beam--one { left: 0; height: 16rem; animation-duration: 6s; }
.lumina-grid__beam--two { left: 0; height: 24rem; animation-duration: 8s; animation-delay: 2s; }
.lumina-grid__beam--core { left: 50%; height: 16rem; transform: translateX(-50%); animation-duration: 6s; animation-delay: 1.5s; }
.lumina-grid__beam--three { left: 0; height: 12rem; animation-duration: 7s; animation-delay: 4s; }

.lumina-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(24, 24, 27, 0.08);
}

.lumina-topbar__brand { display: inline-flex; align-items: center; gap: 12px; }
.lumina-topbar__mark {
  display: inline-flex; width: 32px; height: 32px; border-radius: 999px; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #18181b, #3f3f46); position: relative;
}
.lumina-topbar__mark span { display: block; width: 10px; height: 10px; border-radius: 999px; background: #fff; }
.lumina-topbar__label,
.lumina-topbar__status { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.lumina-topbar__label { color: #18181b; }
.lumina-topbar__status { color: #f97316; }

.hero,
.section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.6));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 24px 64px rgba(24,24,27,0.08);
  backdrop-filter: blur(18px);
}

.hero::before,
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0));
}

.hero {
  padding: 32px 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(249,115,22,0.08), transparent 20%),
    radial-gradient(circle at 22% 0%, rgba(99,102,241,0.05), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.64));
}

.hero__content,
.hero__actions,
.section > *,
.split-section > *,
.offer-layout > * { position: relative; z-index: 1; }

.hero__content h1,
.section-heading h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #09090b;
  letter-spacing: -0.065em;
}

.hero__content h1 {
  font-size: clamp(2.75rem, 7.4vw, 5rem);
  line-height: 0.92;
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.45rem, 6vw, 4.4rem);
  line-height: 0.96;
}

.hero__lead,
.section-intro,
.section-note,
.text-flow p,
.product-card p,
.bonus-card p,
.faq-list p,
.checkout-note,
.footer { color: rgba(39,39,42,0.74); font-weight: 500; }

.hero__eyebrow {
  border: 1px solid rgba(24,24,27,0.08);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 28px rgba(24,24,27,0.06);
  color: #f97316;
  animation: hero-pill-glow 5.4s ease-in-out infinite;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 10px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='10' viewBox='0 0 28 10' fill='none'%3E%3Cpath d='M1 5C3 5 3 1 5 1C7 1 7 9 9 9C11 9 11 1 13 1C15 1 15 9 17 9C19 9 19 1 21 1C23 1 23 5 27 5' stroke='%23F97316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 60px;
  border: 1px solid rgba(24,24,27,0.08);
  color: #fafafa;
  box-shadow: 0 14px 30px rgba(24,24,27,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background 220ms ease;
}

.button::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.7;
}

.button span,
.button strong,
.button::after { position: relative; z-index: 1; }

.button--primary,
.button--checkout {
  background: linear-gradient(180deg, #18181b, #27272a);
  color: #fafafa;
}

.button--secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
  color: #18181b;
  box-shadow: 0 12px 24px rgba(24,24,27,0.06);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(24,24,27,0.12);
  filter: saturate(1.02);
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 8px;
}

.hero__benefits li,
.section--offer .offer-list li,
.feature-list li,
.quote-list li,
.offer-bonus-line,
.bonus-total-anchor,
.guarantee-box,
.faq-list details,
.product-card,
.bonus-card,
.video-card,
.offer-panel {
  border: 1px solid rgba(24,24,27,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 14px 32px rgba(24,24,27,0.06);
}

.offer-panel,
.guarantee-box,
[data-page-block='fechamento-oferta'] .card-frame,
[data-page-block='bonus'] .bonus-card:first-child {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 18px 36px rgba(24,24,27,0.08),
    0 0 0 1px rgba(249,115,22,0.06);
}

.hero__visual.card-frame {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__visual.card-frame::after {
  content: '';
  position: absolute;
  inset: auto 10% -8% 10%;
  height: 22%;
  border-radius: 999px;
  background: rgba(249,115,22,0.12);
  filter: blur(48px);
  pointer-events: none;
  animation: hero-glow-breathe 6.6s ease-in-out infinite;
}

.hero__benefits li {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(24,24,27,0.72);
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero__benefits li + li { position: relative; }
.hero__benefits li + li::before {
  content: '•';
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(249,115,22,0.8);
}

.hero.section {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 16px 0 10px;
}
.hero.section::before { content: none; }
.hero__content,
.hero__actions { gap: 10px; }
.hero__actions { margin-top: -2px; }

[data-page-block='metodo'].section,
[data-page-block='amostra-categorias'].section,
[data-page-block='prova-social'].section,
[data-page-block='fechamento-oferta'].section,
[data-page-block='garantia'].section {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
[data-page-block='metodo'].section::before,
[data-page-block='amostra-categorias'].section::before,
[data-page-block='prova-social'].section::before,
[data-page-block='fechamento-oferta'].section::before,
[data-page-block='garantia'].section::before { content: none; }

.feature-list li {
  padding: 14px 16px;
  border-radius: 18px;
}
.feature-list li::before,
.hero__benefits li::before,
.offer-list li::before,
.creator-badges li::before { color: #f97316; }

.text-flow__chapter,
.card-frame {
  border: 1px solid rgba(24,24,27,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 16px 30px rgba(24,24,27,0.06);
}

.text-flow__microtitle,
.eyebrow,
.offer-bonus-line__label,
.bonus-total-anchor__label { color: #f97316; }

.card-frame {
  background:
    radial-gradient(circle at top, rgba(249,115,22,0.05), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.66));
}

.section--soft,
.section--light,
.section--golden,
.section--offer,
.section--faq,
.section--tone-flax,
.section--tone-rose,
.section--tone-sage,
.section--tone-golden-rose,
.section--tone-rose-story,
.section--tone-sage-mechanism {
  background:
    radial-gradient(circle at 84% 14%, rgba(249,115,22,0.05), transparent 20%),
    radial-gradient(circle at 12% 88%, rgba(99,102,241,0.03), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.62));
}

.section--contrast {
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(249,115,22,0.05), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.66));
}

[data-page-block] { isolation: isolate; }
[data-page-block]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
[data-page-block='beneficios']::after {
  background: radial-gradient(circle at 10% 20%, rgba(249,115,22,0.06), transparent 18%);
}
[data-page-block='metodo']::after,
[data-page-block='prova-social']::after,
[data-page-block='justificativa-racional']::after,
[data-page-block='garantia']::after { content: none !important; }
[data-page-block='para-quem-e']::after {
  background: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.04), transparent 20%);
}
[data-page-block='oferta-principal']::after {
  background: radial-gradient(circle at 85% 18%, rgba(249,115,22,0.08), transparent 14%);
}
[data-page-block='amostra-categorias']::after {
  background: linear-gradient(90deg, rgba(249,115,22,0.04), transparent 16%);
}
[data-page-block='bonus']::after {
  background: radial-gradient(circle at 50% 0%, rgba(249,115,22,0.08), transparent 18%);
}
[data-page-block='fechamento-oferta']::after {
  background:
    radial-gradient(circle at 82% 10%, rgba(249,115,22,0.1), transparent 16%),
    radial-gradient(circle at 18% 90%, rgba(99,102,241,0.04), transparent 18%);
}
[data-page-block='faq']::after {
  background: radial-gradient(circle at 90% 14%, rgba(24,24,27,0.04), transparent 16%);
}

[data-page-block='metodo'].section,
[data-page-block='amostra-categorias'].section,
[data-page-block='prova-social'].section,
[data-page-block='justificativa-racional'].section,
[data-page-block='fechamento-oferta'].section,
[data-page-block='garantia'].section {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
[data-page-block='metodo'].section::before,
[data-page-block='amostra-categorias'].section::before,
[data-page-block='prova-social'].section::before,
[data-page-block='justificativa-racional'].section::before,
[data-page-block='fechamento-oferta'].section::before,
[data-page-block='garantia'].section::before { content: none !important; }

[data-page-block='metodo'] .method-differential__chapter,
[data-page-block='metodo'] .method-infographic.card-frame,
[data-page-block='amostra-categorias'] .frequency-banner.card-frame,
[data-page-block='amostra-categorias'] .text-flow__chapter,
[data-page-block='prova-social'] .video-card,
[data-page-block='fechamento-oferta'] .offer-layout > .card-frame,
[data-page-block='fechamento-oferta'] .offer-panel,
[data-page-block='garantia'] .guarantee-box {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

[data-page-block='garantia'] .guarantee-box { padding-inline: 0 !important; }
[data-page-block='garantia'] .guarantee-box__seal { margin-bottom: 12px !important; }

[data-page-block] > *,
[data-page-block] .section-heading,
[data-page-block] .text-flow,
[data-page-block] .product-grid,
[data-page-block] .bonus-grid,
[data-page-block] .video-grid,
[data-page-block] .faq-list,
[data-page-block] .feature-list,
[data-page-block] .offer-panel,
[data-page-block] .guarantee-box { position: relative; z-index: 1; }

.section--contrast .eyebrow,
.section--contrast .section-heading h2,
.section--contrast .highlight-copy,
.highlight-copy strong { color: #18181b; }

.price-tag { border-top-color: rgba(24,24,27,0.08); }
.price-tag span,
.offer-bonus-line__old,
.bonus-total-anchor__old { color: rgba(24,24,27,0.45); }
.price-tag strong,
.offer-bonus-line__new,
.bonus-total-anchor__new { color: #f97316; }

.faq-list summary,
.product-card h3,
.bonus-card h3,
.guarantee-box h3 { color: #09090b; }

@keyframes beam-fall {
  0% { transform: translateY(-120%); opacity: 0; }
  5% { opacity: 0.25; }
  50% { opacity: 0.55; }
  95% { opacity: 0.25; }
  100% { transform: translateY(120vh); opacity: 0; }
}

@keyframes hero-glow-breathe {
  0%, 100% { opacity: 0.48; transform: scale(1); }
  50% { opacity: 0.72; transform: scale(1.03); }
}

@keyframes hero-pill-glow {
  0%, 100% { box-shadow: 0 12px 28px rgba(24,24,27,0.06); }
  50% { box-shadow: 0 12px 28px rgba(24,24,27,0.08), 0 0 18px rgba(249,115,22,0.08); }
}

.footer { border-top: 1px solid rgba(24,24,27,0.08); }

@media (max-width: 820px) {
  body {
    background:
      linear-gradient(180deg, rgba(250,250,250,0.98), rgba(244,244,245,1)),
      radial-gradient(circle at 20% 0%, rgba(249,115,22,0.06), transparent 18%),
      radial-gradient(circle at 80% 18%, rgba(99,102,241,0.03), transparent 14%);
  }

  body::before {
    opacity: 0.45;
    background:
      linear-gradient(to right, rgba(24,24,27,0.04) 1px, transparent 1px) center / 33.333% 100%,
      linear-gradient(180deg, transparent, rgba(249,115,22,0.03) 18%, transparent 58%);
  }

  .lumina-bg__image { opacity: 0.12; }
  .lumina-bg__glow { background: radial-gradient(circle at 50% 12%, rgba(249,115,22,0.06), transparent 22%); }
  .lumina-grid { grid-template-columns: repeat(3, 1fr); opacity: 0.32; }
  .lumina-grid__beam,
  .hero__visual.card-frame::after { display: none; }
  .hero__eyebrow,
  .button--pulse { animation-duration: 3.6s; }
}

@media (max-width: 767px) {
  .lumina-grid { display: none; }
  .lumina-topbar { padding: 14px 16px; border-radius: 24px; }
  .lumina-topbar__status { display: none; }
  .hero__benefits { justify-content: center; gap: 6px 14px; }
  .hero__benefits li { font-size: 0.94rem; }
  .hero__benefits li + li::before { left: -9px; }
}

/* ===== Ajustes finais - alinhamento com GenLabs ===== */
.hero__content,
.section-heading,
.section-heading h2,
.hero__content h1,
.hero__lead,
.section-intro,
.section-note,
.text-flow__microtitle,
.eyebrow,
.hero__eyebrow,
.product-card h3,
.bonus-card h3,
.guarantee-box h3 {
  text-align: center !important;
}

.section-heading h2,
.hero__content h1,
.product-card h3,
.bonus-card h3,
.guarantee-box h3 {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow,
.hero__eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.hero__lead,
.section-intro,
.section-note,
.text-flow p,
.product-card p,
.bonus-card p,
.faq-list p,
.checkout-note,
.footer,
.offer-bonus-line,
.offer-value-summary__rows p,
.offer-panel .section-note,
.offer-content__note,
.bonus-total-anchor,
.bonus-total-anchor__old,
.bonus-total-anchor__new,
.offer-bonus-line__old,
.offer-bonus-line__new {
  color: rgba(39,39,42,0.74) !important;
}

.text-flow__microtitle,
.eyebrow,
.hero__eyebrow,
.offer-bonus-line__label,
.bonus-total-anchor__label,
.highlight-copy strong,
.price-tag strong,
.offer-bonus-line__new,
.bonus-total-anchor__new,
.feature-list li::before,
.offer-list li::before,
.hero__benefits li + li::before {
  color: #f97316 !important;
}

.section--contrast .eyebrow,
.section--contrast .section-heading h2,
.section--contrast .highlight-copy,
.section--contrast .text-flow__microtitle,
.section--tone-sage-mechanism .section-heading h2,
.section--tone-sage-mechanism .text-flow__microtitle,
.section--tone-sage-mechanism .highlight-copy,
.method-differential__title,
.guarantee-box h3,
.product-card h3,
.bonus-card h3,
.faq-list summary,
.hero__content h1,
.section-heading h2 {
  color: #09090b !important;
}

.button--primary,
.button--checkout,
.button--pulse.button--primary,
.button--pulse.button--checkout {
  background: radial-gradient(circle at 10% 0%, #fed7aa 0%, #fb923c 48%, #f97316 100%) !important;
  border: 1px solid rgba(234, 88, 12, 0.45) !important;
  color: #ffffff !important;
  box-shadow: 0 15px 25px -10px rgba(248, 113, 22, 0.55), inset 0 4px 8px rgba(253, 230, 138, 0.55), inset 0 -4px 8px rgba(249, 115, 22, 0.7) !important;
}

.button--primary:hover,
.button--checkout:hover,
.button--pulse.button--primary:hover,
.button--pulse.button--checkout:hover {
  background: radial-gradient(circle at 10% 0%, #fdba74 0%, #f97316 52%, #ea580c 100%) !important;
  box-shadow: 0 18px 36px rgba(249,115,22,0.32), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.button--secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72)) !important;
  border: 1px solid rgba(24,24,27,0.08) !important;
  color: #18181b !important;
  box-shadow: 0 12px 24px rgba(24,24,27,0.06) !important;
}

.bonus-card,
.product-card {
  text-align: center;
}

/* ===== Ajuste profundo para fidelidade ao GenLabs DS ===== */
body,
.theme-lumina-test,
.hero__lead,
.section-intro,
.section-note,
.text-flow p,
.product-card p,
.bonus-card p,
.faq-list p,
.checkout-note,
.footer,
.offer-value-summary__rows p,
.offer-panel .section-note,
.offer-content__note,
.offer-list li,
.hero__benefits li,
.creator-badges li,
small,
.price-box__label,
.price-box__old,
.price-box__cash,
.price-box__terms {
  font-family: 'Inter', sans-serif !important;
}

.hero__content h1,
.section-heading h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.05em !important;
  color: #18181b !important;
}

.hero__content h1 {
  line-height: 0.95 !important;
}

.section-heading h2 {
  line-height: 1 !important;
}

.product-card h3,
.bonus-card h3,
.guarantee-box h3,
.offer-value-summary h3,
.faq-list summary {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  color: #18181b !important;
}

.hero__lead,
.section-intro,
.section-note,
.text-flow p,
.product-card p,
.bonus-card p,
.faq-list p,
.checkout-note,
.footer,
.offer-list li,
.offer-value-summary__rows p,
.price-box__label,
.price-box__old,
.price-box__cash,
.price-box__terms {
  color: #71717a !important;
}

.text-flow__microtitle,
.eyebrow,
.hero__eyebrow,
.offer-bonus-line__label,
.bonus-total-anchor__label,
.price-tag strong,
.offer-bonus-line__new,
.bonus-total-anchor__new,
.feature-list li::before,
.offer-list li::before,
.hero__benefits li + li::before {
  color: #f97316 !important;
}

.hero,
.section,
.product-card,
.bonus-card,
.offer-panel,
.faq-list details,
.text-flow__chapter,
.card-frame,
.guarantee-box {
  border-color: rgba(228, 228, 231, 1) !important;
}

.hero,
.section {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84)) !important;
  box-shadow: 0 24px 48px rgba(24,24,27,0.06) !important;
  backdrop-filter: blur(12px) !important;
}

.text-flow__chapter,
.card-frame,
.product-card,
.bonus-card,
.offer-panel,
.faq-list details,
.guarantee-box {
  background: rgba(255,255,255,0.9) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06) !important;
  backdrop-filter: blur(8px) !important;
}

.button,
.button--primary,
.button--secondary,
.button--checkout,
.button--pulse,
.button--pulse.button--primary,
.button--pulse.button--checkout,
a.button,
a.button--primary,
a.button--secondary,
a.button--checkout {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: #18181b !important;
  border-radius: 9999px !important;
  border: 0 !important;
  background: radial-gradient(circle at 10% 0%, #fed7aa 0%, #fb923c 100%) !important;
  box-shadow: 0 15px 25px -10px rgba(248, 113, 22, 0.7), inset 0 4px 8px rgba(253, 230, 138, 0.9), inset 0 -4px 8px rgba(249, 115, 22, 0.9) !important;
}

.button::before,
.button--primary::before,
.button--secondary::before,
.button--checkout::before,
.button--pulse::before {
  opacity: 0 !important;
  background: transparent !important;
}

.button:hover,
.button--primary:hover,
.button--secondary:hover,
.button--checkout:hover,
.button--pulse:hover {
  background: radial-gradient(circle at 10% 0%, #fdba74 0%, #f97316 52%, #ea580c 100%) !important;
  color: #18181b !important;
  box-shadow: 0 18px 32px -12px rgba(248, 113, 22, 0.75), inset 0 4px 8px rgba(253, 230, 138, 0.95), inset 0 -4px 8px rgba(234, 88, 12, 0.95) !important;
  transform: translateY(-1px) !important;
}

.button::after,
.button--primary::after,
.button--secondary::after,
.button--checkout::after,
.button--pulse::after {
  color: #18181b !important;
}

.offer-panel,
.price-box,
.offer-value-summary,
.offer-list,
.offer-list li,
.offer-value-summary__rows,
.offer-value-summary__rows p,
.price-box,
.price-box * {
  text-align: center !important;
}

.hero__content,
.section-heading,
.hero__lead,
.section-intro,
.section-note,
.text-flow__microtitle,
.eyebrow,
.hero__eyebrow,
.product-card h3,
.bonus-card h3,
.guarantee-box h3 {
  text-align: center !important;
}


/* Teste temporário: Manrope apenas nos títulos */
.hero__content h1,
.section-heading h2,
.product-card h3,
.bonus-card h3,
.guarantee-box h3,
.offer-value-summary h3,
.faq-list summary {
  font-family: 'Manrope', sans-serif !important;
}


/* Garantia: garantir legibilidade do texto abaixo do selo */
.guarantee-box.guarantee-box--standalone p {
  color: #52525b !important;
  text-align: center !important;
  max-width: 56ch;
  margin: 0 auto;
}


/* Rodapé: botão de e-mail no estilo preto do design */
.footer-email {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 10px 18px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(24, 24, 27, 0.08) !important;
  background: linear-gradient(180deg, #18181b, #27272a) !important;
  color: #fafafa !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 14px 30px rgba(24,24,27,0.16) !important;
}

.footer-email:hover {
  transform: translateY(-1px) !important;
  background: linear-gradient(180deg, #27272a, #18181b) !important;
  color: #fafafa !important;
  box-shadow: 0 18px 36px rgba(24,24,27,0.2) !important;
}


/* Método: lista do passo a passo com contraste correto em fundo claro */
.method-differential .quote-list,
.method-differential .quote-list li,
.method-differential__chapter p {
  color: #27272a !important;
}

.method-differential .quote-list li::marker {
  color: #f97316 !important;
}


/* Resumo da oferta: título com contraste correto no card escuro */
.offer-value-summary h3 {
  color: #fff3df !important;
  text-decoration: none !important;
  text-shadow: none !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* Price box: label superior com mesmo tom claro do resumo */
.price-box__label {
  color: #fff3df !important;
}


.section-proof-image {
  width: min(100%, 340px);
  margin: 0 auto 2.5rem;
}

.section-proof-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  aspect-ratio: 941 / 1440;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
