/* --- ESTILOS GLOBAIS E RESET --- */
html { scroll-behavior: smooth; }
body { 
  margin: 0; 
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #050505;
  color: #e0e0e0; 
  line-height: 1.8;
  overflow-x: hidden; 
  font-size: 18px;
}

/* Tipografia */
h1, h2, h3 { line-height: 1.3; font-weight: bold; margin: 0 0 25px 0; letter-spacing: -0.5px; }
.highlight-gold { color: #D4AF37; }
.text-center { text-align: center; }
strong { color: #fff; font-weight: 700; }
p { margin-bottom: 30px; }

/* --- HEADER NOVO (Flexbox) --- */
header { 
  background-color: #000; 
  padding: 10px 20px; 
  border-bottom: 1px solid #222;
}

.header-container {
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  justify-content: flex-start; /* Alinha à esquerda */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo { 
  height: 90px; 
  display: block; 
  margin: 0; 
}

.titulo-header {
  font-size: 32px;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 30px 20px 40px 20px;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
  text-align: center;
}
.hero-container { max-width: 900px; margin: 0 auto; }

/* --- NOVA CHAMADA DE IMPACTO (TÍTULO PRINCIPAL) --- */
.headline-impact-wrapper {
  text-align: center;
  margin-bottom: 30px; /* Espaço até o container dourado */
}

.impact-title {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 800; /* Extra bold */
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}

.impact-subtitle {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700; /* Bold */
  margin-top: 0;
}

/* --- BLOCO DE TEXTO DOURADO --- */
.hero-text-box {
  background-color: #0a0a0a; /* Fundo preto/muito escuro */
  border-left: 5px solid #D4AF37; /* Borda dourada à esquerda */
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  text-align: center; /* Texto centralizado como na imagem */
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-headline {
  font-size: 26px;
  color: #D4AF37;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-quote {
  font-size: 18px;
  color: #D4AF37;
  font-weight: bold;
  margin-bottom: 10px;
  font-style: italic;
}

.hero-question {
  font-size: 18px;
  color: #D4AF37;
  font-style: italic;
  margin-bottom: 15px;
}

.hero-body {
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 5px;
}

.hero-cta-text {
  font-size: 18px;
  color: #D4AF37;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

/* Seta apontando para baixo */
.hero-cta-text::after {
  content: '⬇';
  display: block;
  font-size: 24px;
  margin-top: 5px;
  color: #28a745;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-5px);}
  60% {transform: translateY(-3px);}
}

/* --- VÍDEO --- */
.video-box {
  background-color: #000;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
  max-width: 800px;
  margin: 0 auto;
}
.video-aspect-ratio { position: relative; width: 100%; padding-top: 56.25%; }
.video-aspect-ratio video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 4px; }

/* --- NOVOS BOTÕES (LADO A LADO E HIERARQUIA) --- */
.cta-group-wrapper {
  display: flex;
  justify-content: center; /* Centraliza o grupo */
  gap: 30px; /* Espaço entre os botões */
  margin-top: 50px;
  flex-wrap: wrap; /* Permite quebrar linha em telas pequenas */
  width: 100%;
}

.cta-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px; /* Largura máxima da coluna */
}

/* Botão Padrão (Verde Pulsante) */
.cta-pulse {
  display: inline-block;
  background-color: #28a745;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
  animation: pulse 2s infinite;
  transition: transform 0.2s, background-color 0.2s;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.cta-pulse:hover { 
  transform: scale(1.02); 
  background-color: #218838; 
}

/* ESTILO DO BOTÃO SECUNDÁRIO (GHOST BUTTON) */
/* Isso cria a diferença visual que você precisa */
a.cta-pulse.btn-secundario {
  background-color: transparent; /* Fundo transparente */
  border: 2px solid #D4AF37; /* Borda Dourada */
  color: #D4AF37; /* Texto Dourado */
  animation: none; /* SEM pulso para não competir atenção */
  box-shadow: none;
  transition: all 0.3s ease;
}

a.cta-pulse.btn-secundario:hover {
  background-color: #D4AF37; /* Ao passar o mouse, fica dourado */
  color: #000; /* Texto preto */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-subtext { 
  display: block; 
  font-size: 14px; 
  color: #888; 
  margin-top: 15px; 
  line-height: 1.4;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* --- SEÇÃO EMOCIONAL (STORYTELLING) --- */
.emotional-section {
  background-color: #080808; /* Um pouco diferente do fundo geral */
  padding: 30px 10px 60px 10px; 
  border-bottom: 1px solid #222;
}

.emotional-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.emotional-headline {
  color: #D4AF37;
  font-size: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content p {
  font-size: 19px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic; /* Estilo de narrativa */
}

.dialogue-line {
  color: #fff;
  font-size: 22px !important;
  font-weight: bold;
  border-left: 3px solid #D4AF37;
  display: inline-block;
  padding-left: 15px;
  margin: 20px 0 !important;
}

.separator-gold {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(212, 175, 55, 0.75), rgba(0, 0, 0, 0));
  margin: 40px 0;
}

.emotional-conclusion {
  color: #D4AF37 !important;
  font-weight: bold;
  font-size: 22px !important;
  font-style: normal !important;
}

.emotional-final {
  font-size: 18px !important;
  color: #ccc !important;
  font-style: normal !important;
}

/* --- SEÇÃO TARGET (A QUEM INTERESSA) --- */
.target-section {
  background-color: #111;
  padding: 80px 20px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.target-container { max-width: 900px; margin: 0 auto; }
.target-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 40px; }
.target-item {
  flex: 1 1 350px;
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-left: 4px solid #D4AF37;
  border-radius: 0 8px 8px 0;
}
.target-item h4 { color: #fff; margin-bottom: 15px; font-size: 20px; }
.target-item p { margin: 0; font-size: 16px; color: #ccc; line-height: 1.7; }

/* --- BLOCO: REALIDADE 90/10 --- */
.reality-check-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #222;
}
.reality-box {
  max-width: 800px;
  margin: 0 auto;
  border: 1px dashed #444;
  padding: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.reality-headline { font-size: 28px; color: #fff; margin-bottom: 20px; }
.reality-highlight { font-size: 36px; color: #D4AF37; font-weight: bold; display: block; margin: 20px 0; }

/* --- SEÇÃO ANALOGIA (MÉDICO) --- */
.analogy-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
 border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.analogy-box {
  border-left: 5px solid #28a745;
  padding-left: 30px;
  margin: 40px 0;
  background: linear-gradient(90deg, rgba(40,167,69,0.05) 0%, rgba(0,0,0,0) 100%);
}
.analogy-title { color: #28a745; font-size: 22px; font-weight: bold; margin-bottom: 15px; display: block;}

/* --- CONTEÚDO DO MÉTODO --- */
.content-section { max-width: 850px; margin: 0 auto; padding: 60px 20px; font-size: 19px; }
.content-section p { margin-bottom: 30px; color: #dcdcdc; }
.content-section ul { margin-bottom: 40px; padding-left: 20px; }
.content-section li { margin-bottom: 15px; color: #e0e0e0; }

.method-highlight {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid #333;
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
}
.method-highlight h3 { color: #D4AF37; font-size: 24px; margin-bottom: 25px; }

/* --- OFERTA (BIFURCAÇÃO) --- */
.offer-section { background-color: #080808; padding: 20px 20px; border-top: 1px solid #333;}
.offer-headline { text-align: center; font-size: 38px; margin-bottom: 60px; color: #fff; }

.cards-wrapper { 
  display: flex; 
  justify-content: center; 
  gap: 40px; 
  flex-wrap: wrap; 
  max-width: 1100px; 
  margin: 0 auto;
  align-items: stretch;
}

.card {
  flex: 1 1 400px;
  background: #151515;
  border: 1px solid #333;
  padding: 40px;
  border-radius: 10px;
  display: flex; 
  flex-direction: column;
  height: auto;
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover { border-color: #666; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.card.premium { 
  border: 2px solid #D4AF37; 
  background: #1c1c1c; 
  position: relative; 
}

.card h3 { color: #D4AF37; font-size: 26px; min-height: 60px; margin-bottom: 20px; }

.card p { 
  font-size: 17px; 
  color: #ccc; 
  flex-grow: 1;
  margin-bottom: 30px; 
  line-height: 1.6; 
}

.price { font-size: 30px; font-weight: bold; color: #fff; margin: 25px 0; display: block; }

.btn-card {
  display: block; 
  width: 100%; 
  padding: 18px 0;
  text-align: center; 
  border-radius: 6px;
  text-decoration: none; 
  font-weight: bold; 
  transition: 0.3s; 
  cursor: pointer; 
  font-size: 18px;
  box-sizing: border-box;
}

.btn-outline { border: 2px solid #D4AF37; color: #D4AF37; background: transparent; }
.btn-outline:hover { background: #D4AF37; color: #000; }
.btn-solid { background: #28a745; color: #fff; border: none; }
.btn-solid:hover { background: #218838; }

/* --- CAPTURA / DOWNSELL --- */
.lead-capture-section { background-color: #111; padding: 80px 20px; text-align: center; margin-top: 50px; border-top: 1px solid #222; }
.form-container { max-width: 550px; margin: 0 auto; }
input { width: 100%; padding: 18px; margin-bottom: 20px; background: #000; border: 1px solid #444; color: #fff; border-radius: 6px; box-sizing: border-box; font-size: 16px; }
button.submit-btn { width: 100%; padding: 18px; background: #D4AF37; color: #000; font-weight: bold; border: none; border-radius: 6px; cursor: pointer; font-size: 18px; transition: background 0.3s; }
button.submit-btn:hover { background: #c5a025; }
#formMessage { margin-top: 20px; font-weight: bold; }

/* --- FOOTER --- */
footer { text-align: center; padding: 50px; font-size: 14px; color: #666; background-color: #000; }

/* --- MODAL --- */
body.modal-open { overflow: hidden; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.3s; }
.modal-overlay.visible { opacity: 1; visibility: visible; }
.modal-content { background: #222; border: 2px solid #D4AF37; padding: 40px; border-radius: 12px; text-align: center; max-width: 450px; box-shadow: 0 0 50px rgba(0,0,0,0.9); }
.modal-close-button { background: #D4AF37; border: none; padding: 12px 35px; margin-top: 25px; font-weight: bold; cursor: pointer; border-radius: 6px; font-size: 16px; }

/* --- AJUSTES ESPECÍFICOS PARA CELULAR (MOBILE) --- */
@media (max-width: 768px) {
  
  .cta-group-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .emotional-headline { font-size: 24px; }
  .story-content p { font-size: 17px; }
  .dialogue-line { font-size: 19px !important; }

  /* Ajustes Hero Mobile */
  .impact-title { font-size: 24px; line-height: 1.2; }
  .impact-subtitle { font-size: 18px; margin-bottom: 15px; }
  .headline-impact-wrapper { margin-bottom: 20px; }
  .hero-text-box { padding: 20px 15px; margin-bottom: 20px; }
  .hero-headline { font-size: 20px; margin-bottom: 10px; }
  .hero-quote { font-size: 16px; margin-bottom: 10px; }
  .hero-body { font-size: 14px; line-height: 1.4; }
  .hero-cta-text { font-size: 16px; margin-top: 5px; }
}