/* Importando fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #4CAF50;
    --secondary-color: #FF9800;
    --text-color: #333;
    --bg-color: #f4f4f4;
    --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-width: 327px;
    text-align: center;
}

header {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

h1, h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

ul {
  list-style: none;
  /*padding: 0; */
  padding-left: 5px; /* Ajusta o recuo da lista */
  list-style-position: inside; /* Faz os marcadores ficarem alinhados com o texto */
}

ul li {
  background: var(--primary-color);
  color: var(--white);
  margin: 10px auto;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  text-align: justify;
}

ul li:hover {
  background: #388E3C;
  transform: scale(1.05);
}

p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  padding: 0 18px;
  margin: auto 5px;
}

.ebook-infos img {
    width: 250px;
    max-width: 100%;
    margin-top: 80px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 50px;
    margin: 40px auto;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e68900;
    transform: scale(1.05);
}

.menu-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  margin-left: 10px;
  transition: background 0.3s ease;
}

.menu-button:hover {
  background-color: #388E3C;
}


.faq {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
.faq-item {
  background: var(--primary-color);
  margin: 10px 0;
  padding: 15px;
  padding-left: 20px;
  list-style-position: inside; /* Faz os marcadores ficarem alinhados com o texto */
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.faq-item:hover {
  background: #388E3C;
  transform: scale(1.05);
}
.faq-question {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--white);
  text-align: justify;
}
.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}
.faq-question::after {
  content: '\25BC';
  margin-left: auto;
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #f9f9f9;
}
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.fa-question {
  color: red;
  margin: auto 20px;

}

.fa-regular {
  margin: 5px auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-button-bottom {
  padding: 25px 40px;
  width: 75%;
  background-color: var(--primary-color);
}

.cta-button-bottom:hover {

  background: #388E3C;
}

.infos {
    background: var(--white);
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;

}


footer {
    background: var(--text-color);
    color: var(--white);
    padding: 20px;
    margin-top: 40px;
}
