/* ======== BASE ======== */
body {
  font-family: Arial, sans-serif;
  background-color: #eaf2f8;
  color: #2c3e50;
  margin: 0;
  padding: 20px;
  background-image: url('images/ceu.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: white; /* se for fundo branco */
}


/* ======== QUIZ CONTAINER ======== */
.quiz-container {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.question {
  font-size: 20px;
  margin-bottom: 10px;
}

.logo-nome {
  font-size: px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}


.options button {
  display: block;
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  border: none;
  background-color: #2980b9;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.options button:hover {
  background-color: #05ad59;
}

.progress {
  margin: 20px 0;
  height: 10px;
  background: #ccc;
  border-radius: 5px;
}

.progress-bar {
  height: 8px;
  background-color: #27ae60;
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}


.price-box {
  background: #fff3f3;
  border: 2px dashed #20c711;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  color: #37dd15;
  font-weight: bold;
  margin-top: 20px;
}

.timer {
  position: absolute;
  top: 10px;
  font-size: 14px;
  color: #e74c3c;
  background-color: #fff3f3;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* ======== RESULTADO FINAL ======== */
.resultado-final-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.resultado-final-container h2 {
  font-size: 26px;
  color: #2980b9;
  margin-bottom: 15px;
}

.mensagem-destacada {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #34495e;
}

.bloco-transformacao {
  background-color: #ecf0f1;
  border-left: 4px solid #27ae60;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: left;
}

.bloco-transformacao h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.mockup-ebook {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}



/* ======== COMPARATIVO DE OFERTA ======== */
.comparativo-box {
  background-color: #ffffff;
  border: 2px solid #2980b9;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 800px;
}

.comparativo-box h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #2c3e50;
}

.comparativo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.lado {
  flex: 1 1 300px;
  background: #ecf0f1;
  padding: 20px;
  border-radius: 10px;
  min-height: 280px;
  box-sizing: border-box;
}

.lado h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.lado ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.lado ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.lado.negativo {
  background-color: #fdecea;
  border-left: 5px solid #e74c3c;
}

.lado.positivo {
  background-color: #e8f8f5;
  border-left: 5px solid #27ae60;
}

/* ======== BOTÃO CTA UNIFICADO ======== */
.cta-button {
  background-color: #27ae60;
  color: rgb(239, 239, 239);
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin: 15px auto;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 80%;
  width: 300px;
}

.cta-button:hover {
  background-color: #219150;
}


/* ======== COMENTÁRIOS ======== */
.fb-comments img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.fb-comments div {
  margin-bottom: 10px;
}

/* ======== MODAL ======== */
#promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  text-align: center;
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
}

.modal-content h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ======== FOOTER ======== */
footer {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  color: #7f8c8d;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .comparativo-container {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
    font-size: 16px;
  }

  .timer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .quiz-container,
  .resultado-final-container,
  .comparativo-box {
    padding: 15px;
  }
}

.faq-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
  text-align: center;
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border-left: 4px solid #2980b9;
  padding-left: 15px;
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #34495e;
}

.faq-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Adicionando estilos para botões */
button {
  max-width: 100%; /* Garante que o botão não ultrapasse o contêiner */
  width: auto; /* Ajusta automaticamente ao conteúdo */
  padding: 10px 20px; /* Espaçamento interno */
  box-sizing: border-box; /* Inclui padding e bordas no tamanho total */
  font-size: 16px; /* Tamanho da fonte ajustável */
  border: none; /* Remove bordas padrão */
  border-radius: 5px; /* Bordas arredondadas */
  background-color: #2980b9; /* Cor de fundo */
  color: white; /* Cor do texto */
  cursor: pointer; /* Cursor de ponteiro ao passar o mouse */
}

button:hover {
  background-color: #1f6391; /* Cor de fundo ao passar o mouse */
}

@media (max-width: 768px) {
  button {
    width: 100%; /* Em telas menores, o botão ocupa toda a largura do contêiner */
    font-size: 14px; /* Reduz o tamanho da fonte para telas pequenas */
  }
}

.resultado-final-ocontainer {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

