<style>
    
header, .hero, .banner, .topo {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body {
  margin: 0 !important;
  padding: 0 !important;
}


* {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Nunito', sans-serif;}
    body {background-color: #ffffff; color: #333; overflow-x: hidden;}

    /* ===== TOPO ===== */
    header {
      width: 100%;
      text-align: center;
      background-color: #fff;
      border-bottom: 3px solid #f5d75c;
    }
    header img {
      width: 100%;
      max-height: 380px;
      object-fit: cover;
      display: block;
    }

    /* ===== MENU ===== */
    nav {
      position: sticky;
      top: 0;
      background-color: #fef9dc;
      border-bottom: 3px solid #f5d75c;
      display: flex;
      justify-content: center;
      gap: 25px;
      padding: 14px 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }
    nav a {
      color: #2E7D72;
      font-weight: 700;
      text-decoration: none;
      font-size: 1em;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    nav a:hover {background-color: #FFF5B5; color: #1C5C53;}
    nav a.active {background-color: #FFD84D; color: #333;}

    /* ===== SEÇÕES ===== */
    section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px 20px;
    }

    .produto {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      background-color: #F8FBF9;
      border: 2px solid #E2F0E6;
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 35px; /* Reduzido o espaçamento */
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .produto:hover {transform: translateY(-5px); box-shadow: 0px 6px 18px rgba(0,0,0,0.08);}
    .produto img {width: 230px; height: auto; border-radius: 12px; border: 2px dashed #F7D74A; background-color: #FFFBEF; padding: 8px;}
    .produto-conteudo {flex: 1;}
    .produto-conteudo h2 {color: #2E7D72; font-size: 1.7em; margin-bottom: 10px;}
    .produto-conteudo p {color: #444; font-size: 1.05em; line-height: 1.6em;}
    .botao {
      display: inline-block;
      background-color: #FFD84D;
      color: #333;
      font-weight: 700;
      font-size: 1.05em;
      padding: 10px 20px;
      border-radius: 10px;
      margin-top: 15px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid #E8C940;
    }
    .botao:hover {background-color: #FFE97A; transform: translateY(-3px);}

    .bloco {
      background-color: #F8FBF9;
      border: 2px solid #E2F0E6;
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
      text-align: center;
    }
    .bloco h2 {color: #2E7D72; font-size: 1.8em; margin-bottom: 10px;}
    .bloco p {color: #444; font-size: 1.05em; line-height: 1.6em;}

    /* ===== FORMULÁRIO SUPORTE ===== */
    form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left;
    }
    form input, form textarea {
      width: 100%;
      padding: 10px 12px;
      border: 2px solid #E2F0E6;
      border-radius: 10px;
      font-size: 1em;
      resize: none;
    }
    form textarea {min-height: 120px;}
    form button {
      background-color: #FFD84D;
      color: #333;
      font-weight: 700;
      font-size: 1.05em;
      padding: 12px 20px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    form button:hover {background-color: #FFE97A;}

    /* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      font-size: 28px;
      width: 75px;
      height: 75px;
      border-radius: 50%;
      text-align: center;
      line-height: 55px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      z-index: 10000;
    }
    .whatsapp-btn:hover {transform: scale(1.1); background-color: #20b85b;}

    footer {
      background: #FDF8E1;
      padding: 25px 10px;
      text-align: center;
      font-size: 0.9em;
      color: #666;
      border-top: 3px solid #f5d75c;
    }







    /* ===== RESPONSIVO ===== */
    @media (max-width: 768px) {
      nav {flex-wrap: wrap; gap: 10px;}
      .produto {flex-direction: column; text-align: center;}
      .produto img {width: 80%;}
      .botao {width: 100%;}
    }


/* ======= SEÇÃO INSTAGRAM ======= */
#instagram {
  text-align: center;
  background-color: #fff;
  padding: 40px 20px;
  border-top: 2px solid #f2f2f2;
  font-family: 'Nunito', sans-serif;
}

#instagram h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
}

.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.05);
  color: #ff5a5f;
}

.social-link img {
  width: 75px;
  height: 45px;
  margin-right: 10px;
}


.botoes-produto {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

/* Botão de comprar (mantendo o estilo original do site) */
.btn-comprar {
  background-color: #f9b234; /* cor principal do seu site */
  color: #000000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-comprar:hover {
  background-color: #f7a100;
}

/* Botão de prévia */
.btn-previa {
  background-color: #4db6ac; /* cor diferenciada para indicar ação secundária */
  color: #000000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-previa:hover {
  background-color: #00897b;
  transform: scale(1.03);
}

/* Botões do calendário */
.botoes-produto {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.btn-comprar,
.btn-previa {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Botão comprar */
.btn-comprar {
  background-color: #ffc107;
  color: #000000;
}

.btn-comprar:hover {
  background-color: #ffb300;
}

/* Botão baixar prévia */
.btn-previa {
  background-color: #4caf50;
  color: #fff;
}

.btn-previa:hover {
  background-color: #449d48;
}

/* Garante que o layout do calendário e do livro fiquem idênticos */
.produto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.produto img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.conteudo-produto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conteudo-produto h2 {
  margin-bottom: 10px;
}

.conteudo-produto p {
  margin-bottom: 15px;
}

.botoes-produto {
  display: flex;
  justify-content: flex-end; /* ALINHA OS BOTÕES À DIREITA */
  gap: 12px;
  margin-top: 10px;
}


/* ===== Depoimentos - CARROSSEL ===== */
#depoimentos-section { 
  padding: 40px 20px;
}
.depoimentos-bloco {
  max-width: 1100px;
  margin: 0 auto 30px;
  background-color: #F8FBF9;
  border: 2px solid #E2F0E6;
  border-radius: 20px;
  padding: 18px 22px;    /* <--- reduzir padding superior/inferior */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}

.depoimentos-bloco h2 {
  color: #2E7D72;
  font-size: 1.6rem;
  margin: 6px 0 18px 0;  /* <--- margem superior menor (6px) e inferior razoável (18px) */
  text-align: center;
}



/* container do carrossel */
.depoimentos-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* viewport com overflow hidden */
/* viewport e track */
.depoimentos-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 940px;
}

.depoimentos-track {
  display: flex;
  gap: 20px;                  /* espaçamento entre cards */
  transition: transform 0.45s cubic-bezier(.22,.9,.17,1);
  will-change: transform;
  padding-bottom: 5px;
  box-sizing: content-box;
}

/* Cada card: largura calculada para 3 colunas iguais */
.depoimento-card {
  background: #fff;
  border: 2px solid #E2F0E6;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* largura fixa proporcional: (100% - 2*gaps) / 3 */
  flex: 0 0 calc((100% - 40px) / 3); /* 40px = 2 * gap(20) */
  box-sizing: border-box;
}

/* texto e autor (mantém seu visual) */
.depo-texto { color:#444; font-size:1rem; line-height:1.6; margin-bottom:12px; }
.depo-autor { color:#2E7D72; font-weight:700; font-size:0.95rem; }

/* Responsivo: 2 colunas e 1 coluna */
@media (max-width: 920px) {
  .depoimento-card {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 colunas, gap 20 */
  }
  .depoimentos-viewport { max-width: 680px; }
}

@media (max-width: 600px) {
  .depoimento-card {
    flex: 0 0 100%; /* 1 coluna */
    min-width: 100%;
  }
  .depoimentos-viewport { max-width: 100%; }
}


.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.08);
}


/* texto do depoimento */
.depo-texto {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* autor */
.depo-autor {
  color: #2E7D72;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}

/* setas fora dos cards, centralizadas verticalmente */
.seta {
  background-color: #FFD84D;
  color: #333;
  border: none;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform .18s ease, background-color .18s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* posição das setas em relação ao bloco (fora do viewport) */
.seta-esquerda { left: calc(50% - 500px - 28px); } /* ajusta com base no max-width */
.seta-direita { right: calc(50% - 500px - 28px); } 

.seta:hover { transform: translateY(-50%) scale(1.06); background-color: #FFE97A; }

/* responsivo - mobile mostra 1 card por vez */
@media (max-width: 920px) {
  .depoimento-card { flex: 0 0 48%; } /* 2 cards */
  .depoimentos-bloco { padding: 24px; }
  .seta-esquerda { left: 8px; }
  .seta-direita { right: 8px; }
}

@media (max-width: 600px) {
  .depoimento-card { flex: 0 0 90%; } /* 1 card */
  .depoimentos-viewport { max-width: 100%; }
  .depoimentos-bloco h2 { text-align: center; }
  .seta-esquerda { left: 8px; top: 40%; transform: translateY(-40%); }
  .seta-direita { right: 8px; top: 40%; transform: translateY(-40%); }
}

.selo-seguranca {
  margin-top: 20px;
  text-align: center;
}

.selo-seguranca img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}

.selo-seguranca p {
  font-size: 0.9em;
  color: #555;
}

/* ===== FAQ ===== */
.faq-section {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 50px 30px;
  max-width: 900px;
  margin: 80px auto;
  animation: fadeInUp 0.6s ease forwards;
}

.faq-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #4b2fb3;
  margin-bottom: 35px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #f9f7ff;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(75, 47, 179, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4b2fb3;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #eee9ff;
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #fff;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding: 15px 20px 25px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  margin: 5px auto !important;
}

/* ===== AJUSTE RÁPIDO: reduzir ao máximo o espaçamento entre blocos ===== */
/* Cole isto NO FINAL do style.css (aba CSS) */

section {
  margin: 8px auto !important;        /* distância externa entre seções (menor possível) */
  padding-top: 12px !important;      /* espaço interno superior reduzido */
  padding-bottom: 12px !important;   /* espaço interno inferior reduzido */
}

/* Configurações finas para os blocos mais comuns */
.book-section,
.calendar-section,
.testimonials-section,
.launch-section,
.faq-section,
.bloco,
.produto {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* Remove bordas extra que possam criar "ares" entre blocos */
section:not(:last-child) {
  border-bottom: none !important;
}

/* Se algum bloco ainda usar margin-bottom grande, força menor */
.produto, .bloco, .faq-section, .testimonials-section {
  margin-bottom: 6px !important;
}

/* Garante responsividade sem espaçamentos grandes no mobile */
@media (max-width: 768px) {
  section {
    margin: 6px auto !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .book-section,
  .calendar-section,
  .testimonials-section,
  .launch-section,
  .faq-section,
  .bloco,
  .produto {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}



  </style>