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

:root {
  /* Cores Base */
  --bg-primary: #FDFBF7;
  --bg-secondary: #EAE3D2;
  --bg-card: #FFFFFF;
  
  /* Textos */
  --text-main: #1A2530;
  --text-light: #4A5560;
  
  /* Destaques (Dourados) */
  --gold-main: #B58E4E;
  --gold-dark: #8A6B38;
  --gold-light: #D4C5A9;
  
  /* Gradientes e Sombras */
  --gold-gradient: linear-gradient(135deg, #DFBD69 0%, #926F34 100%);
  --shadow-soft: 0 10px 30px rgba(138, 107, 56, 0.08);
  --shadow-btn: 0 4px 15px rgba(181, 142, 78, 0.3);
  
  /* Espaçamentos */
  --section-padding: 100px 20px;
  --container-width: 800px; /* Layout focado no centro, estilo carta de vendas */
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 24px; text-align: center; }
h2 { font-size: 2.2rem; margin-bottom: 20px; text-align: center; }
h3 { font-size: 1.6rem; margin-bottom: 16px; color: var(--gold-dark); }
h4 { font-size: 1.2rem; margin-bottom: 12px; }

p { margin-bottom: 20px; }
strong { font-weight: 600; }

/* Layout e Containers */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

section {
  padding: var(--section-padding);
  position: relative;
}

section:nth-child(even) {
  background-color: var(--bg-secondary);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }

/* Componentes Visuais */

/* Divisor Clássico */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--gold-light);
  margin: 60px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.divider::after {
  content: "♦";
  color: var(--gold-dark);
  background: var(--bg-primary);
  padding: 0 10px;
  font-size: 1.2rem;
}
section:nth-child(even) .divider::after {
  background: var(--bg-secondary);
}

/* Botões de Compra (CTA) */
.btn-cta-wrapper {
  text-align: center;
  margin: 50px 0;
}

.btn-cta {
  display: inline-block;
  background: var(--gold-gradient);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(181, 142, 78, 0.4);
}

.btn-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* Caixas Destacadas / Cards */
.highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* Video Placeholder */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin: 40px 0;
  background-color: #000;
}

.video-wrapper iframe, .video-wrapper .placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

/* Imagens */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin: 30px 0;
}

/* Tabelas (Comparação e Preço) */
.premium-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.premium-table th, .premium-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--gold-light);
}

.premium-table th {
  font-family: 'Playfair Display', serif;
  background: var(--bg-secondary);
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.premium-table tr:last-child td { border-bottom: none; }

/* Tabela de Preço sem fundo para integrar melhor */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.price-table td {
  padding: 15px 0;
  border-bottom: 1px solid var(--gold-light);
}
.price-table td:last-child {
  text-align: right;
  font-weight: bold;
}
.price-table tr.total td {
  font-size: 1.2rem;
  border-top: 2px solid var(--gold-dark);
  border-bottom: none;
}

/* Grid para 3 Rs e 4 Passos */
.grid-3, .grid-4 {
  display: grid;
  gap: 30px;
  margin: 40px 0;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.step-card {
  text-align: center;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-btn);
}

/* Prova Social (Prints do WhatsApp emulados) */
.social-proof-grid {
  display: grid;
  gap: 20px;
  margin: 40px 0;
}
.print-mockup {
  background: #DCF8C6; /* Cor do WhatsApp verde clarinho ou branco para ser premium? Vamos usar bege claro premium */
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  font-size: 0.95rem;
}
.print-mockup::before {
  content: '”';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.5;
}
.print-author {
  margin-top: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  color: var(--gold-dark);
}
.print-full-width {
  grid-column: 1 / -1;
}

/* FAQ Acordeão Simplificado (Visual) */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 15px;
}
.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.faq-answer {
  color: var(--text-light);
}

/* Imagem do Autor */
.author-img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: top center; /* Centraliza o rosto */
}

/* Tabela Comparativa - Check e Cross */
.table-check {
  color: #2e7d32; /* Verde elegante */
  font-weight: 700;
  font-size: 1.2rem;
}
.table-cross {
  color: #c62828; /* Vermelho escuro */
  font-weight: 700;
  font-size: 1.2rem;
}
.premium-table td {
  vertical-align: middle;
}

/* Selo de Garantia Overlay */
.seal-container {
  position: relative;
  display: inline-block;
  max-width: 200px;
  margin: 0 auto;
}
.seal-container img {
  width: 100%;
  height: auto;
  box-shadow: none;
}
.seal-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.1;
  width: 80%;
}

/* Timer Banner */
.timer-banner {
  background-color: var(--gold-dark);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.timer-banner span {
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,0.3);
  padding: 3px 8px;
  border-radius: 4px;
  margin: 0 3px;
}

/* Responsividade */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  section { padding: 60px 20px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .btn-cta { width: 100%; padding: 18px 20px; }
  .premium-table { font-size: 0.9rem; }
  /* Ajuste tabela para 2 colunas no mobile */
  .premium-table th, .premium-table td { padding: 12px 10px; }
}
