@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

:root {
  /* Cores Principais */
  --color-primary: #061326;
  --color-secondary: #081628;
  --color-gold: #D8A03B;
  --color-gold-hover: #E2B258;
  --color-gold-light: rgba(216, 160, 59, 0.08);
  --color-gold-border: rgba(216, 160, 59, 0.25);
  --color-bg-light: #F5F1EA;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-gray: #6F7782;
  --color-gray-light: #F0EDE6;
  --color-green: #2E7D32;
  --color-green-light: rgba(46, 125, 50, 0.1);
  
  /* Fontes */
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
  
  /* Estrutura */
  --container-width: 1140px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transições & Sombras */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.2);
  --shadow-soft: 0 8px 24px rgba(6, 19, 38, 0.04);
  --shadow-glow: 0 0 20px rgba(216, 160, 59, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-text);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1.1rem;
  color: var(--color-gray);
  text-wrap: pretty;
  word-break: break-word;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Seções Padrão */
section {
  padding: 4rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark-alt {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

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

.section-white {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* Header */
header {
  padding: 1.5rem 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--color-gold);
}

.header-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Linha Dourada Discreta */
.divider-gold {
  width: 80px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.divider-gold.center {
  margin: 1.5rem auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-title);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-soft);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-primary);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Animação Pulsante Sutil */
.btn-pulse {
  animation: pulse-gold 2.5s infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 160, 59, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(216, 160, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 160, 59, 0);
  }
}

/* SEÇÃO 1: HERO */
.hero {
  padding-top: 8rem;
  padding-bottom: 5.5rem;
  background-image: radial-gradient(circle at 80% 20%, rgba(8, 22, 40, 0.8) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-hook-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(216, 160, 59, 0.2) 0%, rgba(216, 160, 59, 0.05) 100%);
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(216, 160, 59, 0.15);
}

.hero-sub-lead {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  color: var(--color-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--color-white);
}

.hero h1 span {
  color: var(--color-gold);
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-badge-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.hero-badge svg {
  color: var(--color-gold);
  width: 16px;
  height: 16px;
}

.hero-pricing-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.price-main {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.highlight-gold {
  color: var(--color-gold) !important;
  font-weight: 900;
}

/* Imagem Destaque Hero */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(216, 160, 59, 0.18) 0%, rgba(216, 160, 59, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.mockup-book-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  perspective: 1200px;
}

.mockup-book-img {
  width: 100%;
  height: auto;
  border-radius: 6px 16px 16px 6px;
  box-shadow: 
    -8px 12px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(216, 160, 59, 0.1);
  transform: rotateY(-15deg) rotateX(6deg) rotateZ(-1deg);
  transition: var(--transition-smooth);
  display: block;
}

.mockup-book-container:hover .mockup-book-img {
  transform: rotateY(-3deg) rotateX(2deg) rotateZ(0deg) scale(1.04);
  box-shadow: 
    -12px 18px 45px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(216, 160, 59, 0.25);
}

/* SEÇÃO 2: IDENTIFICAÇÃO */
.identification-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.identification-title h2 {
  color: var(--color-primary);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pain-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-gold);
  transition: var(--transition-smooth);
}

.pain-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-left-width: 6px;
  box-shadow: 0 20px 40px rgba(6, 19, 38, 0.12), 0 0 20px rgba(216, 160, 59, 0.15);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pain-icon svg {
  color: var(--color-gold);
  width: 24px;
  height: 24px;
}

.pain-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.pain-card p {
  font-size: 1rem;
}

/* SEÇÃO 3: A GRANDE MENTIRA */
.the-lie-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.the-lie-wrapper h2 {
  margin-bottom: 2rem;
  color: var(--color-white);
}

.tagline-emphasized {
  color: var(--color-gold);
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.5rem;
}

.the-lie-content {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.the-lie-content p {
  color: inherit;
  margin-bottom: 1.5rem;
}

.highlight-box {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-gold-border);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--font-title);
  font-size: 8rem;
  color: rgba(216, 160, 59, 0.1);
  font-weight: 900;
  line-height: 1;
}

.highlight-quote {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

/* SEÇÃO 4: O QUE VOCÊ VAI APRENDER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.chapter-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.chapter-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(6, 19, 38, 0.12), 0 0 25px rgba(216, 160, 59, 0.2);
}

.chapter-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.chapter-number {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--color-gold);
  line-height: 1;
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.chapter-card:hover .chapter-number {
  background-color: var(--color-gold);
  color: var(--color-primary);
}

.chapter-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  padding-right: 0;
}

.chapter-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* SEÇÃO 5: BENEFÍCIOS (MELHORIA DO DESIGN E 8 ARGUMENTOS) */
.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  background-color: var(--color-secondary);
  border: 1px solid rgba(216, 160, 59, 0.12);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--color-gold);
  background-color: #0c203b;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(216, 160, 59, 0.3);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 1px solid rgba(76, 175, 80, 0.3);
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background-color: rgba(76, 175, 80, 0.2);
}

.benefit-icon svg {
  color: #4CAF50;
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* SEÇÃO DE DEPOIMENTOS (CARROSSEL DINÂMICO) */
.testimonials-section {
  background-color: var(--color-white);
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.testimonials-carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 2rem 0;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 1.5rem;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background-color: var(--color-bg-light);
  padding: 2.25rem 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  background-color: var(--color-white);
  border-color: var(--color-gold-border);
  box-shadow: 0 20px 40px rgba(6, 19, 38, 0.1), 0 0 15px rgba(216, 160, 59, 0.15);
}

.stars {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.02rem;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-title);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.user-info h4 {
  font-size: 1rem;
  color: var(--color-primary);
}

.user-info p {
  font-size: 0.85rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-gold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(6, 19, 38, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--color-gold);
  width: 26px;
  border-radius: 12px;
}

/* SEÇÃO 6: SOBRE O AUTOR (FOTO CENTRALIZADA) */
.author-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.author-image-wrapper {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.author-rect-border {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-gold);
  border-radius: var(--border-radius-md);
  z-index: 1;
}

.author-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  display: block;
}

.author-details h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.author-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.author-text p {
  margin-bottom: 1.25rem;
}

.author-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.author-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.author-hl-icon {
  background: var(--color-gold-light);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-hl-icon svg {
  color: var(--color-gold);
  width: 20px;
  height: 20px;
}

.author-hl-content h4 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.author-hl-content p {
  font-size: 0.85rem;
}

/* SEÇÃO 7: PARA QUEM É ESTE GUIA (COMPARAÇÃO) */
.target-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.target-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-gray-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.target-card-yes {
  border-top: 5px solid var(--color-green);
}

.target-card-no {
  border-top: 5px solid #D32F2F;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(6, 19, 38, 0.1);
}

.target-card-header {
  margin-bottom: 2rem;
}

.target-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  white-space: nowrap;
  text-wrap: nowrap;
}

.target-header-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.badge-yes {
  background-color: rgba(46, 125, 50, 0.1);
  color: var(--color-green);
  border: 1px solid rgba(46, 125, 50, 0.25);
}

.badge-no {
  background-color: rgba(211, 47, 47, 0.1);
  color: #D32F2F;
  border: 1px solid rgba(211, 47, 47, 0.25);
}

.target-card h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.target-item:last-child {
  border-bottom: none;
}

.target-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-yes {
  background-color: rgba(46, 125, 50, 0.12);
}

.icon-yes svg {
  color: var(--color-green);
  width: 16px;
  height: 16px;
}

.icon-no {
  background-color: rgba(211, 47, 47, 0.12);
}

.icon-no svg {
  color: #D32F2F;
  width: 16px;
  height: 16px;
}

.target-item p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.4;
}

/* SEÇÃO 8: QUEBRA DE OBJEÇÕES (ACORDEÕES) */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-gold-border);
  box-shadow: 0 8px 24px rgba(6, 19, 38, 0.06);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

.faq-header:hover {
  background-color: rgba(245, 241, 234, 0.5);
}

.faq-question {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--color-gold);
}

.faq-toggle-icon svg {
  width: 20px;
  height: 20px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--color-gray);
  font-size: 1.05rem;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

/* SEÇÃO 9: OFERTA (DUAS OFERTAS & TABELA COMPARATIVA) */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
  position: relative;
}

.offer-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.25rem;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  border: 2px solid transparent;
}

.offer-card-standard {
  border-color: rgba(255, 255, 255, 0.15);
}

.offer-card-standard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 20px rgba(216, 160, 59, 0.15);
}

.offer-card-featured {
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(216, 160, 59, 0.25);
}

.offer-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 45px rgba(216, 160, 59, 0.35);
}

.offer-badge-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D8A03B 0%, #E2B258 100%);
  color: var(--color-primary);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(216, 160, 59, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.offer-card-header {
  margin-bottom: 1.5rem;
}

.offer-card-title {
  font-size: 1.45rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
}

.offer-card-subtitle {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.offer-price-box {
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.offer-price {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-price-tags {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray);
}

.offer-includes-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.offer-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.offer-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-check-icon svg {
  color: var(--color-gold);
  width: 14px;
  height: 14px;
}

.offer-list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--color-primary);
  line-height: 1.3;
}

.offer-item-subtext {
  font-size: 0.88rem;
  color: var(--color-gray);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.offer-card-footer {
  margin-top: auto;
}

/* ESTILOS PARA ITENS DESABILITADOS/TACHADOS DA OFERTA STANDARD */
.offer-item-disabled {
  opacity: 0.55;
}

.offer-check-disabled {
  background-color: rgba(120, 120, 120, 0.12) !important;
}

.offer-check-disabled svg {
  color: #888888 !important;
}

.strikethrough-text {
  text-decoration: line-through;
  color: var(--color-gray) !important;
}

/* BLOCO DE VALOR: VOCÊ ECONOMIZA TEMPO */
.value-block-card {
  background: linear-gradient(135deg, #081628 0%, #061326 100%);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-glow);
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.value-block-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(216, 160, 59, 0.25);
}

.value-block-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.value-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-box svg {
  color: var(--color-gold);
  width: 28px;
  height: 28px;
}

.value-block-header h3 {
  font-size: 1.75rem;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.value-block-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.value-bullets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
  border-top: 1px solid rgba(216, 160, 59, 0.2);
  padding-top: 1.5rem;
}

.value-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.value-bullet-item svg {
  color: var(--color-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* TABELA COMPARATIVA PREMIUM */
.comparison-section {
  background-color: var(--color-secondary);
  border: 1px solid rgba(216, 160, 59, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-premium);
}

.comparison-header {
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-header h3 {
  font-size: 1.85rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.comparison-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.03);
}

.comparison-table th small {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-gold);
}

.comparison-table td {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.col-resource {
  width: 50%;
}

.col-tier {
  width: 25%;
  text-align: center;
}

.col-featured {
  background-color: rgba(216, 160, 59, 0.1);
  border-left: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
}

th.col-featured {
  color: var(--color-gold);
}

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

.check-yes {
  color: #4CAF50;
  font-weight: 900;
  font-size: 1.25rem;
}

.check-no {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

/* POP-UP MODAL UPSELL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 19, 38, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 560px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(216, 160, 59, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gray);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.modal-badge {
  display: inline-block;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-body p {
  font-size: 1.1rem;
  color: var(--color-black);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-outline-modal {
  background-color: transparent;
  border: 2px solid var(--color-gray-light);
  color: var(--color-gray);
  font-family: var(--font-title);
  font-weight: 700;
  padding: 0.95rem 1.5rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  text-align: center;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.btn-outline-modal:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(6, 19, 38, 0.04);
}

/* SEÇÃO 10: GARANTIA */
.warranty-container {
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--shadow-soft);
}

.warranty-badge-svg {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.warranty-content h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.warranty-content p {
  font-size: 1rem;
  line-height: 1.5;
}

/* SEÇÃO 11: CTA FINAL (FUNDO CLARO ADAPTADO) */
.cta-final-light {
  text-align: center;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-gold-border);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-final-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(216, 160, 59, 0.1) 0%, rgba(245, 241, 234, 0) 70%);
  pointer-events: none;
}

.cta-final-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final-light h2 {
  font-size: 2.75rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-final-light p {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 3rem;
}

/* RODAPÉ */
footer {
  background-color: #030b14;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--color-gold);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.footer-links-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-link-item a:hover {
  color: var(--color-gold);
  padding-left: 3px;
}

.footer-quote {
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
}

.footer-quote p {
  font-family: var(--font-title);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.creator-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.creator-link:hover {
  color: var(--color-gold-hover);
  text-decoration: underline;
}

/* ANIMATION SCROLL CLASSSES */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsividade (Media Queries) */
@media (max-width: 992px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  
  section { padding: 3rem 0; }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-sub { margin-left: auto; margin-right: auto; }
  
  .hero-badge-container {
    justify-content: center;
  }
  
  .hero-pricing-box {
    justify-content: center;
  }
  
  .hero-media-wrapper {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .pains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chapters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .author-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .author-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .value-bullets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  
  .btn { padding: 1rem 1.75rem; font-size: 1rem; }

  .testimonials-carousel-wrapper {
    padding: 0 0.5rem;
  }

  .carousel-btn {
    display: none; /* No mobile, navega arrastando ou pelos dots */
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .target-comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pains-grid {
    grid-template-columns: 1fr;
  }
  
  .chapters-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-wrapper {
    grid-template-columns: 1fr;
  }

  /* Otimização da Oferta no Mobile: Kit Completo em primeiro lugar */
  .offers-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .offer-card-featured {
    order: -1; /* Exibe a oferta mais vantajosa primeiro no mobile */
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .faq-header {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .offer-card {
    padding: 2.5rem 1.5rem;
  }
  
  .value-block-card {
    padding: 2rem 1.5rem;
  }

  .value-block-header {
    flex-direction: column;
    text-align: center;
  }

  .value-bullets-grid {
    grid-template-columns: 1fr;
  }

  .comparison-section {
    padding: 2rem 1.25rem;
  }

  .modal-card {
    padding: 2.25rem 1.5rem;
  }

  .modal-header h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-badge-container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-pricing-box {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .author-highlights {
    grid-template-columns: 1fr;
  }

  .offer-price {
    font-size: 2.5rem;
  }
}
