:root {
  --bg-main: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-secondary: #F4EFEA;
  --bg-accent-soft: #FBF4F0;
  
  --primary: #862B3E; /* Vinho Marsala */
  --primary-hover: #6E1F30;
  --primary-light: #F8EBEF;
  --primary-dark: #380F17;
  
  --accent-rose: #C46D65; /* Blush Rose */
  --accent-gold: #B88E28;
  
  --text-main: #2D2727;
  --text-muted: #5C5254;
  --text-light: #8A7E81;
  
  --border-color: #E8E0D6;
  --border-light: #F2ECE4;
  
  --shadow-sm: 0 2px 10px rgba(56, 15, 23, 0.04);
  --shadow-md: 0 8px 24px rgba(56, 15, 23, 0.07);
  --shadow-lg: 0 16px 40px rgba(56, 15, 23, 0.1);

  --font-heading: 'Outfit', sans-serif; /* Títulos limpos e retos */
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-variant-numeric: lining-nums proportional-nums;
}

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

/* --- CONTAINERS & ESTRUTURA --- */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-700 { max-width: 680px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 780px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

.section {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-tag-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.quote-highlight {
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 500;
}

/* --- BOTÕES LIMPOS E CLAROS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(134, 43, 62, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(134, 43, 62, 0.4);
}

.btn-light {
  background-color: #FFFFFF;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background-color: #FAF8F5;
  transform: translateY(-2px);
}

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

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

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

/* --- BARRA SUPERIOR --- */
.top-announcement-bar {
  background: var(--primary-dark);
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 0.85rem;
  text-align: center;
}

.top-announcement-bar strong {
  color: #F8EBEF;
}

/* --- CABEÇALHO --- */
.site-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  background-color: rgba(250, 248, 245, 0.98);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.header-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

/* --- 1. HERO --- */
.hero-section {
  padding: 50px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.highlight-text {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-rose);
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 1.55;
}

/* --- HERO PRICE BUBBLE --- */
.hero-price-highlight {
  margin-bottom: 22px;
  width: 100%;
}

.price-bubble {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  display: block;
}

.price-values {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-split {
  font-size: 1rem;
  color: var(--text-main);
}

.price-split strong {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.price-or {
  font-size: 0.82rem;
  color: var(--text-light);
}

.price-cash {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.price-cash strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  width: 100%;
}

.micro-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.proof-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.proof-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.proof-divider {
  width: 1px;
  height: 26px;
  background-color: var(--border-color);
}

/* --- HERO VISUAL CARD --- */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-ebook-img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-price-sticker {
  position: absolute;
  top: -10px;
  right: -8px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(134, 43, 62, 0.35);
  text-align: center;
  border: 2px solid #FFFFFF;
}

.sticker-tag {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.sticker-val {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.hero-floating-tag {
  position: absolute;
  bottom: -15px;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.hero-floating-tag strong {
  display: block;
  font-size: 0.82rem;
  color: var(--primary-dark);
}

.hero-floating-tag span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.badge-icon {
  font-size: 1.2rem;
}

/* --- 2. SEÇÃO: COMEÇAR COM O QUE JÁ TEM --- */
.emotional-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.resource-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.resource-card {
  background-color: var(--bg-main);
  padding: 24px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.resource-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quote-box {
  background: var(--bg-accent-soft);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-size: 1.2rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* --- 3. SEÇÃO: O QUE VOCÊ VAI ENCONTRAR NO GUIA --- */
.features-section {
  background-color: var(--bg-main);
}

.editorial-narrative-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 25px;
}

.narrative-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.narrative-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.narrative-icon-wrapper {
  background: var(--primary-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.narrative-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.narrative-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.narrative-footer {
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto;
}

/* --- 4. SEÇÃO: NÃO É SOBRE FICAR RICA RÁPIDO --- */
.honesty-section {
  background-color: var(--bg-secondary);
}

.honesty-box {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.honesty-icon-badge {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.honesty-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.honesty-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.honesty-highlight {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.honesty-footer-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

/* --- 5. SEÇÃO: A MATEMÁTICA DOS R$ 100 --- */
.math-section {
  background: #FFFFFF;
}

.math-target-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.target-flag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent-rose);
  margin-bottom: 4px;
}

.target-val {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.target-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.math-examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.math-item {
  background: #FFFFFF;
  padding: 16px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.math-calc {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

.math-profit {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 2px 0 6px;
}

.math-eq {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.math-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* --- 6. SEÇÃO: PLANO DE 7 DIAS --- */
.plan-section {
  background-color: var(--bg-main);
}

.timeline-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.step-badge {
  background-color: var(--primary);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

/* --- 7. SEÇÃO: VIDA REAL --- */
.real-life-section {
  background-color: #FFFFFF;
}

.real-life-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.real-lead {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.routine-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.routine-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.routine-icon {
  background: var(--primary-light);
  color: var(--primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.routine-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.routine-list span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.photo-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-width: 380px;
  margin: 0 auto;
}

.section-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.photo-overlay-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(56, 15, 23, 0.92) 0%, rgba(56, 15, 23, 0.5) 60%, rgba(56, 15, 23, 0) 100%);
  padding: 24px 18px 16px;
  color: #FFFFFF;
  text-align: center;
}

.photo-overlay-quote p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.35;
  color: #FCFAF7;
}

/* --- 8. SEÇÃO: SEGURANÇA CONTRA GOLPES --- */
.security-section {
  background-color: var(--bg-main);
}

.security-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
}

.security-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 22px;
}

.shield-icon {
  font-size: 2rem;
}

.security-title {
  font-size: 1.8rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.security-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.security-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-main);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.tip-dot {
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 1;
}

.security-tip p {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.45;
}

/* --- 9. APRESENTAÇÃO DO PRODUTO & OFERTA --- */
.offer-section {
  background-color: #FFFFFF;
}

.offer-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  box-shadow: var(--shadow-md);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.offer-mockup-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-showcase {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.offer-ebook-img {
  width: 100%;
  max-width: 250px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 12px;
}

.format-indicator {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.offer-title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.product-identity-box {
  background: var(--primary-light);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

.product-identity-title {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
  font-weight: 700;
}

.product-identity-sub {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-identity-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.check-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- BLOCO DE PREÇO DA SEÇÃO DE OFERTA --- */
.price-box-card {
  background: #FFFFFF;
  border: 1.5px dashed var(--accent-rose);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 18px;
  text-align: center;
}

.price-box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-old {
  font-size: 0.92rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.price-discount-badge {
  background-color: #2E7D32;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.price-by-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: block;
}

.price-number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 2px 0;
}

.currency-symbol {
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.main-installments {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.price-cash-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-top: 4px;
}

.offer-cta-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.safe-badges {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-light);
  padding-top: 6px;
}

/* --- 10. FAQ --- */
.faq-section {
  background-color: var(--bg-main);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-question {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- 11. FINAL CTA --- */
.final-cta-section {
  background-color: #FFFFFF;
}

.final-cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 45px 30px;
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.final-cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1.3rem;
  color: #F8EBEF;
  margin-bottom: 12px;
  font-style: italic;
}

.final-cta-text {
  font-size: 0.98rem;
  color: #E8D0D5;
  margin-bottom: 24px;
}

.final-cta-photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-photo {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* --- 12. RODAPÉ --- */
.site-footer {
  background-color: #210D12;
  color: #C2B6B8;
  padding: 35px 0;
  font-size: 0.82rem;
}

.footer-copy {
  margin-bottom: 10px;
  color: #F8EBEF;
  font-size: 0.88rem;
}

.footer-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
  color: #9E8C90;
  font-size: 0.78rem;
}

/* ========================================================= */
/* --- AJUSTES MOBILE TOTALMENTE FLUIDOS E CLEAN (SEM APERTOS) */
/* ========================================================= */

@media (max-width: 860px) {
  .section {
    padding: 45px 0;
  }

  .container {
    padding: 0 16px;
  }

  .site-header {
    padding: 12px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .header-btn {
    display: none; /* Deixa o topo limpo no celular */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .hero-price-highlight {
    margin-bottom: 18px;
  }

  .price-bubble {
    width: 100%;
    padding: 10px 14px;
  }

  .price-values {
    justify-content: center;
    gap: 6px;
  }

  .hero-actions {
    align-items: center;
    margin-bottom: 22px;
  }

  .hero-proof-bar {
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
  }

  .proof-divider {
    display: none;
  }

  .hero-visual-card {
    max-width: 240px;
    margin: 0 auto;
  }

  .hero-floating-tag {
    position: static;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .hero-price-sticker {
    top: -8px;
    right: -4px;
    padding: 5px 10px;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .section-lead {
    font-size: 0.95rem;
  }

  .resource-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .editorial-narrative-box {
    padding: 24px 16px;
  }

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

  .honesty-box,
  .math-target-card,
  .security-box,
  .offer-card,
  .final-cta-card {
    padding: 24px 16px;
  }

  .honesty-title {
    font-size: 1.6rem;
  }

  .honesty-body {
    font-size: 0.95rem;
  }

  .math-examples-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
  }

  .real-life-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .routine-list li {
    text-align: left;
  }

  .section-photo {
    height: 300px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 8px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .final-cta-content {
    align-items: center;
  }

  .final-cta-title {
    font-size: 1.8rem;
  }

  .final-cta-subtitle {
    font-size: 1.15rem;
  }

  .final-photo {
    max-width: 200px;
    height: 200px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .safe-badges {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
}
