* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 60px;
}

.content {
  flex: 1;
  padding-right: 40px;
}

.book-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.book {
  width: 350px;
  height: auto;
  /*box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);*/
}

h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #222;
}

.highlight {
  color: #1e50a0;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.cta-button {
  display: inline-block;
  background-color: #f05a28;
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d94d1f;
}

/* Estilos para a seção de benefícios */
.benefits-section {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.3;
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-card {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  /*width: 80px;
  height: 80px;*/
  margin-bottom: 20px;
}

.feature-title {
  color: #f05a28;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.bold-text {
  font-weight: bold;
}

/* Estilos para a seção de público-alvo */
.target-audience-section {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.audience-description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/*.audience-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 5px;
  padding: 15px 20px;
  text-align: left;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}*/

.audience-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 5px;
  padding: 15px 20px;
  text-align: left;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.check-icon {
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 18px;
  height: 18px;
}

.audience-text {
  font-size: 18px;
  line-height: 1.4;
}

.audience-cta {
  background-color: #f05a28;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.audience-cta:hover {
  background-color: #d94d1f;
}

@media (max-width: 768px) {
  .hero-container {
      flex-direction: column-reverse;
      text-align: center;
  }
  
  .content {
      padding-right: 0;
      margin-top: 30px;
  }
  
  .book-image {
      justify-content: center;
      margin-bottom: 30px;
  }
  
  .book {
      width: 250px;
  }
  
  .features-container {
      flex-direction: column;
  }
  
  .feature-card {
      margin-bottom: 20px;
  }
  
  .main-title {
      font-size: 28px;
  }
  
  .audience-item {
      padding: 12px 15px;
  }
  
  .audience-text {
      font-size: 16px;
  }
}

/* Estilos para a seção de insights do eBook */
.ebook-insights-section {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.insights-description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}

.insight-card {
  background-color: white;
  border-radius: 5px;
  padding: 25px;
  text-align: left;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.insight-number {
  color: #ff4500;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.insight-title {
  color: #ff4500;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.insight-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0;
}

.insights-cta {
  background-color: #f05a28;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.insights-cta:hover {
  background-color: #d94d1f;
}

@media (max-width: 992px) {
  .insights-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .insights-grid {
      grid-template-columns: 1fr;
  }
  
  .insight-card {
      padding: 20px;
  }
  
  .insight-title {
      font-size: 18px;
  }
}

/* Estilos para a seção de oferta exclusiva */
.offer-section {
  width: 100%;
  background: linear-gradient(135deg, #663399 0%, #ff4500 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.offer-container {
  max-width: 800px;
  margin: 0 auto;
}

.offer-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.offer-description {
  font-size: 20px;
  line-height: 1.6;
  color: white;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-price-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 40px;
}

.original-price {
  font-size: 22px;
  color: #666;
  margin-bottom: 10px;
}

.current-price {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff4500;
  font-weight: bold;
}

.price-value {
  font-size: 48px;
  display: block;
  margin-top: 5px;
}

.limited-offer {
  font-size: 16px;
  color: #ff4500;
  margin-bottom: 0;
}

.offer-cta-button {
  display: inline-block;
  background-color: #2ecc71;
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 30px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.offer-cta-button:hover {
  background-color: #27ae60;
  transform: translateY(-3px);
}

.money-back {
  font-size: 18px;
  color: white;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .offer-title {
      font-size: 36px;
  }
  
  .offer-description {
      font-size: 18px;
  }
  
  .price-value {
      font-size: 40px;
  }
  
  .offer-cta-button {
      font-size: 18px;
      padding: 15px 30px;
      width: 90%;
  }
}

/* Estilos para a seção de garantia */
.guarantee-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 60px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.guarantee-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 32px;
  font-weight: bold;
  color: #1e50a0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.guarantee-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.guarantee-tagline {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.guarantee-button {
  display: inline-block;
  background-color: #f05a28;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.guarantee-button:hover {
  background-color: #d94d1f;
}

.guarantee-seal {
  flex: 0 0 auto;
  max-width: 200px;
}

.seal-image {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .guarantee-container {
      flex-direction: column-reverse;
      text-align: center;
  }
  
  .guarantee-title {
      font-size: 28px;
  }
  
  .guarantee-seal {
      margin-bottom: 30px;
  }
}

/* Estilos para a seção de Perguntas Frequentes */
.faq-section {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.faq-title {
  font-size: 42px;
  font-weight: bold;
  color: #1e50a0;
  text-align: center;
  margin-bottom: 15px;
}

.faq-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.faq-emphasis {
  font-style: italic;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.question-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #f05a28;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.question-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.faq-answer {
  padding: 0 20px 20px 67px;
  display: none;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Classe para quando o item está ativo/aberto */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .question-icon svg {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .faq-title {
      font-size: 32px;
  }
  
  .faq-subtitle {
      font-size: 18px;
  }
  
  .faq-question {
      font-size: 16px;
      padding: 15px;
  }
  
  .question-icon {
      width: 28px;
      height: 28px;
  }
  
  .faq-answer {
      padding: 0 15px 15px 58px;
  }
}

/* Estilos para o rodapé */
.footer {
  width: 100%;
  padding: 40px 20px;
  background-color: #f9f9f9;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.copyright {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-link {
  color: #1e50a0;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0e3b7d;
  text-decoration: underline;
}

.footer-separator {
  color: #1e50a0;
}

@media (max-width: 768px) {
  .footer {
      padding: 30px 20px;
  }
  
  .copyright {
      font-size: 14px;
  }
  
  .footer-link {
      font-size: 14px;
  }
}

/* Whatsapp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #20b954;
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-text {
  font-size: 16px;
}

@media (max-width: 420px) {
  .whatsapp-button {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-text {
    display: none;
  }
}
