/* =============================================
   SECTION 8.7 — ANCORAGEM (Light)
   ============================================= */
.anchoring-section {
  padding: 64px 0 0 0;
  background: var(--light-bg);
}

.anchoring-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.anchoring-headline {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-light);
}

.anchoring-copy {
  font-size: 1.13rem;
  color: var(--text-muted-light);
  margin-bottom: 0;
}

.anchoring-compare {
  margin-bottom: 12px;
  line-height: 1.7;
}

.anchoring-value {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15em;
}

.anchoring-turn {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: var(--text-light);
  background: rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  font-family: var(--font-sans);
  font-weight: 500;
  box-shadow: 0 2px 16px rgba(201, 169, 110, 0.06);
}
/* =============================================
   MAPA DO CRIADOR — Sales Page Design System
   ============================================= */


/* --- Custom Properties --- */
:root {
  /* Colors */
  --dark-bg: #0D0D0B;
  --dark-card: #2A2722;
  --dark-card-border: #3A3630;
  --light-bg: #F2EDE4;
  --light-bg-alt: #E8E3DA;
  --white-card: #FFFFFF;
  --gold: #C9A96E;
  --gold-hover: #D4B87D;
  --gold-dark: #B8974F;
  --text-dark: #F2EDE4;
  --text-light: #1A1A18;
  --text-muted-dark: #A09B91;
  --text-muted-light: #6B655A;
  --green-check: #7EAE6B;
  --red-x: #C06B5E;
  --bonus-badge: #C9A96E;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad-y: 100px;
  --section-pad-x: 24px;
  --container-max: 960px;
  --container-wide: 1100px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.10);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--light-bg);
  overflow-x: hidden
}

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

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

ul,
ol {
  list-style: none
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x)
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-pad-x)
}

/* --- Sections --- */
section {
  padding: var(--section-pad-y) 0
}

.section-dark {
  background: var(--dark-bg);
  color: var(--text-dark)
}

.section-light {
  background: var(--light-bg);
  color: var(--text-light)
}

.section-light-alt {
  background: var(--light-bg-alt);
  color: var(--text-light)
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem)
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem)
}

p {
  margin-bottom: 1rem
}

.text-muted-dark {
  color: var(--text-muted-dark)
}

.text-muted-light {
  color: var(--text-muted-light)
}

.text-gold {
  color: var(--gold)
}

.text-center {
  text-align: center
}

/* --- CTA Buttons --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #0D0D0B;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 42px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.01em;
  text-transform: none;
}

.btn-cta:hover {
  transform: scale(1.03);
  background: var(--gold-hover);
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.35);
}

.btn-cta-large {
  padding: 22px 56px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg)
}

.btn-cta-arrow::after {
  content: '→';
  margin-left: 4px;
  font-size: 1.2em
}

/* --- Cards --- */
.card-dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.card-light {
  background: var(--white-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-light);
}

/* --- Trust Line --- */
.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted-light);
  margin-top: 16px;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 6px
}

.trust-line svg {
  width: 16px;
  height: 16px;
  opacity: 0.6
}

/* --- Scroll Reveal Animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  padding: 80px 0 100px;
  overflow: hidden
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold-dark);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 20px
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark)
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 580px;
  color: var(--text-muted-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__watch-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero__video {
  width: 100%;
  max-width: 780px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #1A1A18;
  margin-bottom: 36px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.hero__video iframe {
  width: 100%;
  height: 100%;
  border: none
}

.hero .btn-cta {
  margin-bottom: 4px
}

/* =============================================
   SECTION 2 — PROBLEMA
   ============================================= */
.problema {
  padding-top: 110px;
  padding-bottom: 110px
}

.problema .container {
  max-width: 720px
}

.problema h2 {
  margin-bottom: 28px;
  text-align: center
}

.problema__body {
  font-size: 1.08rem;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.8;
}

.problema__body p {
  margin-bottom: 16px;
}

.problema__body p:last-child {
  margin-bottom: 0;
}

.problema__body strong {
  color: var(--text-dark);
}

.problema__result-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 28px;
}

.problema__closing {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.problema__closing em {
  color: var(--gold);
  font-style: italic;
}

.problema__bullets {
  margin-top: 8px
}

.problema__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.problema__bullets li:last-child {
  border-bottom: none
}

.problema__bullets li .bullet-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* =============================================
   SECTION 3 — PONTE
   ============================================= */
.ponte .container {
  max-width: 760px;
  text-align: center
}

.ponte h2 {
  margin-bottom: 24px
}

.ponte h2 em {
  font-style: italic;
  color: var(--gold-dark)
}

.ponte__body {
  font-size: 1.08rem;
  color: var(--text-muted-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.ponte__body p {
  margin-bottom: 16px;
}

.ponte__body p:last-child {
  margin-bottom: 0;
}

.ponte__result-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 28px;
}

.ponte__closing {
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.6;
}

.ponte__closing em {
  color: var(--gold-dark);
  font-style: italic;
}

.ponte__results li strong {
  color: var(--text-light);
}

.ponte__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
}

.ponte__results li {
  position: relative;
  padding: 12px 16px 12px 44px;
  font-size: 1rem;
  line-height: 1.6;
  background: rgba(201, 169, 110, 0.06);
  border-radius: var(--radius-sm);
}

.ponte__results li .check {
  position: absolute;
  left: 16px;
  top: 13px;
  color: var(--green-check);
  font-weight: 700;
  font-size: 1.1rem;
}

/* =============================================
   SECTION 4 — PROVA SOCIAL #1
   ============================================= */
.prova-social-1 {
  padding-top: 60px
}

.prova-social-1 h2 {
  text-align: center;
  margin-bottom: 48px
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-muted-light);
  flex: 1;
}

.testimonial-card__quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-bg-alt);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold-dark);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem
}

.testimonial-card__result {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500
}

/* =============================================
   SECTION 5 — CTA INTERMEDIÁRIO
   ============================================= */
.cta-mid {
  padding: 60px 0;
  text-align: center
}

.cta-mid h3 {
  margin-bottom: 28px
}

/* =============================================
   SECTION 6 — O PRODUTO
   ============================================= */
.produto h2 {
  text-align: center;
  margin-bottom: 16px
}

.produto__intro {
  text-align: center;
  color: var(--text-muted-dark);
  margin-bottom: 56px;
  font-size: 1.05rem
}

.produto__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.produto__timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 169, 110, 0.15) 100%);
}

.timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.timeline-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
}

.timeline-step__content {
  padding-top: 8px
}

.timeline-step__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-dark)
}

.timeline-step__desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6
}

.produto__result {
  text-align: center;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  background: rgba(201, 169, 110, 0.06);
}

.produto__result p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0;
  font-weight: 500
}

/* =============================================
   SECTION 7 — PARA QUEM É / NÃO É
   ============================================= */
.para-quem h2 {
  text-align: center;
  margin-bottom: 48px
}

.para-quem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.para-quem__col h3 {
  margin-bottom: 20px;
  font-size: 1.2rem
}

.para-quem__col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.para-quem__col ul li:last-child {
  border-bottom: none
}

.para-quem__col ul li .icon-check {
  color: var(--green-check);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0
}

.para-quem__col ul li .icon-x {
  color: var(--red-x);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0
}

.section-dark .para-quem__col ul li {
  border-bottom-color: rgba(255, 255, 255, 0.06)
}

/* =============================================
   SECTION 8 — VALUE STACK
   ============================================= */
.value-stack h2 {
  text-align: center;
  margin-bottom: 16px
}

.value-stack__intro {
  text-align: center;
  color: var(--text-muted-dark);
  margin-bottom: 48px;
  font-size: 1.05rem
}

.value-stack__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  position: relative;
}

.value-item__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #0D0D0B;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.value-item__icon {
  font-size: 1.6rem;
  margin-bottom: 4px
}

.value-item__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem
}

.value-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.5
}

.value-item__price {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  text-decoration: line-through;
  margin-top: auto;
}

.value-stack__total--light {
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: var(--light-bg);
  border-color: rgba(0, 0, 0, 0.1);
}

.value-stack__total--light .label {
  color: var(--text-muted-light);
}

.value-stack__total--light .amount {
  color: var(--text-light);
}

/* =============================================
   SECTION 8.5 — BÔNUS (Light)
   ============================================= */
.bonuses {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.bonuses h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 64px;
  line-height: 1.2;
}

.bonuses__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-card {
  display: flex;
  background: var(--white-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-items: stretch;
  box-shadow: var(--shadow-light);
}

.bonus-card--reverse {
  flex-direction: row-reverse;
}

.bonus-card__text {
  flex: 1;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-light);
  font-size: 0.72rem;
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.bonus-badge .dot {
  width: 6px;
  height: 6px;
  background: #D92D20;
  border-radius: 50%;
}

.bonus-card__text h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bonus-card__text p {
  color: var(--text-muted-light);
  line-height: 1.6;
  font-size: 1.05rem;
}

.bonus-card__image {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-mockup {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-mockup {
  transform: translateY(-5px);
}

.bonus-gif {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-gif {
  transform: translateY(-5px);
}

.bonus-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bonus-image-placeholder span {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

.value-stack__total {
  text-align: center;
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  background: rgba(201, 169, 110, 0.06);
}

.value-stack__total .label {
  font-size: 1rem;
  color: var(--text-muted-dark);
  margin-bottom: 4px
}

.value-stack__total .amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* =============================================
   SECTION 9 — PRICING
   ============================================= */
.pricing {
  text-align: center
}

.pricing h2 {
  margin-bottom: 32px
}

.pricing__anchoring {
  margin-bottom: 36px
}

.pricing__anchoring .crossed {
  font-size: 1.5rem;
  color: var(--text-muted-light);
  text-decoration: line-through;
  margin: 0 12px;
  opacity: 0.6;
}

.pricing__anchoring .crossed:first-child {
  font-size: 1.8rem;
  opacity: 0.4
}

.pricing__card {
  max-width: 460px;
  margin: 0 auto 40px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  background: var(--white-card);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.12);
}

.pricing__card .price-label {
  font-size: 1rem;
  color: var(--text-muted-light);
  margin-bottom: 4px
}

.pricing__card .price-installment {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.pricing__card .price-installment small {
  font-size: 0.5em;
  font-weight: 400;
  vertical-align: top;
  margin-right: 4px
}

.pricing__card .price-total {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-bottom: 8px
}

.pricing__card .divider {
  width: 60px;
  height: 1px;
  background: var(--light-bg-alt);
  margin: 20px auto;
}

.pricing__card .price-pix {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
}

.pricing__card .price-pix-note {
  font-size: 0.85rem;
  color: var(--green-check);
  font-weight: 500;
  margin-bottom: 24px
}

.pricing__card .btn-cta {
  width: 100%
}

.pricing__card .access-note {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-top: 12px;
}

.pricing__checkout-provider {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.provider-label {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.provider-logo {
  height: 24px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.provider-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Badges row */
.pricing__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pricing__badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

.pricing__badges .badge svg {
  width: 22px;
  height: 22px;
  opacity: 0.5
}

/* =============================================
   SECTION 10 — GARANTIA
   ============================================= */
.garantia {
  padding-top: 40px;
  text-align: center
}

.garantia h2 {
  margin-bottom: 40px
}

.garantia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: left;
}

.garantia-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px
}

.garantia-card__icon {
  font-size: 2.4rem;
  margin-bottom: 4px
}

.garantia-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem
}

.garantia-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.6
}

.garantia__bold {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  margin: 12px 0 28px;
}

/* =============================================
   SECTION 10.5 — QUEM CRIOU
   ============================================= */
.quem-criou {
  padding: 100px 0;
}

.quem-criou__grid {
  display: flex;
  align-items: center;
  gap: 64px;
}

.quem-criou__image-col {
  width: 40%;
  flex-shrink: 0;
}

.quem-criou__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quem-criou__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  margin: 12px;
  border-radius: calc(var(--radius-xl) - 12px);
}

.photo-placeholder small {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.7;
}

.quem-criou__text-col {
  width: 60%;
}

.quem-criou__text-col h2 {
  margin-bottom: 32px;
}

.quem-criou__content {
  color: var(--text-dark);
}

.quem-criou__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 18px;
}

.quem-criou__content p strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* =============================================
   SECTION 11 — PROVA SOCIAL #2
   ============================================= */
.prova-social-2 h2 {
  text-align: center;
  margin-bottom: 48px
}

.testimonials-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-alt {
  padding: 24px
}

.testimonial-alt__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.testimonial-alt__text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px
}

.testimonial-alt__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted-dark)
}

/* =============================================
   SECTION 12 — FAQ
   ============================================= */
.faq h2 {
  text-align: center;
  margin-bottom: 48px
}

.faq__list {
  max-width: 700px;
  margin: 0 auto 44px
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08)
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: left;
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--gold-dark)
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg)
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px
}

.faq-item__answer p {
  font-size: 0.98rem;
  color: var(--text-muted-light);
  line-height: 1.7
}

/* =============================================
   SECTION 13 — FECHAMENTO
   ============================================= */
.fechamento {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #1A1714 40%, #2A2318 60%, #1A1714 80%, var(--dark-bg) 100%);
  text-align: center;
  padding: 120px 0;
}

.fechamento h2 {
  margin-bottom: 40px;
  color: #F2EDE4
}

.fechamento__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: left;
}

.fechamento__option {
  padding: 28px
}

.fechamento__option h4 {
  margin-bottom: 14px;
  font-size: 1.1rem
}

.fechamento__option p {
  font-size: 0.98rem;
  line-height: 1.7
}

.option-pain h4 {
  color: var(--red-x)
}

.option-pain p {
  color: var(--text-muted-dark)
}

.option-transform h4 {
  color: var(--gold)
}

.option-transform p {
  color: var(--text-dark)
}

.fechamento .btn-cta-large {
  margin-bottom: 20px
}

.fechamento__trust {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer__content p {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.7;
}

.footer__content p:last-child {
  margin-bottom: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:768px) {
  :root {
    --section-pad-y: 72px;
    --section-pad-x: 18px;
  }

  body {
    font-size: 16px
  }

  .hero {
    padding: 56px 0 72px
  }

  .hero__video {
    border-radius: var(--radius-lg)
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .value-stack__items {
    grid-template-columns: 1fr
  }

  .para-quem__grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .garantia__grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .testimonials-alt-grid {
    grid-template-columns: 1fr
  }

  .fechamento__options {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ponte__results {
    grid-template-columns: 1fr
  }

  .btn-cta {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%
  }

  .btn-cta-large {
    padding: 18px 36px;
    font-size: 1.05rem
  }

  .pricing__card {
    padding: 32px 24px
  }

  .pricing__card .price-installment {
    font-size: 2.2rem
  }

  .trust-line {
    flex-direction: column;
    gap: 8px
  }

  .timeline-step {
    gap: 16px
  }

  .timeline-step__number {
    width: 48px;
    height: 48px;
    font-size: 1rem
  }

  .produto__timeline::before {
    left: 23px
  }

  .quem-criou__grid {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .quem-criou__image-col {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .quem-criou__text-col {
    width: 100%;
  }

  .quem-criou__text-col h2 {
    text-align: center;
  }

  .bonuses h2 {
    font-size: 2rem;
  }

  .bonus-card,
  .bonus-card--reverse {
    flex-direction: column;
  }

  .bonus-card__text {
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }

  .bonus-badge {
    align-self: center;
  }

  .bonus-card__image {
    padding: 24px;
    padding-top: 0;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__content p {
    font-size: 0.75rem;
  }
}

@media(max-width:480px) {
  h1 {
    font-size: 1.9rem
  }

  h2 {
    font-size: 1.6rem
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 6px 16px
  }

  .pricing__anchoring .crossed {
    font-size: 1.2rem;
    margin: 0 6px
  }

  .pricing__anchoring .crossed:first-child {
    font-size: 1.4rem
  }
}