/* Estilos Globais */
:root {
  --primary-color: #8e6c88;
  --primary-light: #c5a5c0;
  --primary-dark: #5d4559;
  --secondary-color: #d9b38c;
  --secondary-light: #e6c9a8;
  --secondary-dark: #b28e5e;
  --white: #ffffff;
  --light-bg: #f8f5f9;
  --text-color: #333333;
  --text-light: #666666;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden; /* Prevenir overflow horizontal geral */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600; /* Default weight for headings */
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  font-weight: 700; /* Slightly bolder for H1 */
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center; /* Centralizar títulos de seção por padrão */
  position: relative;
  margin-bottom: 3rem; /* Espaçamento padrão abaixo do título */
}

/* Linha decorativa abaixo dos títulos h2 */
h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
  font-weight: 400; /* Default weight for paragraphs */
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--secondary-light), var(--secondary-color));
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  animation: pulse 2s infinite;
  margin-top: 20px;
}

.cta-button:hover {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-dark));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--white);
  animation-play-state: paused;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

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

.section-padding {
  padding: 60px 0; /* Reduzido padding padrão */
}

/* Menu de Navegação */
.main-nav {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%; /* Garantir que não ultrapasse a largura */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0; /* Reduzido padding vertical geral */
  max-width: 1200px; /* Limitar largura do conteúdo do menu */
  margin: 0 auto; /* Centralizar conteúdo do menu */
  width: 90%; /* Usar percentual para responsividade */
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Evitar que o logo encolha */
}

.logo-icon {
  width: 28px; /* Levemente reduzido */
  height: 28px; /* Levemente reduzido */
  margin-right: 8px;
  background-color: transparent; /* Remover fundo */
  vertical-align: middle;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; /* Levemente reduzido */
  color: var(--primary-color);
  font-weight: 300;
  letter-spacing: 1px;
  white-space: nowrap; /* Evitar quebra de linha */
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 20px; /* Reduzido espaçamento entre links */
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem; /* Reduzido tamanho da fonte */
  transition: var(--transition);
  white-space: nowrap; /* Evitar quebra de linha */
}

.nav-links a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--light-bg);
  padding: 60px 0; /* Padding inicial */
  text-align: center;
}

.hero h1 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h2 {
  margin-bottom: 1.5rem; /* Reduzido */
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
  position: relative;
}

/* Remover linha decorativa do h2 no hero */
.hero h2::after {
    display: none;
}

.hero .impact-phrase {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  max-width: 450px; /* Reduzido */
  margin: 25px auto; /* Reduzido */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  display: block;
  object-fit: cover; /* Garante que a imagem cubra a área */
  object-position: center center; /* Centraliza a imagem */
}

/* Bloco 2 - Você se reconhece? */
.pain-points {
  padding: 60px 0;
  background-color: var(--white);
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; /* Reduzido */
  margin-top: 30px; /* Reduzido */
}

.pain-item {
  background-color: var(--light-bg);
  padding: 25px; /* Reduzido */
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.pain-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pain-icon {
  color: var(--secondary-color);
  font-size: 1.8rem; /* Aumentado para destaque */
  margin-bottom: 15px;
}

.pain-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif; /* Garantir fonte correta */
    font-weight: 400; /* Garantir peso normal */
}

/* Bloco 3 - O que você vai encontrar */
.benefits {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; /* Reduzido */
  margin-top: 30px; /* Reduzido */
}

.benefit-item {
  background-color: var(--white);
  padding: 25px; /* Reduzido */
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item h3 {
  font-size: 1.2rem; /* Reduzido */
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif; /* Garantir fonte correta */
  font-weight: 600; /* Garantir peso semi-bold */
}

.benefit-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif; /* Garantir fonte correta */
    font-weight: 400; /* Garantir peso normal */
    color: var(--text-light); /* Alterado para cinza mais claro (#666666) */
}

/* NOVA SEÇÃO: Bônus Especial */
.bonus-section {
  background-color: var(--white);
  padding: 60px 0;
}

.bonus-content {
  background-color: var(--light-bg);
  padding: 35px; /* Reduzido */
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 750px; /* Reduzido */
  margin: 0 auto;
  text-align: center;
}

.bonus-content h2 {
    margin-bottom: 1.5rem; /* Ajustado */
}

.bonus-text {
  margin-bottom: 1.5rem; /* Reduzido */
  font-size: 1rem;
}

.countdown-container {
  margin: 25px 0; /* Reduzido */
  text-align: center;
  overflow-x: auto; /* Permitir scroll horizontal se necessário */
  padding-bottom: 10px; /* Espaço para scrollbar se aparecer */
}

.countdown-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px; /* Reduzido */
  font-size: 0.9rem;
}

.countdown-timer {
  display: inline-flex; /* Mudar para inline-flex para não forçar largura total */
  justify-content: center;
  align-items: center;
  gap: 10px; /* Reduzido */
  min-width: 280px; /* Largura mínima para evitar quebra excessiva */
}

.countdown-item {
  background-color: var(--white);
  padding: 8px;
  min-width: 50px; /* Reduzido */
  border-radius: 8px;
  text-align: center;
}

.countdown-number {
  font-size: 1.3rem; /* Reduzido */
  font-weight: 700;
  color: var(--primary-color);
}

.countdown-label {
  font-size: 0.7rem; /* Reduzido */
  color: var(--text-light);
}

.countdown-separator {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-bottom: 10px; /* Alinhar com números */
}

/* SEÇÃO: Quem é Carol Paes */
.about-author {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.about-author .container > h2 {
    margin-bottom: 3rem;
}

.author-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.author-image {
  width: 150px; /* Tamanho reduzido */
  height: 150px; /* Tamanho reduzido */
  border-radius: 50%; /* Circular */
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0; /* Não encolher */
  margin-top: 10px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante centralização */
  object-position: center center; /* Ajustar posição vertical da imagem para centralizar */
  display: block;
}

.author-text {
  text-align: left;
  flex-grow: 1;
  max-width: 700px; /* Limitar largura para leitura */
  /* margin: 0 auto; /* Centralizar o bloco de texto - Removido pois o flex container já alinha */
}

.author-text p {
  margin-bottom: 1.2rem; /* Espaçamento uniforme */
  line-height: 1.7;
}

.author-signature {
  font-style: italic;
  color: var(--primary-color);
  margin-top: 25px;
  display: block;
}

/* SEÇÃO: Depoimentos */
.testimonials {
  padding: 60px 0;
  background-color: var(--white);
}

.testimonial-list {
  display: grid;
  grid-template-columns: 1fr; /* Base: 1 coluna (Mobile First) */
  gap: 20px; /* Mobile gap */
  margin-top: 30px;
}

.testimonial-item {
  background-color: var(--light-bg);
  padding: 25px; /* Reduzido */
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Ajustar posição vertical da imagem para centralizar */
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-text {
  font-style: italic;
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.testimonial-text::before, .testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
  opacity: 0.5;
}

.testimonial-text::before {
  left: -10px;
  top: -10px;
}

.testimonial-text::after {
    right: -10px;
    bottom: -15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: auto;
}

/* Bloco 4 - Conteúdo do Guia */
.content-preview {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; /* Reduzido */
  margin-top: 30px; /* Reduzido */
}

.content-group {
  background-color: var(--white);
  padding: 25px; /* Reduzido */
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.content-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.content-group h3 {
  margin-bottom: 15px; /* Reduzido */
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif; /* Garantir fonte correta */
  font-weight: 600; /* Garantir peso semi-bold */
}

.content-group ul {
  list-style: none;
  padding-left: 0;
}

.content-group li {
  margin-bottom: 10px; /* Reduzido */
  padding-left: 20px; /* Reduzido */
  position: relative;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif; /* Garantir fonte correta */
  font-weight: 400; /* Garantir peso normal */
}

.content-group li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.content-group.special p {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif; /* Garantir fonte correta */
    font-weight: 400; /* Garantir peso normal */
}

/* SEÇÃO: FAQ */
.faq {
  padding: 60px 0;
  background-color: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 30px auto 0;
}

.faq-item {
  background-color: var(--light-bg);
  margin-bottom: 15px; /* Reduzido */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  padding: 18px 25px; /* Ajustado */
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif; /* Garantir fonte correta */
  font-weight: 600; /* Garantir peso semi-bold */
}

.faq-item h3::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item h3.active {
  background-color: var(--primary-light);
  color: var(--white);
}

.faq-item h3.active::after {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  opacity: 0;
}

.faq-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    padding: 20px 0;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif; /* Garantir fonte correta */
    font-weight: 400; /* Garantir peso normal */
    color: var(--text-light); /* Alterado para cinza mais claro (#666666) */
}

.faq-item h3.active + .faq-content {
    max-height: 300px; /* Adjust as needed */
    opacity: 1;
}

/* Seção de Garantia */
.guarantee {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.guarantee-icon i {
    color: var(--white);
    font-size: 2.5rem;
}

.guarantee h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.guarantee p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 0.95rem;
}

/* Seção de Preço Final */
.final-cta {
    padding: 60px 0;
    background-color: var(--white); /* Alterado para fundo branco */
    text-align: center;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem; /* Aumentado espaço abaixo do título */
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem; /* Aumentado espaço abaixo do parágrafo */
}

.final-cta .cta-button {
    margin-bottom: 0.8rem; /* Reduzido espaço antes do texto abaixo */
}

.final-cta .access-info {
    font-size: 0.8rem; /* Reduzido tamanho da fonte */
    color: var(--text-light);
    margin-top: 0; /* Remover margem superior */
    font-weight: 300; /* Deixar mais leve */
}

.price {
    font-size: 2.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 40px 0 20px; /* Reduzido */
  text-align: center;
}

footer a {
  color: var(--secondary-light);
}

footer a:hover {
  color: var(--white);
}

.social-icons {
  margin-bottom: 15px; /* Reduzido */
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.4rem; /* Reduzido */
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-3px);
}

footer p {
  margin-bottom: 8px; /* Reduzido */
  font-size: 0.85rem; /* Reduzido */
}

.footer-links a {
    margin: 0 8px;
}

/* Página de Obrigado */
.thank-you-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinhar ao topo */
    align-items: center;
    min-height: calc(100vh - 150px); /* Altura mínima descontando header/footer aprox */
    padding: 40px 0; /* Padding vertical */
    text-align: center;
}

.thank-you-page .hero-image {
    max-width: 400px; /* Ajustar tamanho se necessário */
    margin-bottom: 2rem;
    border-radius: 10px; /* Manter retangular */
}

.thank-you-page .hero-image img {
    border-radius: 10px; /* Garantir que a imagem interna também tenha borda */
}

.thank-you-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.thank-you-page p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .pain-list,
  .benefits-list,
  .content-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-image {
    margin-bottom: 20px;
  }

  .author-text {
    text-align: center;
    max-width: 100%;
  }

  .testimonial-list {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablet */
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .section-padding {
    padding: 40px 0;
  }

  .nav-container {
    padding: 10px 0; /* Aumentar um pouco no mobile */
    width: 95%; /* Ajustar largura no mobile */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Ajustar conforme altura do header */
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 40px 0 30px; /* Ajustar padding mobile */
  }

  .hero-image {
    max-width: 90%;
    margin: 20px auto;
  }

  .pain-list,
  .benefits-list,
  .content-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-content {
    padding: 25px;
  }

  .bonus-content h2 {
      font-size: 1.4rem; /* Reduzido ainda mais para evitar quebra */
      line-height: 1.3;
  }

  .countdown-timer {
    gap: 5px;
    flex-wrap: wrap; /* Permitir quebra se necessário */
    justify-content: space-around;
  }
  .countdown-item {
    min-width: 45px;
    padding: 5px;
  }
  .countdown-number {
    font-size: 1.1rem;
  }
  .countdown-label {
    font-size: 0.6rem;
  }
  .countdown-separator {
    font-size: 1.1rem;
  }

  .author-content {
    gap: 20px;
  }

  .author-image {
    width: 120px;
    height: 120px;
  }

  .testimonial-list {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
  }

  .faq-item h3 {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-content p {
    font-size: 0.9rem;
    color: var(--text-light); /* Aplicar cor mais clara também no mobile */
  }

  .final-cta {
    padding: 40px 0;
  }

  .final-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem; /* Ajuste mobile */
  }

  .final-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem; /* Ajuste mobile */
  }

  .final-cta .access-info {
    font-size: 0.75rem; /* Ainda menor no mobile */
    line-height: 1.4; /* Melhorar leitura */
  }

  footer {
    padding: 30px 0 15px;
  }

  footer p {
    font-size: 0.8rem;
  }

  .thank-you-page h1 {
    font-size: 1.8rem;
  }
  .thank-you-page p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .testimonial-list {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablet */
    align-items: stretch; /* Alinhar altura dos cards */
  }

  /* Layout 2 + 1 para depoimentos em desktop */
  .testimonial-list > .testimonial-item:last-child:nth-child(odd) {
      grid-column: span 2; /* Ocupa duas colunas */
      max-width: 50%; /* Limita a largura */
      margin: 0 auto; /* Centraliza */
  }
}

@media (min-width: 992px) {
  .pain-list,
  .benefits-list,
  .content-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

