* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif !important;
  line-height: 1.8;
  color: #2a2a2a;
  background: #fafaf8;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO - Simples e Direto */
.hero {
  background: #4a4a3a;
  color: #f5f5f0;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3.2em;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.1em;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.light-shadow{
  box-shadow: 24px 17px 44px -6px rgba(255,255,255,0.11);
  -webkit-box-shadow: 24px 17px 44px -6px rgba(255,255,255,0.11);
  -moz-box-shadow: 24px 17px 44px -6px rgba(255,255,255,0.11);
}

/* SECTIONS - Espaço Respirável */
section {
  padding: 60px 20px;
  border-bottom: 1px solid #e5e5e0;
}

h2 {
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 30px;
  color: #3a3a2a;
  text-align: center;
}

p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #4a4a4a;
}

/* TRUTH BOX - Honestidade Crua */
.truth-box {
  background: #f0ede5;
  border-left: 4px solid #8a7a5a;
  padding: 30px;
  margin: 40px 0;
}

.truth-box h3 {
  font-size: 1.3em;
  color: #3a3a2a;
  margin-bottom: 15px;
  font-weight: 500;
}

.truth-box p {
  margin-bottom: 12px;
}

.truth-box .emphasis {
  font-size: 1.2em;
  font-weight: 600;
  color: #6a5a3a;
  margin-top: 20px;
  display: block;
}

/* VIDEO SECTION - Humanização */
.video-section {
  background: #fff;
  text-align: center;
}

.video-placeholder {
  background: #3a3a3a;
  color: #fff;
  padding: 120px 40px;
  margin: 30px 0;
  border-radius: 4px;
  font-size: 1.1em;
  position: relative;
}

.video-placeholder::before {
  content: "▶";
  font-size: 4em;
  display: block;
  margin-bottom: 20px;
  opacity: 0.7;
}

.video-note {
  font-size: 0.95em;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 15px;
}

/* PREVIEW IMAGES - Prova Tangível */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;

}

.preview-item {

  background: #fff;
  border: 1px solid #e0e0d8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.preview-image {
  height: fit-content;
  background: linear-gradient(135deg, #d4c4a8 0%, #c4b498 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3em;
  
}

.preview-caption {
  padding: 15px;
  font-size: 0.95em;
  color: #5a5a5a;
  text-align: center;
  background: #fafaf8;
}

/* WHAT YOU GET - Lista Simples */
.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e8e8e0;
  font-size: 1.05em;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "→ ";
  color: #8a7a5a;
  font-weight: bold;
  margin-right: 10px;
}

/* REALISTIC EXPECTATIONS - Honestidade */
.expectations {
  background: #fff;
}

.expectations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.expectations-box {
  padding: 25px;
  border-radius: 4px;
}

.can-expect {
  background: #e8f4e8;
  border-left: 4px solid #5a8a4a;
}

.cannot-expect {
  background: #f4e8e8;
  border-left: 4px solid #8a5a4a;
}

.expectations-box h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 600;
}

.expectations-box ul {
  list-style: none;
}

.expectations-box li {
  padding: 8px 0;
  font-size: 0.98em;
  color: #4a4a4a;
}

.can-expect li::before {
  content: "✓ ";
  color: #5a8a4a;
  margin-right: 8px;
}

.cannot-expect li::before {
  content: "✗ ";
  color: #8a5a4a;
  margin-right: 8px;
}

/* AUTHOR SECTION - Humanização Real */
.author-section {
  background: #f0ede5;
  text-align: center;
}

.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #8a7a5a;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5em;

}

.author-note {
  font-style: italic;
  color: #5a5a4a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* CTA - Honesto e Sem Pressão */
.cta-section {
  background: #fff;
  text-align: center;
}

.price-honest {
  background: #fafaf8;
  border: 1px solid #e0e0d8;
  padding: 30px;
  margin: 30px auto;
  max-width: 400px;
  border-radius: 4px;
}

.price-honest p {
  font-size: 1em;
  margin-bottom: 10px;
  color: #5a5a5a;
}

.price-value {
  font-size: 2.5em;
  color: #3a3a2a;
  font-weight: 600;
  margin: 15px 0;
}

.price-note {
  font-size: 0.9em;
  color: #7a7a7a;
  font-style: italic;
  margin-top: 15px;
}

.cta-button {
  background: #5a6a4a;
  color: #fff;
  padding: 18px 45px;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  font-family: 'Georgia', serif;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 20px 0;
}

.cta-button:hover {
  background: #4a5a3a;
}

.cta-simple {
  font-size: 0.95em;
  color: #6a6a6a;
  margin-top: 20px;
}

/* LIMITATIONS - Responsabilidade Ética */
.limitations {
  background: #f9f7f0;
  border: 1px solid #d0c8b8;
}

.limitations h2 {
  color: #6a5a3a;
}

.limitations p {
  text-align: center;
  max-width: 600px;
  margin: 15px auto;
}

.limitations .warning {
  background: #f4e8e8;
  border-left: 4px solid #8a5a4a;
  padding: 20px;
  margin: 25px 0;
}

.limitations .warning strong {
  display: block;
  margin-bottom: 10px;
  color: #6a3a3a;
}

/* FAQ - Simples */
.faq {
  background: #fff;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.15em;
  color: #3a3a2a;
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-item p {
  font-size: 1em;
  color: #5a5a5a;
}

/* FOOTER - Minimalista */
footer {
  background: #3a3a2a;
  color: #d0d0c8;
  text-align: center;
  padding: 40px 20px;
}

footer p {
  margin: 10px 0;
  font-size: 0.95em;
  color: #d0d0c8;
}

footer a {
  color: #c4b498;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 1.6em;
  }

  .expectations-grid {
      grid-template-columns: 1fr;
  }

  .preview-grid {
      grid-template-columns: 1fr;
  }

  section {
      padding: 40px 20px;
  }
}