/* Reset e Estilos Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Botões - Revised */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 8px;
  height: auto;
  min-height: 44px;
  text-align: center;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

}

.btn-primary {
  background-color: #e74c3c;
  color: white;
  border: 2px solid #e74c3c;
  min-width: 200px;
  flex-basis: 1000px;
}

.btn-primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  min-width: 150px;
  flex-basis: 200px;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Cabeçalho */
header {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 5px solid #e74c3c;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header h1 span {
  color: #f1c40f;
}

header h2 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 30px;
}

/* Seção Destaque */
.destaque {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: white;
  display: flex;
  justify-content: center;
}

.book-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  font-size: 1.2rem;
}

.book-container h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
  border-bottom: 3px solid #e74c3c;
  padding-bottom: 15px;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: justify;
}

.book-container h2 {
  color: #3498db;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.highlight {
  background-color: #fffde7;
  padding: 15px;
  border-left: 4px solid #f1c40f;
  margin: 20px 0;
}

.highlight p {
  margin-bottom: 10px;
}

ol {
  padding-left: 20px;
}

.checklist {
  list-style-type: none;
  padding-left: 0;
}

.checklist li:before {
  content: "✓ ";
  color: #27ae60;
  font-weight: bold;
}

.features {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.cta {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #e74c3c;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Seção do Autor */
.author-section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-size: 1.2rem;
}

.author-section {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.struggle-list {
  background-color: #f8f9fa;
  padding: 20px 30px;
  border-radius: 8px;
  margin: 25px 0;
  list-style-type: none;
}

.struggle-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.struggle-list li:before {
  content: "•";
  color: #e74c3c;
  font-weight: bold;
  position: absolute;
  left: 10px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.achievement-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 3px solid #e74c3c;
}

.achievement-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.achievement-title {
  margin-top: 0;
  color: #2c3e50;
}

.achievement-desc {
  color: #7f8c8d;
}

.cta-box {
  text-align: center;
  background-color: #f1c40f;
  padding: 30px;
  border-radius: 8px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Seção Depoimentos */
.depoimentos-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-size: 1.2rem;
}

.depoimentos-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-size: 1.2rem;
  padding: 0 20px; /* Added side padding */
}

.depoimento-container {
  margin-top: 30px;
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 60px;
  width: 100%; /* Ensure it takes full width */
  padding: 0 20px; /* Added side padding */
  box-sizing: border-box; /* Include padding in width calculation */
}

.depoimento-container h2 {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  padding: 0 15px; /* Added padding to prevent text from touching edges */
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
  gap: 20px; /* Added gap between testimonials */
}

.depoimento {
  background-color: #f9f9f9;
  padding: 25px;
  margin: 0 0 10px 30px; /* Adjusted margins */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.avaliacao {
  color: #f1c40f;
  margin-bottom: 15px;
}

.depoimento p {
  font-style: italic;
  margin-bottom: 15px;
}

.autor {
  font-weight: bold;
  color: #7f8c8d;
}

/* Seção Compra */
.compra {
  padding: 60px 0;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
}

.compra-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #333;
  text-align: center;
}

.compra-card h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.preco {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 10px;
}

.preco-antigo {
  font-size: 1.5rem;
  color: #95a5a6;
  text-decoration: line-through;
}

.promocao {
  color: #e74c3c;
  font-weight: bold;
  margin-bottom: 20px;
}

.vantagens {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.vantagens li {
  margin-bottom: 10px;
}

.vantagens i {
  color: #27ae60;
  margin-right: 10px;
}

.seguranca {
  margin-top: 20px;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.seguranca i {
  margin-right: 5px;
}

/* Rodapé */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 30px 0;
  text-align: center;
  display: flex;
}

footer p {
  margin-bottom: 15px;
}

.links {
  display: flex;
  justify-content: space-around;
}

.links a {
  color: #ecf0f1;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

/* LINKS */
.cta a {
  color: inherit;
  text-decoration: none;
}

.cta-button a {
  color: inherit;
  text-decoration: none;
}

/* Media Queries */
@media only screen and (max-width: 900px) {
  header {
    padding: 40px 0 30px;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header h2 {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
      flex-wrap: wrap;
  }

  .btn {
    width: 100% !important;
    max-width: 280px !important;
    margin: 4px 0 !important;
    padding: 10px 15px !important;
    flex: none !important;
  }

  .book-container {
    padding: 0 15px;
  }
  
  .book-container h1 {
    font-size: 1.8rem;
  }
  
  .intro {
    font-size: 1rem;
  }
  
  .author-section {
    padding: 0 15px;
  }
  
  .achievement-grid {
    grid-template-columns: 1fr;
  }
  
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  
  
  .compra-card {
    padding: 20px;
    margin: 0 15px;
  }
  
  .preco {
    font-size: 2rem;
  }
  
  .links {
    flex-direction: column;
    gap: 10px;
  }
  
  .highlight, .features, .cta {
    margin-left: 10px;
    margin-right: 10px;
  }

  .depoimento-container h2 {
    padding: 0 10px;
    font-size: 1.5rem; /* Slightly larger text for mobile */
  }
  
  .depoimento {
    margin: 0 0 20px; /* Remove side margins on mobile */
    padding: 20px 15px; /* Adjust padding for mobile */
  }
}