:root {
  --primary: #2F6FED;
  --secondary: #3BB273;
  --gray-bg: #E7F0FF;
  --text-main: #4A4A4A;
  --text-muted: #6B7280;
  --bg-white: #FFFFFF;
  --yellow: #F4D35E;
  --orange: #FF7A00;
  --orange-hover: #E56E00;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --image-border: 1px solid rgba(0, 0, 0, 0.03);
}

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

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
  width: 100%;
}

/* --- SAMPLES CAROUSEL --- */
.samples-section {
  padding: 80px 0;
  background: #F8FAFF;
  overflow: hidden;
}
.samples-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.samples-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.3;
}
.samples-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F8FAFF 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F8FAFF 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
}
.marquee-row { 
  overflow: hidden; 
  width: 100%;
  position: relative;
}
.marquee-row-left .marquee-track  { animation: marquee-left  35s linear infinite; }
.marquee-row-right .marquee-track { animation: marquee-right 35s linear infinite; }

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-track:hover { animation-play-state: paused; }

.sample-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--image-border);
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.sample-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(47,111,237,0.15);
}
.sample-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .samples-header h2 { font-size: 1.4rem; }
  .sample-card { width: 170px; }
  .marquee-wrapper::before,
  .marquee-wrapper::after { width: 60px; }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 40px; color: var(--text-main); line-height: 1.3;}
.subtitle { font-size: 1.125rem; color: var(--text-muted); margin-top: -30px; margin-bottom: 40px;}
.shadow-card { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: all 0.3s ease; }
.shadow-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.story-image {
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: var(--image-border);
  transition: transform 0.4s ease;
}
.story-image:hover {
  transform: translateY(-5px);
}


/* --- BUTTON --- */
.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(59, 178, 115, 0.39);
}
.cta-button:hover {
  background-color: #2C8B58;
  transform: scale(1.05);
}
.cta-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 178, 115, 0.7); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(59, 178, 115, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 178, 115, 0); }
}

.pulse { animation: pulse 2.5s infinite; }

/* --- HERO --- */
.hero {
  background: var(--bg-white);
  padding: 80px 0 10px 0; 
  overflow: hidden;
}
.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero-content { 
  flex: 1; 
}
.badge {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 { font-size: 2.5rem; line-height: 1.2; font-weight: 800; margin-bottom: 20px; color: var(--text-main); }
.hero p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-benefits { list-style: none; margin-bottom: 40px; }
.hero-benefits li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 500; font-size: 1.1rem;}
.hero-benefits i { color: var(--secondary); }
.hero-image { flex: 1; text-align: right; min-width: 300px; }
.hero-image img { max-width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* --- PAIN --- */
.pain-points { padding: 20px 0 80px 0; background-color: var(--primary); color: white; overflow: hidden;}
.pain-points .section-title { color: white; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 40px; }
.pain-box { padding: 30px; text-align: center; }
.icon-wrapper { width: 60px; height: 60px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.red-icon { background-color: #FEF9E6; color: var(--yellow); }
.pain-box h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--text-main); }
.pain-box p { color: var(--text-muted); font-size: 0.95rem; }
.pain-conclusion { font-size: 1.25rem; background: var(--bg-white); padding: 25px; border-radius: var(--radius-md); box-shadow: var(--shadow); max-width: 700px; margin: 0 auto; color: var(--text-main);}

/* --- DEMO --- */
.demo { padding: 80px 0; }
.demo-wrapper { display: flex; align-items: center; gap: 60px; }
.demo-image { flex: 1; }
.demo-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transition: transform 0.5s; }
.demo-image:hover img { transform: scale(1.03); }
.demo-text { flex: 1; }
.demo-list { list-style: none; }
.demo-list li { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.list-icon { background: var(--primary); color: white; padding: 12px; border-radius: var(--radius-md); flex-shrink: 0;}
.demo-list strong { display: block; font-size: 1.1rem; margin-bottom: 5px; color: var(--text-main);}

/* --- BENEFITS --- */
.bg-slate { background-color: var(--gray-bg); }
.benefits { padding: 80px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.benefit-card { padding: 30px 20px; text-align: center; }
.green-icon { background-color: #EAF7ED; color: var(--secondary); }
.benefit-card h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); }

/* --- MODULES --- */
.modules { padding: 80px 0; }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.module-card { padding: 40px 30px; position: relative; overflow: hidden; border-top: 4px solid var(--primary); }
.module-number { background: var(--primary); color: white; display: inline-block; padding: 4px 12px; border-radius: 999px; font-weight: 700; font-size: 0.85rem; margin-bottom: 20px; }
.module-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary); }
.module-card p { color: var(--text-muted); font-size: 0.95rem; }

/* --- BONUSES --- */
.gradient-bg { background: var(--primary); padding: 80px 0; }
.white-text { color: white !important; }
.bonus-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: var(--image-border);
  transition: all 0.4s ease;
  background: #fff;
}
.bonus-image-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.bonus-image-card img {
  width: 100%;
  display: block;
}
.bonus-icon { color: var(--primary); width: 40px; height: 40px; flex-shrink: 0; }
.bonus-content h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.bonus-content p { color: var(--text-muted); font-size: 0.9rem; }

/* --- COMPARISON --- */
.comparison { padding: 80px 0; }
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; background: white; }
.compare-table th, .compare-table td { padding: 20px; text-align: left; border-bottom: 1px solid #E2E8F0; width: 50%; }
.bad-header { background: #F8FAFC; color: var(--text-muted); font-weight: 700; font-size: 1.1rem;}
.good-header { background: #EAF7ED; color: var(--secondary); font-weight: 700; font-size: 1.1rem;}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text-muted); position: relative; padding-left: 40px;}
.compare-table td:first-child::before { content: "✕"; position: absolute; left: 15px; color: var(--yellow); font-weight: bold; }
.compare-table td:last-child { color: var(--text-main); font-weight: 500; position: relative; padding-left: 40px; background: var(--gray-bg);}
.compare-table td:last-child::before { content: "✓"; position: absolute; left: 15px; color: var(--secondary); font-weight: bold; }

/* --- AUTHORITY --- */
.authority { padding: 80px 0; }
.auth-wrapper { display: flex; gap: 40px; align-items: center; padding: 40px; background: white; }
.auth-img { 
  max-width: 350px;
  width: 100%;
  height: auto;
  object-fit: cover; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-soft);
  border: var(--image-border);
  flex-shrink: 0;
}
.auth-text h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); }
.auth-text p { margin-bottom: 15px; color: var(--text-muted); }

/* --- TESTIMONIALS --- */
.testimonials { padding: 80px 0; }
.testim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testim-card { padding: 30px; text-align: center; }
.testim-photo { 
  width: 90px; 
  height: 90px; 
  border-radius: 50%; 
  object-fit: cover; 
  margin: 0 auto 15px; 
  border: 4px solid #fff; 
  box-shadow: var(--shadow-soft);
  display: block; 
}
.stars { color: var(--yellow); margin-bottom: 15px; letter-spacing: 2px; }
.testim-card p { font-style: italic; color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.testim-author { color: var(--primary); }

/* --- OFFER --- */
.offer { padding: 100px 0; background-color: var(--primary); color: white;}
.offer .section-title { color: white; }
.offer-box { max-width: 600px; margin: 0 auto; background: white; color: var(--text-main); padding: 50px 40px; border-radius: var(--radius-lg); text-align: center; border: 5px solid var(--primary); }
.offer-pre { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
.offer-list { list-style: none; text-align: left; margin-bottom: 30px; }
.offer-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-weight: 500;}
.green-text { color: var(--secondary); }
.price-box { background: var(--gray-bg); padding: 20px; border-radius: var(--radius-md); margin-bottom: 30px; }
.price-anchor { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.price-final { font-size: 4rem; font-weight: 900; color: var(--secondary); line-height: 1; margin: 10px 0; }
.price-sub { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* --- GUARANTEE --- */
.guarantee { padding: 80px 0; }
.light-blue-bg { background-color: var(--gray-bg); }
.guarantee-wrapper { display: flex; gap: 30px; align-items: center; padding: 40px; border: 2px dashed rgba(59, 178, 115, 0.3); background: white; border-radius: var(--radius-lg); }
.guarantee-icon-img { width: 100px; height: auto; flex-shrink: 0; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05)); }
.guarantee-text h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }

/* --- FAQ --- */
.faq { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; background: white; padding: 20px; }
.faq-item { border-bottom: 1px solid #E2E8F0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 10px; font-size: 1.1rem; font-weight: 600; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-arrow { transition: transform 0.3s; color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s; padding: 0 10px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }

/* --- FOOTER --- */
.footer { padding: 40px 0; background: var(--gray-bg); color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid #E2E8F0; }
.footer-icons { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--text-main); font-weight: 500; }
.footer-icons i { color: var(--primary); }
.footer-links { margin: 20px 0; }
.footer-links a { color: var(--secondary); text-decoration: none; margin: 0 10px; }
.footer-links a:hover { color: var(--primary); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-container, .demo-wrapper, .auth-wrapper, .guarantee-wrapper { flex-direction: column; text-align: center; gap: 30px; flex-wrap: wrap; }
  
  .hero, .pain-points, .demo, .benefits, .modules, .gradient-bg, .comparison, .authority, .testimonials, .offer, .guarantee, .faq { padding: 50px 0; }
  
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 25px; }
  .subtitle { font-size: 1rem; margin-bottom: 30px; margin-top: -15px; }
  .price-final { font-size: 3rem; }
  
  .pain-grid, .benefits-grid, .modules-grid, .bonus-grid, .testim-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .hero-benefits li { justify-content: center; font-size: 1rem; text-align: left; }
  
  .hero-image img { margin-top: 10px; }
  .auth-wrapper { padding: 30px 20px; }
  .auth-img { width: 100%; max-width: 250px; }
  .guarantee-wrapper { padding: 30px 20px; }
  .guarantee-icon { margin-bottom: 5px; }
  
  .bonus-card { flex-direction: column; align-items: center; padding: 25px 20px; }
  .bonus-content { text-align: left; width: 100%; }
  .bonus-content h4 { text-align: center; }
  
  .demo-list li { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
  .offer-list li { justify-content: flex-start; text-align: left; align-items: flex-start; font-size: 0.95rem; }
  
  .offer-box { padding: 30px 20px; border-width: 3px; }
  
  .cta-button { display: block; width: 100%; padding: 15px 15px; font-size: 1rem; box-sizing: border-box; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.35rem; margin-bottom: 25px; }
  .cta-button { font-size: 0.95rem; padding: 14px 10px; }
  .price-final { font-size: 2.5rem; }
}

/* --- PROTEÇÃO DE CONTEÚDO --- */
body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none; /* Impede o botão direito e interações diretamente na imagem */
}
