/* ===================================
   SÃO JOÃO LUCRATIVO - SESSÃO 1
   =================================== */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #110515;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block; /* Block layout so sections stack properly full-width */
}

/* === TOP BANNER === */
.top-banner {
  width: 100%;
  background-color: #1a9e40;
  text-align: center;
  padding: 12px 10px;
}

.banner-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.check-icon {
  background-color: #fff;
  color: #1a9e40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  font-size: 0.8rem;
}

.banner-subtitle {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* === HERO SECTION === */
.hero-sao-joao {
  width: 100%;
  background-color: #110515;
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Inner content wrapper for max-width control */
.hero-sao-joao > * {
  max-width: 480px;
  width: 100%;
}

/* The ebooks image can be wider */
.hero-sao-joao .ebooks-bundle {
  max-width: 480px;
}

.main-title {
  color: #ff579a; /* Rosa vibrante */
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 10px rgba(255, 87, 154, 0.2);
}

.main-subtitle {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 35px;
}

/* === EBOOKS BUNDLE === */
.ebooks-bundle {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.ebooks-bundle img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

/* === SOCIAL PROOF (FACES) === */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.students-faces {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.faces-img {
  width: 140px;
  height: auto;
  margin-bottom: 5px;
}

.students-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

/* === ANIMAÇÃO PULSE DO BOTÃO === */
@keyframes btn-pulse {
  0%   { box-shadow: 0 4px 0 #288f29, 0 0 0 0 rgba(57, 192, 59, 0.7); }
  50%  { box-shadow: 0 4px 0 #288f29, 0 0 0 14px rgba(57, 192, 59, 0); }
  100% { box-shadow: 0 4px 0 #288f29, 0 0 0 0 rgba(57, 192, 59, 0); }
}

@keyframes btn-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-4px); }
  40%       { transform: translateX(4px); }
  60%       { transform: translateX(-3px); }
  80%       { transform: translateX(3px); }
}

/* === CALL TO ACTION === */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  background-color: #39c03b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  padding: 22px 10px;
  border-radius: 18px;
  text-decoration: none;
  margin-bottom: 25px;
  box-shadow: 0 4px 0 #288f29;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  animation: btn-pulse 2s ease-in-out infinite;
  cursor: pointer;
}

.btn-buy:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 8px 0 #288f29, 0 0 20px rgba(57, 192, 59, 0.5);
  animation: btn-shake 0.4s ease;
}

.btn-buy:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #288f29;
  animation: none;
}

/* === SECURITY BADGES === */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-item .icon {
  font-size: 1.2rem;
  filter: grayscale(100%) brightness(200%); /* Deixa os emojis com aspecto branco/clean */
}

.badge-text {
  font-size: 0.65rem;
  line-height: 1.1;
  text-align: left;
  color: #fff;
}

.badge-text strong {
  font-weight: 700;
}

/* === COMPRA SEGURA IMAGE === */
.comprasegura-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
}

/* === 6 MOTIVOS SECTION === */
.section-motivos {
  width: 100%;
  background-color: #f73671;
  padding: 40px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.motivos-title {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  max-width: 440px;
}

.motivos-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 480px;
}

/* Em desktop, se a tela for maior, mostrar em grid 3x2, mas o foco é mobile */
@media (min-width: 768px) {
  .section-motivos {
    padding: 60px 40px;
  }
  .motivos-grid {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.motivo-card {
  background-color: #6a1033; /* Fundo vinho/escuro dos cards */
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.motivo-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.12);
  border-radius: 16px;
}

.motivo-card-title {
  color: #fce38a; /* Amarelo/dourado dos títulos */
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.motivo-card-text {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.5;
}

.motivo-card-text strong {
  font-weight: 800;
}

/* === O QUE VOCÊ VAI APRENDER SECTION === */
.section-aprender-sao-joao {
  width: 100%;
  background-color: #6a1033;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aprender-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
}

.text-gold {
  color: #fce38a; /* Amarelo/dourado */
}

.aprender-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 480px;
}

@media (min-width: 768px) {
  .aprender-grid {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }
}

.modulo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modulo-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modulo-title {
  color: #fce38a;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

.modulo-desc {
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 90%;
}

.modulo-list {
  list-style: none;
  width: 100%;
  padding-left: 20px; /* Alinhamento da lista mais centralizado/indente */
}

.modulo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.list-icon {
  font-size: 1rem;
}

.star-icon {
  font-size: 1rem;
}

/* === PREÇO PROMOCIONAL SECTION === */
.section-oferta-final {
  width: 100%;
  background-color: #110515;
  padding: 50px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-oferta-final .btn-buy,
.section-oferta-final .security-badges,
.section-oferta-final .oferta-checklist {
  max-width: 480px;
  width: 100%;
}

.oferta-title-main {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.text-white { color: #fff; }
.text-pink { color: #ff3b7c; }

.oferta-subtitle {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 40px;
}

.oferta-de-por {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.text-pink-strike {
  color: #ff3b7c;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

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

.price-prefix {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-value {
  background-color: #ff3b7c;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  padding: 0 10px;
  line-height: 1.1;
}

.oferta-vista {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.text-green {
  color: #3bc13a;
}

.btn-buy-border {
  border: 4px solid #1a3318; /* Borda grossa escura como na imagem */
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Remove a sombra verde claro que tinha e coloca preta */
  padding: 20px 10px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.btn-buy-border:active {
  box-shadow: 0 0 0 transparent;
}

/* === DEPOIMENTOS SECTION === */
.section-depoimentos-novo {
  width: 100%;
  background-color: #f73671;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.depoimentos-title-novo {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.comentarios-box {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-main, .comment-reply {
  display: flex;
  gap: 12px;
}

.comment-reply {
  padding-left: 48px; /* Recuo para as respostas */
  margin-top: 8px;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.avatar-small {
  width: 28px;
  height: 28px;
}

.comment-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.comment-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f0f0f;
}

.comment-time {
  font-size: 0.75rem;
  color: #606060;
}

.comment-text {
  font-size: 0.9rem;
  color: #0f0f0f;
  line-height: 1.4;
  margin-bottom: 8px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  font-size: 0.75rem;
  color: #606060;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.text-reply {
  font-weight: 600;
}
.text-reply:hover {
  text-decoration: underline;
}

/* === BÔNUS SECTION === */
.section-bonus {
  width: 100%;
  background-color: #110515;
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-title-main {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 500px;
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 480px;
}

@media (min-width: 768px) {
  .bonus-grid {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 60px;
  }
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.bonus-title {
  color: #ff3b7c; /* Rosa */
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.25;
}

.bonus-desc {
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}

.text-red-strike {
  color: #ff3b7c;
  text-decoration: line-through;
}

.bg-green-text {
  background-color: #3bc13a;
  color: #fff;
  font-weight: 800;
  padding: 0 4px;
}

/* === CERTIFICADO SECTION === */
.section-certificado {
  width: 100%;
  background-color: #110515;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificado-title {
  color: #ff3b7c;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

.certificado-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 30px;
}

.social-proof-cert {
  margin-bottom: 0;
}

/* === OFERTA CHECKLIST === */
.oferta-checklist {
  list-style: none;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 10px;
  padding: 0;
}

.oferta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: left;
}

.check-icon-pink {
  background-color: #ff3b7c;
  color: #110515;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* === PROFESSORA SECTION === */
.section-professora {
  width: 100%;
  background-color: #ffffff; /* Fundo branco */
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.professora-img-wrapper {
  margin-bottom: 25px;
}

.professora-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff3b7c; /* Borda rosa */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.professora-title {
  color: #110515; /* Cor escura do texto */
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.professora-content {
  max-width: 600px;
  color: #333; /* Cinza escuro para melhor leitura */
  font-size: 1.05rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.professora-content strong {
  font-weight: 800;
  color: #000;
}

/* === GARANTIA SECTION === */
.section-garantia {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.garantia-img {
  width: 180px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
}

.garantia-title {
  color: #110515;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.garantia-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 600px;
}

.garantia-text strong {
  color: #000;
  font-weight: 800;
}

/* === VAGAS LIMITADAS SECTION === */
.section-vagas {
  width: 100%;
  background-color: #8b1509; /* Vermelho escuro */
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vagas-icon {
  font-size: 3rem;
  color: #f39c12; /* Amarelo/Ouro */
  margin-bottom: 15px;
}

.vagas-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.vagas-alert-box {
  border: 2px dashed #ffffff;
  padding: 20px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
}

.vagas-alert-box p {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.vagas-progress-container {
  width: 100%;
  max-width: 600px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.vagas-progress-bar {
  height: 100%;
  background-color: #d49516; /* Laranja/Dourado */
  display: flex;
  align-items: center;
  justify-content: center;
}

.vagas-progress-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
}

.vagas-warning {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 500px;
}

.vagas-cta-text {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* === FAQ SECTION === */
.section-faq {
  width: 100%;
  background-color: #f6b953; /* Amarelo/Laranja */
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  color: #110515;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.faq-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #f8f9fa; /* Branco meio off-white */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #110515;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.faq-icon {
  color: #8b1509; /* Cor das cruzinhas da imagem */
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f8f9fa;
  padding: 0 20px;
}

.faq-answer p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Suficiente para o texto expandir */
}
