/* ========================================
   DEVOCIONAL COM NOSSA SENHORA — LP STYLES
   Design System & Components
   ======================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Colors */
  --cream:         #faf6ee;
  --cream-dark:    #f3ecdd;
  --navy:          #1d3a5f;
  --navy-light:    #2a4d7a;
  --gold:          #b8934a;
  --gold-light:    #d4ad5e;
  --gold-dark:     #9a7a3c;
  --text-primary:  #2c2420;
  --text-secondary:#5a4f47;
  --text-muted:    #8a7f77;
  --gray-light:    #e8e2d8;
  --gray-section:  #eae4da;
  --white:         #ffffff;

  /* Typography */
  --font-serif:  'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Layout */
  --max-width:        1080px;
  --max-width-narrow: 680px;
  --border-radius:    12px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-slow:   0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-dark);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
}

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

h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

/* ── Layout Utilities ── */
.section {
  padding: var(--space-3xl) var(--space-lg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

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

/* ── Backgrounds ── */
.bg-cream {
  background-color: var(--cream);
}

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

.bg-navy {
  background-color: var(--navy);
}

/* ── Animated Entrance ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════
   SECTION 1 — ABOVE THE FOLD
   ═══════════════════════════════════════ */

.hero {
  background-color: var(--cream);
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
  text-align: center;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin: 0 auto var(--space-xl);
  opacity: 0;
  animation: fadeInDown 1s 0.2s ease forwards;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s ease forwards;
}

.hero__headline {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s ease forwards;
}

.hero__subheadline {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s ease forwards;
}

/* VSL Player (tynk.ai iframe embed) */
.vsl-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(29, 58, 95, 0.12),
              0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s 1s ease forwards;
  background: var(--navy);
}


.vsl__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s ease forwards;
}

/* CTA Button — Global */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 18px 36px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-medium),
              box-shadow var(--transition-medium),
              background var(--transition-medium);
  box-shadow: 0 6px 24px rgba(184, 147, 74, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(184, 147, 74, 0.5);
  color: var(--white);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn__arrow {
  font-size: 1.2em;
  transition: transform var(--transition-fast);
}

.cta-btn:hover .cta-btn__arrow {
  transform: translateX(4px);
}

.cta-micro {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Delayed CTA wrapper */
.hero__cta-area {
  margin-top: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s 1.4s ease forwards;
}


/* ═══════════════════════════════════════
   SECTION 2 — IDENTIFICAÇÃO
   ═══════════════════════════════════════ */

.identification {
  background-color: var(--cream-dark);
}

.identification__title {
  margin-bottom: var(--space-2xl);
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.pain-list__item {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  padding-left: var(--space-lg);
  position: relative;
}

.pain-list__item::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.identification__closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.identification__closing strong {
  color: var(--navy);
}


/* ═══════════════════════════════════════
   SECTION 3 — A VIRADA
   ═══════════════════════════════════════ */

.turnaround {
  background-color: var(--cream);
}

.turnaround__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.turnaround__image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(29, 58, 95, 0.1);
}

.turnaround__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.turnaround__image-wrapper:hover .turnaround__image {
  transform: scale(1.03);
}

.turnaround__content h2 {
  margin-bottom: var(--space-xl);
}

.turnaround__content p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.turnaround__content strong {
  color: var(--navy);
}

@media (min-width: 768px) {
  .turnaround__grid {
    grid-template-columns: 1fr 1fr;
  }
  .turnaround__image {
    height: 420px;
  }
}


/* ═══════════════════════════════════════
   SECTION 4 — COMO FUNCIONA (5 FASES)
   ═══════════════════════════════════════ */

.phases {
  background-color: var(--cream-dark);
}

.phases__title {
  margin-bottom: var(--space-3xl);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  padding-left: 40px;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
}

/* Golden dot */
.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-dark);
  box-shadow: 0 0 0 3px var(--gold-light);
  z-index: 1;
}

.timeline__phase {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.timeline__emoji {
  font-size: 1.1em;
  margin-left: 0.25em;
}

.timeline__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.phases__closing {
  margin-top: var(--space-3xl);
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.phases__closing strong {
  color: var(--navy);
}

/* Desktop horizontal timeline */
@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    padding-left: 0;
    padding-top: 50px;
    gap: 0;
  }

  .timeline::before {
    left: 0;
    right: 0;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--gold-light), var(--gold-dark));
  }

  .timeline__item {
    flex: 1;
    padding: 0 var(--space-md);
    text-align: center;
  }

  .timeline__item::before {
    left: 50%;
    top: -36px;
    transform: translateX(-50%);
  }
}


/* ═══════════════════════════════════════
   SECTION 5 — O QUE VOCÊ RECEBE
   ═══════════════════════════════════════ */

.offer {
  background-color: var(--cream);
}

.offer__title {
  margin-bottom: var(--space-2xl);
}

.offer__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 12px 40px rgba(184, 147, 74, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Subtle gold corner decorations */
.offer__card::before,
.offer__card::after {
  content: '✦';
  position: absolute;
  color: var(--gold-light);
  font-size: 1.2rem;
  opacity: 0.4;
}

.offer__card::before {
  top: 16px;
  left: 20px;
}

.offer__card::after {
  bottom: 16px;
  right: 20px;
}

.offer__mockup {
  width: 260px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--border-radius);
  box-shadow: 0 16px 48px rgba(29, 58, 95, 0.15);
}

.offer__item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--gray-light);
}

.offer__item:last-of-type {
  border-bottom: none;
}

.offer__item-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.offer__item-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.offer__item-value {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* Pricing */
.offer__pricing {
  text-align: center;
  padding-top: var(--space-2xl);
}

.offer__anchor {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: var(--space-xs);
}

.offer__price-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.offer__price {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.offer__price-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.offer__cta-area {
  margin-top: var(--space-lg);
}


/* ═══════════════════════════════════════
   SECTION 6 — PROVA SOCIAL
   ═══════════════════════════════════════ */

.social-proof {
  background-color: var(--cream-dark);
}

.social-proof__title {
  margin-bottom: var(--space-2xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-medium),
              box-shadow var(--transition-medium);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.testimonial-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.6;
  position: absolute;
  top: 12px;
  left: 20px;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.social-proof__closing {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════
   SECTION 7 — PARA QUEM É / NÃO É
   ═══════════════════════════════════════ */

.audience {
  background-color: var(--cream);
}

.audience__title {
  margin-bottom: var(--space-2xl);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.audience__col {
  padding: var(--space-xl);
  border-radius: var(--border-radius);
}

.audience__col--yes {
  background: var(--white);
  border: 1px solid var(--gold-light);
}

.audience__col--no {
  background: #f0ece5;
  border: 1px solid var(--gray-light);
}

.audience__col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.audience__col--no .audience__col-title {
  color: var(--text-muted);
}

.audience__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.audience__list li {
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.audience__col--yes .audience__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.audience__col--no .audience__list li::before {
  content: '✧';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.audience__closing {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .audience__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════
   SECTION 8 — GARANTIA
   ═══════════════════════════════════════ */

.guarantee {
  background-color: var(--navy);
  color: var(--cream);
}

.guarantee__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

.guarantee__seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  background: rgba(184, 147, 74, 0.08);
}

.guarantee__seal::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 74, 0.3);
}

.guarantee__seal-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.guarantee__seal-text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

.guarantee__content h2 {
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

.guarantee__content p {
  color: rgba(250, 246, 238, 0.85);
  font-size: 1rem;
  line-height: 1.8;
}

.guarantee__content strong {
  color: var(--cream);
}

.guarantee__cta-area {
  margin-top: var(--space-xl);
}

/* On navy, make CTA button stand out */
.guarantee .cta-btn {
  box-shadow: 0 6px 24px rgba(184, 147, 74, 0.5);
}

@media (min-width: 768px) {
  .guarantee__grid {
    flex-direction: row;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════
   SECTION 9 — QUEBRA DE OBJEÇÃO
   ═══════════════════════════════════════ */

.objection {
  background-color: var(--cream);
}

.objection__title {
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.objection p {
  font-size: 1.02rem;
  line-height: 1.85;
}

.objection strong {
  color: var(--navy);
}


/* ═══════════════════════════════════════
   SECTION 10 — FAQ
   ═══════════════════════════════════════ */

.faq {
  background-color: var(--cream-dark);
}

.faq__title {
  margin-bottom: var(--space-2xl);
}

.accordion {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.accordion__item {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: box-shadow var(--transition-medium);
}

.accordion__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  gap: var(--space-md);
}

.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium),
              background var(--transition-medium);
}

.accordion__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-medium);
}

.accordion__item.active .accordion__icon {
  background: var(--gold);
}

.accordion__item.active .accordion__icon svg {
  stroke: var(--white);
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion__content-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════
   SECTION 11 — FECHAMENTO FINAL
   ═══════════════════════════════════════ */

.final-cta {
  background-color: var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle Mary silhouette overlay */
.final-cta__bg-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18rem;
  color: rgba(184, 147, 74, 0.04);
  pointer-events: none;
  font-family: var(--font-serif);
  font-weight: 700;
  user-select: none;
}

.final-cta .container--narrow {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  color: var(--cream);
  margin-bottom: var(--space-xl);
}

.final-cta__copy {
  color: rgba(250, 246, 238, 0.85);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.final-cta__highlight {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin: var(--space-2xl) 0;
  line-height: 1.5;
}

.final-cta__cta-area {
  margin-top: var(--space-xl);
}

.final-cta .cta-btn {
  font-size: 1.1rem;
  padding: 20px 44px;
  box-shadow: 0 8px 32px rgba(184, 147, 74, 0.5);
}

.final-cta .cta-micro {
  color: rgba(250, 246, 238, 0.6);
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background-color: #162d4a;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.footer__text {
  font-size: 0.75rem;
  color: rgba(250, 246, 238, 0.4);
  line-height: 1.8;
}

.footer__text a {
  color: rgba(250, 246, 238, 0.5);
  text-decoration: underline;
}

.footer__text a:hover {
  color: rgba(250, 246, 238, 0.7);
}


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}


/* ═══════════════════════════════════════
   GOLD DIVIDER
   ═══════════════════════════════════════ */

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  margin: 0;
}

.gold-divider__line {
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.gold-divider__diamond {
  color: var(--gold);
  font-size: 0.7rem;
}


/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE FIRST REFINEMENTS
   ═══════════════════════════════════════ */

@media (max-width: 480px) {
  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  .hero {
    padding: var(--space-md) var(--space-md) var(--space-lg);
    min-height: auto; /* Remove min-height to prioritize video */
  }

  .hero__brand {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    margin-bottom: var(--space-xs);
  }

  .hero__headline {
    font-size: 1.15rem; /* Menor para caber em ~2/3 linhas */
    margin-bottom: var(--space-sm);
    line-height: 1.25;
  }

  .hero__subheadline {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }

  .hero__logo {
    width: 160px;
  }

  .vsl-player__play-btn {
    width: 64px;
    height: 64px;
  }

  .vsl-player__play-btn::after {
    border-width: 11px 0 11px 19px;
  }

  .cta-btn {
    padding: 16px 28px;
    font-size: 0.92rem;
    width: 100%;
    justify-content: center;
  }

  .offer__card {
    padding: var(--space-xl) var(--space-lg);
  }

  .offer__price {
    font-size: 2.6rem;
  }

  .guarantee__seal {
    width: 120px;
    height: 120px;
  }

  .guarantee__seal-number {
    font-size: 1.8rem;
  }

  .final-cta .cta-btn {
    font-size: 1rem;
    padding: 18px 32px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .hero {
    padding: var(--space-2xl) var(--space-2xl) var(--space-3xl);
  }
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  z-index: 1000;
  transition: width 0.1s linear;
  width: 0%;
}

/* ═══════════════════════════════════════
   QUIZ PRÉ-VSL
   ═══════════════════════════════════════ */

.quiz-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--cream);
  padding: var(--space-md);
}

.quiz-header {
  text-align: center;
  padding: var(--space-md) 0;
  margin-bottom: var(--space-lg);
}

.quiz-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.quiz-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.quiz-screen {
  display: none;
  width: 100%;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-screen.active {
  display: block;
}

/* Tela Abertura */
.quiz-screen--start {
  text-align: center;
}

.quiz-screen--start h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: var(--space-lg);
}

.quiz-screen--start p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* Barra de Progresso */
.quiz-progress {
  width: 100%;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  display: none;
}

.quiz-progress.active {
  display: block;
}

.quiz-progress__bar {
  height: 6px;
  background-color: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.quiz-progress__fill {
  height: 100%;
  background-color: var(--gold);
  width: 0%;
  transition: width 0.4s ease;
}

.quiz-progress__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  font-weight: 600;
}

/* Tela de Pergunta */
.quiz-question__title {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quiz-option {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
}

.quiz-option:hover {
  border-color: var(--gold);
  background-color: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 147, 74, 0.1);
}

.quiz-option:active {
  transform: translateY(0);
}

/* Tela de Resultado */
.quiz-result {
  text-align: center;
  background: var(--white);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 12px 40px rgba(29, 58, 95, 0.08);
  border-top: 4px solid var(--gold);
}

.quiz-result__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.quiz-result__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-lg);
}

.quiz-result__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.quiz-result__text p {
  margin-bottom: var(--space-md);
}

/* Quiz Offer Card */
.quiz-offer-card {
  background-color: var(--cream-dark);
  border: 1.5px solid var(--gold);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.quiz-offer-card__image {
  max-width: 200px;
  margin: 0 auto var(--space-lg);
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(29, 58, 95, 0.1);
}

.quiz-offer-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  text-align: center;
}

.quiz-offer-card__list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.quiz-offer-card__list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}

.quiz-offer-card__price {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.quiz-offer-card__price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
}

.quiz-offer-card__price strong {
  font-size: 2.2rem;
  color: var(--gold-dark);
  font-family: var(--font-serif);
}

.quiz-offer-card__price small {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -2px;
}

.quiz-offer-card__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 16px 16px;
  text-align: center;
}

.quiz-offer-card__security {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  display: block;
}

/* Quiz Result Footer */
.quiz-result__footer {
  margin-top: var(--space-xl);
  text-align: left;
  border-top: 1px solid var(--gray-light);
  padding-top: var(--space-lg);
}

.quiz-result__guarantee,
.quiz-result__proof {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.quiz-result__proof {
  font-style: italic;
  background-color: var(--cream);
  padding: var(--space-md);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
