@import url(./base.css);

body {
  background-color: #f2f2f2;
  text-align: center;
  padding-top: 5rem;
}

h1 {
  font-family: var(--fonte01);
  font-weight: bold;
  font-size: 64px;
  line-height: 150%;
  color: #000000;

  margin-top: 5rem;
}

h2 {
  font-family: var(--fonte01);
  font-weight: bold;
  font-size: 64px;
  line-height: 150%;
  color: var(--azul);
}

h3 {
  font-size: 40px;
  font-weight: 500;
  font-family: var(--fonte01);
  line-height: 150%;
}

ul {
  margin: 5rem;
}

li {
  font-size: 28px;
  font-family: var(--fonte03);
  font-weight: 400;
  color: #000000;
}

p {
  font-family: var(--fonte01);
  font-size: 28px;
  font-family: 400;
  line-height: 150%;
  color: #000000;

  margin: 0 4rem;
}

header {
  background-image: url("../src/logo-com-fundo.jpg");
  width: 432px;
  height: 128px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin: 0 auto;
  display: block;
}

.inicio h2 {
  font-family: var(--fonte02);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.inicio p {
  margin-top: 133px;
  margin-bottom: 105px;
}

.antes-do-video h3 {
  margin-bottom: 105px;
}

.topics {
  display: flex;
  justify-content: space-between; /* separa as duas colunas */
  gap: 64px;
}

.topics ul {
  list-style-type: disc;
  text-align: center;
  padding-left: 20px;
}

.topics ul li {
  margin-bottom: 127px;
  line-height: 1.5;
}

.botao-hotmart {
  background-color: var(--laranja);
  color: #fff;
  font-family: var(--fonte02);
  font-size: 40px;
  font-weight: bold;
  border-radius: 30px;
}

.botao-hotmart:hover {
  background-color: var(--laranja-escuro);
  transition: all 0.3s ease-in-out;
}

#btn-hot {
  padding: 30px 50px;
}

.sete-dias {
  padding-bottom: 89px;
}

.sete-dias p:first-of-type {
  color: var(--azul);
  font-weight: bold;
}

.video-intro {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f8f8; /* cor de fundo clara */
}

.video-intro h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.video-intro .topics {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.video-intro ul {
  list-style-type: disc;
  text-align: left;
  line-height: 1.6;
}

.video-intro li {
  margin-bottom: 20px;
}

.video-container {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.video-wrapper {
  position: relative;
  /* padding-bottom: 56.25%; proporção 16:9 */
  height: 605px;
  overflow: hidden;
  width: 1080px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-bottom: 52px;
  margin-left: 10%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Método Jamber */

.background-transicao {
  margin-top: 159px;
  background-image: url("../src/transicao2.png");
  background-size: 100%;
  padding: 0 2rem;
}
.background-transicao h3 {
  color: var(--azul);
  font-family: var(--fonte01);
  font-weight: bold;
  line-height: 150%;
  font-size: 40px;

  margin-bottom: 58px;
}

.background-transicao p {
  text-align: left;
  margin-bottom: 3rem;
}

.background-transicao p:last-of-type {
  margin-bottom: 0;
}

.curso-e-para-voce {
  background-color: var(--cinza);
  padding-top: 10rem;
}

/* O que vai receber no curso */

.receber-curso ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 2rem;
}

.receber-curso li {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-bottom: 7rem;
}

.receber-curso p {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--fonte03);
}

/* Container da oferta */
.oferta {
  background-color: #fff;
  width: 55%;
  margin: 5rem auto; /* centraliza horizontalmente */
  border-radius: 30px;
  display: flex;
  align-items: center; /* centraliza verticalmente o conteúdo */
  justify-content: space-between; /* espaça o preço do botão */
  padding: 20px 30px;
  box-sizing: border-box;
}

/* Bloco do preço */
.preco {
  display: flex;
  flex-direction: column; /* coloca o valor dividido em cima e à vista embaixo */
  justify-content: center;
}

/* Valor dividido (parcelado) */
.valor-dividido {
  display: flex;
  align-items: center; /* alinha número e "por 12x" pela base do texto */
}

.valor-dividido p {
  font-size: 20px;
  line-height: 130%;
  margin-right: 10px;
  margin-bottom: 0;
}

.valor-dividido h4 {
  font-family: var(--fonte01);
  font-weight: bold;
  font-size: 72px;
  margin: 0;
}

/* À vista */
.avista {
  font-size: 16px;
  margin-top: 5px;
}

/* Botão */
.oferta a {
  padding: 10px 40px;
}

.background-transicao2 {
  background-image: url("../src/transicao1.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
}

/* FAQ */

.faq-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "▾";
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* .faq-item.active .faq-question::after {
  transform: rotate(30deg);
} */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 15px 20px;
}

.faq-answer p {
  color: #333;
  line-height: 1.6;
}
