/* ---
   STYLE.CSS (Arquivo Completo)
   Contém todos os estilos até agora.
   --- */

/* --- Importação das Fontes (Do arquivo original) --- */
/* Montserrat (Usada no botão) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Space Grotesk (Fonte principal) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2) format('woff2');
}


/* --- Estilos Globais e Resets --- */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* Container Padrão */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cor principal do texto escuro */
:root {
  --color-text-dark: rgba(49, 23, 36, 1);
  /* #311724 */
}

/* --- Animação do Letreiro (Marquee) --- */
.atomicat-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
}

.atomicat-marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  animation: atomicat-marquee-animation 100s linear infinite;
}

@keyframes atomicat-marquee-animation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* --- Seção 1: Barra Superior (Letreiro) --- */
.section-top-bar {
  padding-top: 50px;
  padding-bottom: 50px;
  background: rgba(146, 55, 100, 1);
}

.top-bar-content-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-text h1 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  line-height: 34px;
  white-space: nowrap;
}

/* --- Seção 2: Principal (Hero) --- */
.section-hero {
  padding-top: 65px;
  padding-bottom: 60px;
  background: rgba(253, 243, 248, 1);
}

.hero-content-wrapper {
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-subtitle h1 {
  text-align: center;
  color: var(--color-text-dark);
  line-height: 33px;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 15px 0;
}

.hero-main-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 59px;
}

.hero-left-column {
  width: 77%;
  padding: 0;
}

.hero-right-column {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-left-title h1 {
  text-align: left;
  color: var(--color-text-dark);
  line-height: 33px;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 5px 0;
}

.hero-ratings-image {
  text-align: left;
  margin-bottom: 20px;
}

.hero-ratings-image img {
  width: 210px;
  height: auto;
  border-radius: 20px;
}

.hero-divider {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 24px;
}

/* Estilos da Lista de Ícones */
.icon-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-list li {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-list-icon svg {
  color: rgba(255, 102, 196, 1);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.icon-list-text p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-dark);
  font-weight: 500;
}

/* Estilos do Botão CTA (Reutilizável) */
.hero-button-wrapper {
  margin-top: 42px;
}

.hero-button {
  display: inline-flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  width: 100%;
  text-align: center;
  cursor: pointer;
  border-radius: 100px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  color: rgba(255, 255, 255, 1);
  background: rgba(146, 55, 100, 1);
}

.hero-button:hover {
  color: rgba(253, 243, 248, 1);
  background: rgba(255, 102, 196, 1);
}

.hero-button svg {
  height: 22px;
  fill: currentColor;
}

.book-cover-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
}

/* ---
   Seção 3: Depoimentos
   --- */
.section-testimonials {
  padding-top: 64px;
  padding-bottom: 64px;
  background: rgba(255, 231, 243, 1);
}

.testimonials-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 42px;
  color: var(--color-text-dark);
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 30px;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  padding: 0 10px;
}

.testimonial-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  max-width: 273px;
}

.testimonial-image-wrapper img {
  width: 100%;
  display: block;
}

.testimonial-name {
  font-family: "Space Grotesk", sans-serif;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-dark);
  margin: 10px 0;
}

.testimonial-quote {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-dark);
  margin: 10px 0;
}


/* ---
   Seção 4: Happy Women
   --- */
.section-happy-women {
  padding-top: 0;
  padding-bottom: 65px;
  background: rgba(245, 245, 245, 1);
}

.happy-women-image-wrapper {
  text-align: center;
}

.happy-women-image-wrapper img {
  max-width: 100%;
  height: auto;
}

.happy-women-spacer {
  height: 60px;
}

.happy-women-text-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.happy-women-text {
  color: rgba(255, 102, 196, 1);
  line-height: 33px;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.happy-women-arrow svg {
  color: rgba(255, 102, 196, 1);
  height: 48px;
}

.happy-women-button-wrapper {
  margin-top: 42px;
  text-align: center;
}

.cta-button-medium {
  width: 45%;
}

/* ---
   Seção 5: Problema
   --- */
.section-problem {
  padding-top: 80px;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 1);
}

.problem-layout {
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row-reverse;
  /* Imagem na esquerda, texto na direita */
  align-items: flex-start;
  column-gap: 59px;
}

.problem-text-column {
  flex-basis: 77%;
}

.problem-image-column {
  flex-basis: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.problem-headline {
  font-weight: 800;
  color: var(--color-text-dark);
  font-size: 24px;
  text-align: left;
  line-height: 33px;
  margin: 0 0 5px 0;
}

.problem-divider {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 24px;
}

.problem-list .icon-list-icon svg {
  color: rgba(255, 102, 196, 1);
  /* Cor Rosa/Pink */
}

.problem-conclusion {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  color: var(--color-text-dark);
  padding-top: 20px;
  margin: 0;
}

/* ---
   NOVA SEÇÃO: Bônus (App + Livro)
   --- */
.section-bonus-offer {
  padding-top: 80px;
  padding-bottom: 60px;
  background: rgba(253, 243, 248, 1); /* Mesmo fundo da 'section-hero' */
}

.bonus-offer-layout {
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row; /* Texto na esquerda, Imagem na direita */
  align-items: center; /* Centralizar verticalmente */
  column-gap: 59px;
}

.bonus-offer-text-column {
  flex-basis: 77%; /* Mesmo 'basis' da 'ebook-summary' */
}

.bonus-offer-image-column {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-offer-title {
  text-align: left;
  font-size: 36px;
  color: var(--color-text-dark);
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.bonus-offer-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: left;
  line-height: 33px;
  margin: 0 0 30px 0;
}

.bonus-benefits-list .icon-list-icon svg {
  color: rgba(0, 191, 99, 1); /* Cor Verde, como na 'ebook-summary' */
  width: 22px;
  height: 22px;
}

.bonus-benefits-list .icon-list-text p {
  font-weight: 500;
  font-size: 20px;
}

.app-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
}


/* ---
   Seção 6: Receita
   --- */
.section-recipe {
  padding-top: 80px;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 1);
}

.recipe-wrapper {
  max-width: 77%;
  /* Largura do container original */
  margin: 0 auto;
}

.recipe-title {
  font-size: 36px;
  color: var(--color-text-dark);
  line-height: 33px;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

.spacer-medium {
  height: 37px;
}

.recipe-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: left;
  line-height: 33px;
  margin: 0;
}

.recipe-list .icon-list-icon svg {
  color: rgba(0, 191, 99, 1);
  /* Cor Verde */
  width: 22px;
  height: 22px;
}

.recipe-list-text p {
  font-size: 20px;
  font-weight: 500;
}

.recipe-instructions {
  font-size: 24px;
  text-align: left;
  line-height: 33px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin: 20px 0 0 0;
  white-space: pre-line;
  /* Respeita as quebras de linha (br) */
}


/* ---
   Seção 7: Sumário do eBook
   --- */
.section-ebook-summary {
  padding-top: 80px;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 1);
}

.ebook-summary-layout {
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row-reverse;
  /* Imagem na direita, texto na esquerda */
  align-items: flex-start;
  column-gap: 59px;
}

.ebook-summary-text-column {
  flex-basis: 77%;
}

.ebook-summary-image-column {
  flex-basis: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ebook-summary-title {
  text-align: center;
  font-size: 36px;
  color: var(--color-text-dark);
  line-height: 33px;
  font-weight: 800;
  margin: 0 0 37px 0;
  /* 37px é o espaçador original */
}

.ebook-benefits-list .icon-list-icon svg {
  color: rgba(0, 191, 99, 1);
  /* Cor Verde */
  width: 22px;
  height: 22px;
}

.ebook-benefits-list .icon-list-text p {
  font-weight: 500;
  font-size: 20px;
}

.ebook-summary-mobile-image-wrapper {
  display: none;
  /* Esconde a imagem neste wrapper no desktop */
  text-align: center;
}

/* ---
   Seção 8: FAQ (ACORDEÃO)
   --- */
.section-faq {
  padding-top: 65px;
  padding-bottom: 65px;
  background: rgba(255, 255, 255, 1);
}

.faq-main-title {
  color: rgba(0, 0, 0, 1);
  line-height: 45px;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 26px 0;
}

.spacer-small {
  height: 26px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  /* Linha divisória */
  margin-bottom: 10px;
  overflow: hidden;
}

/* a-ac-t: Classe do TÍTULO do FAQ que recebe o clique */
.a-ac-t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(253, 226, 185, 0.35);
  /* Fundo bege suave */
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* a-ac-t-active: Classe adicionada pelo JS no título ativo */
.a-ac-t.a-ac-t-active .a-ac-tg span:first-child {
  display: inline;
}

.a-ac-t.a-ac-t-active .a-ac-tg span:last-child {
  display: none;
}

/* a-c-inactive: Classe do CONTEÚDO do FAQ */
.a-c-inactive {
  max-height: 0;
  /* Escondido por padrão, para o JS controlar */
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease-in-out;
  background: rgba(255, 255, 255, 1);
}

.a-c-inactive.a-c-inactive.a-c-inactive {
    max-height: 0 !important; /* Força o max-height 0 quando inativo */
}

.a-c-inactive p {
  padding: 15px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin: 0;
}

/* a-ac-tg: Classe do WRAPPER do ÍCONE (o JS esconde/mostra os SPANS dentro dele) */
.a-ac-tg span:first-child {
    display: none; /* Icone para cima: escondido por padrão */
}

.a-ac-tg span {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-weight: 800;
}


.final-cta-wrapper {
  margin-top: 42px;
  text-align: center;
}

/* ---
   Seção 9: Rodapé e Legal
   --- */
.section-footer {
  text-align: center;
  padding: 0 20px 60px 20px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-links-wrapper {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.footer-copyright p {
  margin: 5px 0;
}

.footer-disclaimer p {
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.5;
  margin: 20px 0;
}

.footer-about-us {
  text-align: center;
}

.footer-about-us-button {
  background: #c0c0c0;
  /* Cor cinza, baseada no botão original */
  color: #fff;
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s;
  word-break: break-word;
  border-radius: 1rem;
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
}


/* ---
   Otimização Mobile (Global) - REMOVIDO O BRACKET EXTRA
   --- */
@media screen and (max-width: 768px) {

  .container {
    padding: 0 15px;
  }

  /* Seção 2: Hero */
  .hero-main-layout {
    flex-direction: column;
  }

  .hero-left-column {
    width: 100%;
    margin-bottom: 40px;
  }

  .hero-right-column {
    width: 100%;
  }

  .hero-subtitle h1 {
    font-size: 20px;
    line-height: 29px;
  }

  .hero-left-title h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-button {
    width: 93%;
    padding: 16px 20px;
    font-size: 15px;
  }

  .hero-button-wrapper {
    text-align: center;
  }

  /* Seção 3: Depoimentos */
  .section-testimonials {
    padding: 50px 15px;
  }

  .testimonials-title {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    padding-left: 0;
  }

  .testimonials-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 400px;
  }

  /* Seção 4: Happy Women */
  .section-happy-women {
    padding: 20px 20px 30px 20px;
  }

  .happy-women-spacer {
    height: 26px;
  }

  .happy-women-text-wrapper {
    gap: 15px;
  }

  .happy-women-text {
    font-size: 16px;
    line-height: 29px;
    text-align: center;
  }

  .happy-women-arrow {
    display: none;
  }

  .happy-women-button-wrapper {
    margin-top: 9px;
  }

  .cta-button-medium {
    width: 93%;
  }

  /* Seção 5: Problema */
  .section-problem {
    padding: 30px 20px;
  }

  .problem-layout {
    flex-direction: column;
  }

  .problem-text-column,
  .problem-image-column {
    flex-basis: 100%;
    width: 100%;
  }

  .problem-image-column {
    order: -1;
    padding-bottom: 20px;
  }

  .problem-headline {
    font-size: 25px;
    line-height: 30px;
    text-align: center;
  }

  .problem-conclusion {
    font-size: 16px;
    line-height: 29px;
    text-align: center;
  }

  /* NOVA SEÇÃO BÔNUS - Estilos Mobile */
  .section-bonus-offer {
    padding: 30px 20px;
  }

  .bonus-offer-layout {
    flex-direction: column;
  }

  .bonus-offer-text-column,
  .bonus-offer-image-column {
    flex-basis: 100%;
    width: 100%;
  }

  .bonus-offer-image-column {
    padding-top: 30px; /* Espaçamento acima da imagem no mobile */
  }

  .bonus-offer-title {
    font-size: 25px;
    line-height: 30px;
    text-align: center;
  }
  
  .bonus-offer-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
  }

  .bonus-benefits-list .icon-list-text p {
    font-size: 16px;
  }
  

  /* Seção 6: Receita */
  .section-recipe {
    padding: 30px 20px;
  }

  .recipe-wrapper {
    max-width: 100%;
  }

  .recipe-title {
    font-size: 25px;
    line-height: 30px;
  }

  .recipe-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .recipe-list-text p {
    font-size: 16px;
  }

  .recipe-instructions {
    font-size: 16px;
    line-height: 24px;
  }

  /* Seção 7: Sumário do eBook */
  .section-ebook-summary {
    padding: 30px 20px;
  }

  .ebook-summary-layout {
    flex-direction: column;
  }

  .ebook-summary-text-column,
  .ebook-summary-image-column {
    flex-basis: 100%;
    width: 100%;
  }

  .ebook-summary-image-column {
    display: none;
  }

  .ebook-summary-mobile-image-wrapper {
    display: block;
    padding-bottom: 20px;
  }

  .ebook-summary-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  /* Seção 8: FAQ */
  .section-faq {
    padding: 50px 15px;
  }

  .faq-main-title {
    font-size: 25px;
    line-height: 30px;
  }

  .final-cta-wrapper {
    margin-top: 9px;
  }

  .final-cta-wrapper .cta-button-medium {
    width: 93%;
  }

  /* Seção 9: Rodapé */
  .section-footer {
    padding-bottom: 30px;
  }

}