/* ====== HERO / BANNER ====== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&family=Sacramento&display=swap');

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #eeeeef;
}

.hero-banner {
  background-color: #f196a0;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* container de texto */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 1% 6%;
  position: relative;
  z-index: 2; /* garante que o texto fique sobre a imagem */
}


/* lado esquerdo */
.hero-left {
  flex: 0 0 50%;
  z-index: 3;
  position: relative;
}

/* lado direito (imagem cobre a tela inteira no fundo direito) */
.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw; /* cobre metade da tela */
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Autor em manuscrito */
.author {
  font-family: "Sacramento", cursive;
  color: rgba(255,255,255,0.95);
  font-size: 1.90rem;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}


/* TÍTULO PRINCIPAL - linhas grandes em CAPS */
.hero-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 6px 0 25px 0;
  font-size: clamp(32px, 6vw, 60px); /* responsivo */
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* destaque CREME BASE em vermelho */
.hero-title .accent {
  color: #e7462c;
  display: inline-block;
}

/* Pílulas informativas (botões sem ação) */
.pills {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.pill {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #f196a0;
  padding: 9px 17px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 1.1rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

/* Subtexto */
.hero-sub {
  margin: 40px 0 56px 0;
  max-width: 70%;
  color: rgba(255,255,255,0.95);
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.4;
}

/* CTA principal */
.btn-cta {
  display: inline-block;
  background: #ffffff;
  color: #e7462c;
  padding: 16px 80px;
  border-radius: 40px;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.6px;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(231,70,44,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(231,70,44,0.16);
}

/* ====== SEÇÃO SOBRE O EBOOK ====== */
.ebook-section {
  background-color: #eeeeef;
  padding: 60px 0;
  text-align: left;
}

.container-ebook {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.ebook-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 4vw, 60px);
  color: #e7462c;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  padding-right: 200px;
}

.ebook-text {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: #333;
  padding-right: 100px;
  line-height: 1.6;
  margin: 0 auto 60px auto;
}

/* Cards rosa */
.ebook-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}


.ebook-card {
  background-color: #f196a0;
  color: #fff;
  flex: 1 1 300px;
  padding: 10px 23px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* adiciona transição suave */

}

.ebook-card:hover {
  transform: scale(1.05); /* aumenta o tamanho em 5% */
  box-shadow: 0 12px 25px rgba(0,0,0,0.15); /* sombra mais evidente */
  cursor: pointer; /* muda o cursor para indicar interatividade */
}

.ebook-cards .ebook-card:nth-child(2) {
  background-color: #dd6f84;
}

.ebook-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

/* Bônus */
.ebook-bonus {
  font-family: 'Inter', sans-serif;
  color: #e7462c;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.4;
}

.ebook-bonus span {
  display: block;
  font-weight: 300;
  font-size: 1.2rem;
  margin-top: 4px;
}

.ebook-extra {
  background-color: #eeeeef;
}

.container-extra {
    padding-top: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Linha separadora */
.separator {
  width: 60%;
  height: 1px;
  background-color: #e7462c;
  margin: 0 auto 60px auto; /* ← centraliza e mantém espaçamento inferior */
  box-shadow: 0 1px 4px rgba(231,70,44,0.2);
}

/* layout em duas colunas */
.extra-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;
  margin-left: 50px;
}

/* título à esquerda */
.extra-title {
  flex: 1 1 30%;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 4vw, 51px);
  color: #e7462c;
  font-weight: 700;
  padding-right: 27px;
  line-height: 1.2;
  margin: 0;
}

/* texto à direita */
.extra-text {
  flex: 1 1 44%;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #333;
  line-height: 1.4;
}

/* lista */
.extra-text ul {
  margin-top: 12px;
  padding-left: 18px;
}

.extra-text li {
  margin-bottom: 8px;
}

/* negrito para o trecho importante */
.extra-text strong {
  font-weight: 700;
}

/* ====== BOTÃO SECUNDÁRIO ====== */
.btn-cta-secondary {
  display: inline-block;
  background: #e7462c;
  color: #fff;
  padding: 16px 80px;
  border-radius: 40px;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.6px;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(231,70,44,0.2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
  margin: 30px 40px 0 40px;
}

.btn-cta-secondary:hover {
  background: #c23a25;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(231,70,44,0.25);
}

.ebook-uses {
  background-color: #eeeeef;
  padding: 120px 0;
}

.container-uses {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 0 40vh;
}

.uses-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 75px;
}

/* lado esquerdo - imagem */
.uses-image {
  flex: 1 1 48%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.uses-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* lado direito - texto */
.uses-text {
  flex: 1 1 45%;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}

.uses-title {
  font-size: clamp(24px, 4vw, 50px);
  color: #e7462c;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.uses-list {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
}

.ebook-for {
  background-color: #f196a0;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.container-for {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* título */
.for-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
  line-height: 1.2;
}

/* blocos */
.for-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.for-item {
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* adiciona transição suave */
}

.for-item:hover {
  transform: scale(1.05); /* aumenta o tamanho em 5% */
  box-shadow: 0 12px 25px rgba(0,0,0,0.15); /* sombra mais evidente */
  cursor: pointer; /* muda o cursor para indicar interatividade */
}

.for-item p {
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}

/* variações de cor */
.for-item.white {
  background-color: #fff;
  color: #e7462c;
}

.for-item.pink {
  background-color: #dd6f84;
  color: #fff;
}

/* botão dentro da seção */
.ebook-for .btn-cta-secondary {
  background: #e7462c;
  color: #ffffff;
  padding: 16px 70px;
  font-size: 20px;
  margin-top: 20px;
}

.ebook-for .btn-cta-secondary:hover {
  background: #cf0606;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,255,255,0.25);
}

.ebook-access {
  background: #eeeeef;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.access-box {
  background-color: #e7462c;
  color: #fff;
  border-radius: 24px;
  max-width: 1200px;
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 67px 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
}

/* Lado esquerdo */
.access-left {
  flex: 1 1 50%;
  text-align: left;
  padding-left: 80px;
}

.access-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 28px;
}

.access-subtitle {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.access-text {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Lado direito */
.access-right {
  flex: 1 1 45%;
  text-align: center;
  position: relative;
}

/* imagem do ebook */
.ebook-cover {
  width: 80%;
  max-width: 300px;
  margin-top: -100px; /* faz a imagem “passar” um pouco acima do retângulo */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* caixa de preços */
.price-box {
  margin: 30px 0 20px 0;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.price-box p {
  margin: 4px 0;
}

.old-price {
  font-size: 1.1rem;
  opacity: 0.85;
  text-decoration: line-through;
  padding-bottom: 5px;
}

.new-price {
  font-size: 1.1rem;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.installments {
  font-size: 2rem;
  font-weight: 700;
}

.cash-price {
  font-size: 1.2rem;
  margin-top: 4px;
  font-weight: 300;
}

/* botão dentro da seção */
.access-right .btn-cta-secondary {
  background: #fff;
  color: #e7462c;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 40px;
  margin-top: 20px;
}

.access-right .btn-cta-secondary:hover {
  background: #f7f7f7;
}

.about-maira {
  background-color: #f8f8f8; /* fundo claro */
  padding: 120px 0;
}

.container-maira {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* lado esquerdo - foto */
.maira-photo {
  flex: 1 1 40%;
  text-align: center;
}

.maira-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* lado direito - texto */
.maira-text {
  flex: 1 1 55%;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}

.maira-title {
  font-family: 'Sacramento', cursive;
  font-size: clamp(36px, 6vw, 60px);
  color: #e7462c;
  margin-bottom: 20px;
}

.maira-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
  text-align: justify;
}

.faq-section {
  background-color: #f196a0;
  padding: 100px 0;
  color: #fff;
}

.container-faq {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* cabeçalho */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  margin-left: 60px;
  margin-right: 50px;
}

/* lado esquerdo */
.faq-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 520px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;

}

/* lado direito - bloco do whatsapp */
.faq-whatsapp {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #e7462c;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
    text-decoration: none; 
}

.faq-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.25);
    text-decoration: none;

}

.faq-whatsapp img {
  width: 38px;
  height: 38px;
}

.faq-whatsapp-text strong {
  display: block;
  font-size: 1.15rem;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.faq-whatsapp-text span {
  font-size: 0.95rem;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding-top: 5px;
}

/* perguntas */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 70%;              /* largura reduzida */
  margin: 0 auto;          /* centraliza horizontalmente */
  align-items: stretch;    /* garante que os botões preencham 100% dentro da área */
}

/* garante que cada pergunta (e resposta) acompanhe a largura central */
.faq-item {
  width: 100%;
}

/* pergunta (botão) */
.faq-question {
  width: 100%;
  background-color: #e7462c;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 20px 30px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

/* resposta */
.faq-answer {
  background-color: #f196a0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0 22px;
  max-height: 0;
  font-weight: 300;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;

}

.faq-answer p {
  margin: 14px 0;
}

/* estado ativo */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 14px 22px 20px;
}

.disclaimer {
  text-align: center;
  color: #fff;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 80px auto 0 auto; /* espaço acima e centralizado */
  opacity: 0.9;
}

.disclaimer p:first-child {
  font-weight: 600;
  margin-bottom: 14px;
}

.disclaimer p:last-child {
  font-weight: 300;
  font-size: 0.9rem;
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 768px) {

  /* HERO */
   .hero-banner {
    flex-direction: column;
    height: auto;
    padding: 0; /* remove espaçamentos extras */
  }

.hero-right {
    position: relative;
    order: -1;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* cobre toda a área */
    object-position: center;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0; 
  }

  .hero-left {
    flex: 1 1 100%;
    z-index: 2;
    padding-left: 40px;
    padding-top: 30px;
    padding-right: 40px;
  }

 .hero-title {
    font-size: 4.1vh;
 }

  .hero-sub {
    max-width: 100%;
    font-size: 1.3rem;
    margin: 40px 0 50px 0;
  }

  .author {
    font-size: 3.5vh;
  }

  .pills {
    flex-wrap: nowrap;
  }

  .pill {
    padding: 7px 10px;
    border-radius: 10px;
    text-align: center;
  }

  .btn-cta {
    padding: 14px 36px;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
  }

  /* SEÇÃO EBOOK */
  .ebook-title {
    font-size: 4vh;
    padding-right: 12px;
    padding-left: 10px;
  }  

    .ebook-title br {
    display: none;      
    }

  .ebook-text {
    padding-right: 12px;
    padding-left: 10px;
    text-align: left;
    font-size: 2.1vh;
  }

  .ebook-cards {
    flex-direction: column;
    align-items: center;
  }

  .ebook-card {
    width: 90%;
    flex: 1 1 100px;
    padding-right: 20px;
  }

  .ebook-bonus {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .ebook-section {
    padding: 30px 0;
  }

  .for-item {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 15px rgba(0,0,0,0.08); }
  50% { box-shadow: 0 12px 25px rgba(0,0,0,0.12); }
}

  /* EXTRA */
  .extra-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-left: 0;
    gap: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-extra {
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza o botão e os elementos do centro */
  text-align: left; /* mantém o texto à esquerda */
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

  .extra-title {
    font-size: 4vh;
  }

  .extra-text {
  width: 100%;
  max-width: 600px;
  }
  
  .extra-text .btn-cta-secondary {
  display: block;
  text-align: center;
  margin-top: 60px;
  font-size: 2vh;
}

  .btn-cta-secondary {
  padding: 14px 46px;
  font-size: 1rem;
  display: inline-block;
  margin-top: 20px; /* só pra dar espaço do conteúdo acima */
  }

  /* USOS */
  .container-uses {
    margin: 0 auto;
  }

  html, body {
  overflow-x: hidden;
}

  .uses-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    flex-wrap: nowrap;
  }

  .uses-image {
    width: 37vh;
  }

  .uses-title {
    font-size: 4vh;
  }

  .uses-text {
    width: 100%;
    text-align: left;
    padding-left: 70px;
    padding-right: 10px;
  }

  .uses-list {
    font-size: 2vh;
  }

  .container-for {
    width: 85%;
     display: flex;
  flex-direction: column;
  align-items: center; /* centraliza horizontalmente */
  justify-content: center; /* se quiser centralizar verticalmente também */ 
  }

  .ebook-uses {
    padding: 80px 0;
  }

  .ebook-for {
    padding: 80px 0;
  }

  .for-item p {
    font-size: 2vh;
  }

  .for-title {
    font-size: 4vh;
    text-align: left;
  }

.ebook-for .btn-cta-secondary {
    padding: 14px 46px;
    font-size: 1rem;
    margin: 20px auto 0;
    display: inline-block;
     display: block;
  text-align: center;
  margin-top: 60px;
  font-size: 2vh; 
}    
  .access-box {
    flex-direction: column-reverse; /* inverte a ordem no mobile */
    align-items: center;
    width: 80%;
    padding: 40px 20px;
  }

  .access-right .btn-cta-secondary {
    padding: 14px 40px;
    font-size: 1rem;
    margin: 20px 27px 0;
    display: inline-block;
  }

  .access-left {
    padding: 0 10px;
    text-align: left; /* centraliza o texto abaixo da imagem */
    padding-left: 20px;
  }

  .access-title {
    font-size: 4vh;
  }

  .access-text {
    font-size: 1.9vh;
  }

  .access-right {
    text-align: center;
  }

  .ebook-cover {
    margin-top: 0;
    max-width: 220px;
  }

  /* MAÍRA */
  .container-maira {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .maira-title {
    text-align: left;
  }

  .maira-photo img {
    max-width: 300px;
  }

  .maira-text {
    flex: 1 1 100%;
    padding-left: 20px;
    padding-right: 20px ;
  }

  .maira-text p {
    text-align: left;
    font-size: 1rem;
  }

  /* FAQ */
    .container-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-section {
    padding: 20px 0;
  }

  .faq-left {
    order: 1;
    padding-left: 20px;
    padding-right: 20px;
  }

   .faq-right {
    padding-top: 20px;
    padding-right: 20px;
    order: 3;
  }

  .faq-title {
    font-size: 4vh;
    text-align: left;
    }

    .faq-subtitle {
    font-size: 2vh;
    text-align: left;
    }

  .faq-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 40px;
  }

  .faq-whatsapp {
    flex-direction: column;
    background:#dd6f84;
    gap: 8px;
    width: 90%;
  }

  .faq-items {
    width: 90%;
    order:2;
    display: flex;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .faq-answer {
    font-size: 1rem;
  }

  /* DISCLAIMER */
  .disclaimer {
    max-width: 85%;
    font-size: 0.8rem;
    margin: 60px auto 0;
    padding: 20px 20px;
  }

  .disclaimer p:last-child {
        max-width: 85%;
    font-size: 0.8rem;
  }
}
  /* animação inicial */
  .fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  /* quando a seção estiver visível */
  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (min-width: 769px) and (max-width: 1024px) {

  /* HERO */
  .hero-banner {
    flex-direction: row;
    height: 80vh; /* evita corte excessivo */
  }

  .hero-inner {
    padding: 0;
  }

  .hero-left {
    flex: 0 0 20%;
    padding-left: 20px;
    padding-bottom:20px ;
  }

  .container-uses {
    width: 90%;
    margin: 0 auto;
  }

  .uses-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  /* Imagem ocupa toda a largura */
  .uses-image {
    flex: 1 1 100%;
    width: 100%;
    max-width: 700px;
  }

  /* Texto agora vira duas colunas: título e lista lado a lado */
  .uses-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 40px;
    flex-wrap: wrap;
  }

  .uses-title {
    flex: 1 1 45%;
    font-size: 2rem;
    text-align: right;
  }

  .uses-list {
    flex: 1 1 45%;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .hero-right {
    position: absolute;
    right: 0;
    width: 45vw;
    height: 100%;
  }

  .hero-left {
    flex: 0 0 55%;
    padding: 40px;
  }

  .hero-title {
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 1.1rem;
    max-width: 90%;
  }

  .btn-cta {
    padding: 14px 50px;
    font-size: 1.1rem;
  }

  /* EXTRA */
  .extra-content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 0;
    text-align: center;
  }

  .extra-title, .extra-text {
    flex: 1 1 100%;
    padding: 0 30px;
    text-align: left;

  }

  /* CONTAINERS GERAIS */
  .container-extra,
  .container-uses,
  .container-ebook,
  .container-maira,
  .container-faq {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* EBOOK CARDS */
  .ebook-cards {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ebook-card {
    flex: 1 1 45%;
    padding: 20px;
  }

  /* ABOUT MAIRA */
  .container-maira {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .maira-text {
    max-width: 85%;
  }

  .faq-header  {
    align-items: center;
  }
}

a.hotmart-fb.hotmart__button-checkout.btn-cta {
  background-color: #f68b1e !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  border-radius: 8px !important;
  padding: 16px 32px !important;
  display: inline-block !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: none !important;
}

a.hotmart-fb.hotmart__button-checkout.btn-cta:hover {
  background-color: #d97706 !important;
  transform: scale(1.03) !important;
  color: #fff !important;
}

.btn-instagram {
  color: #dd6f84; /* rosa da paleta */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-instagram:hover {
  color: #e7462c; /* tom mais intenso no hover */
  text-decoration: underline;
}