/* 0) reset horizontal overflow */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* 1) garante container responsivo */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* 2) swiper não estoura da tela */
.swiper-container {
  width: 100%;
  overflow: visible; /* mantém vizinhos visíveis */
}

/* 3) leitor centralizado corretamente */
.reader-modal {
  position: fixed;
  inset: 0;
  display: flex;                  /* mantém sempre como flex */
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  opacity: 0;                     /* totalmente transparente */
  pointer-events: none;           /* não captura clique */
  transition: opacity 0.4s ease;  /* fade-in de 0.4s */
  z-index: 2000;
}
.reader-modal.active {
  opacity: 1;                     /* torna visível */
  pointer-events: auto;           /* volta a capturar clique */
}
.reader-box {
  background: #F5EFE6;            /* bege de livro */
  width: 90vw;                    /* ocupa 90% da largura */
  max-width: 800px;               /* não passa de 800px */
  max-height: 90vh;               /* não passa de 90% da altura */
  border-radius: 12px;            /* cantos arredondados */
  overflow: hidden;               /* esconde o excesso */
  display: flex;                  /* flex container */
  flex-direction: column;         /* empilha header/body/footer */
  transform: scale(0.92);         /* zoom inicial */
  transition: transform 0.4s ease;/* animação suave */
}
.reader-modal.active .reader-box {
  transform: scale(1);            /* volta ao tamanho real */
}
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografia e containers */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem; /* garante padding lateral no mobile */
}
.btn-primary {
  background: #5278E1;               /* azul médio */
  color: #fff;
  border: none;
  border-radius: 8px !important;     /* <— use 8px para cantos suaves */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary i {
  font-size: 1.1rem;
  margin-right: 0.4rem;
}

/* CARROSSEL */
.carousel-section {
  margin-top: 0;           /* zera aqui para usar só a margin-bottom da subheadline */
}
.swiper-container {
  margin: 0 auto;
  max-width: 800px;
  overflow: visible;
  perspective: 800px;
}
.swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-slide {
  width: 280px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.4;              /* slides “de fundo” mais desbotados */
  transform: translateZ(-200px) scale(0.8);
}
.swiper-slide-active {
  opacity: 1;               /* slide central mais nítido */
  transform: translateZ(0) scale(1);
}
.slide-info {
  max-width: 600px;
  margin: 2rem auto 4rem;
  text-align: center;
}
#active-title {
  font-size: 1.5rem;        /* antes 2rem */
  margin-bottom: 0.5rem;    /* reduz o espaçamento */
}
#active-sinopse {
  font-size: 0.9rem;        /* antes 1rem */
  line-height: 1.4;         /* mais compacto */
  margin-bottom: 1.25rem;   /* alinhado ao novo tamanho */
}
.swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

/* OFERTAS */
.offers-section {
  margin-bottom: 4rem;
  padding: 4rem 0;
  text-align: center;
  scroll-margin-top: 100px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.offer-card {
  background: #fff;
  border-radius: 12px !important;
  padding: 2rem 1.5rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.offer-card .offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}
.offer-card .offer-price {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.offer-card .price-value {
  color: #F4B400;
  font-size: 2.5rem;
  font-weight: 800;
}
.offer-card .price-period {
  color: #888;
  font-size: 1rem;
  margin-left: 0.5rem;
}
.offer-card .offer-features {
  /* mantém alinhamento à esquerda, mas centra a lista dentro do cartão */
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: inline-block;
  text-align: left;
}
.offer-card .offer-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;             /* texto um pouco maior */
  color: #333;
}
.offer-card .offer-features li::before {
  content: "\2713";              /* ✔ */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5278E1;           /* azul do site */
  color: #fff;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}
.offer-card .btn-offer {
  background: #16A34A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.offer-card .btn-offer:hover {
  background: #13823d;
  transform: translateY(-2px);
}
.offer-card .btn-offer:active {
  transform: translateY(-1px);
}
.btn-secondary {
  background: #1dd1a1;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
}
.btn-link {
  background: transparent;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  text-decoration: underline;
  display: block;
  margin-top: 0.5rem;
}

/* MODAIS DE PRÉVIA */
.preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
}
.preview-modal.active {
  display: flex;
}
.preview-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}
.close-preview {
  margin-top: 1rem;
  background: #ff6b6b;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* DEMais seções */
.guarantee-section,
.faq-section,
.testimonials-section {
  padding: 4rem;
  text-align: center;
}
.testimonials-section blockquote {
  font-style: italic;
  margin: 2rem auto;
  max-width: 600px;
}

/* RODAPÉ */
.footer {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
/* Subheadline do Hero */
.hero .subheadline {
  margin-bottom: 1rem;    /* antes era maior */
}
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
/* Mockup do slide */
.carousel-section .mockup {
  max-width: 300px;      /* aumenta tamanho do mockup */
  width: 100%;
  margin: 0 auto;        /* centraliza horizontal */
}

/* Título e sinopse do slide */
.slide-title {
  font-size: 1.25rem;    /* um pouco menor */
  text-align: center;
  margin-top: 0.75rem;
}
.slide-sinopse {
  font-size: 0.9rem;     /* reduz levemente */
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Botão Ler Agora */
.ler-agora-wrapper {
  text-align: center;
}
.reader-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.reader-header h2 {
  margin: 0;
  font-size: 1.25rem;
}
.close-reader {
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.reader-divider {
  border: none;
  border-top: 1px solid #ccc;  /* um pouco mais escuro para ficar visível */
  margin: 0;
}
.reader-body {
  flex: 1;                        /* ocupa todo espaço disponível */
  overflow-y: auto;               /* scroll só aqui */
  padding: 1rem 1.5rem;
}
.reader-chapter-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.reader-content img {
  max-width: 100%;
  height: auto;
}
.reader-content {
  line-height: 1.6;
  color: #333;
}
.reader-continue {
  margin: 2rem auto;
  display: block;
}
.reader-content h3 {
  margin-top: 0;
}
#continuar-lendo {
  display: block;
  margin: 2rem auto 0;
}
.swiper-button-prev,
.swiper-button-next {
  /* Tamanho e posicionamento */
  width: 3.5rem;
  height: 3.5rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;

  /* Fundo e borda */
  background: #ffffff;
  border: 2px solid #5278E1;
  border-radius: 50%;

  /* Sombra suave */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  /* Transição para hover */
  transition: 
    background 0.3s ease, 
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.swiper-button-prev:focus,
.swiper-button-next:focus,
.swiper-button-prev:active,
.swiper-button-next:active {
  transform: translateY(-50%) scale(1.05);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: inherit;         /* já definido no HTML ou via pseudo */
  font-size: 1.5rem;
  color: #5278E1;
  line-height: 1;
  position: relative;
  top: 0; left: 0;
  transform: none;
}
.swiper-button-prev::after { content: '‹'; }
.swiper-button-next::after { content: '›'; }
.swiper-button-prev,
.swiper-button-next {
  -webkit-tap-highlight-color: transparent;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.3);
}
.swiper-button-prev { left: 0.5rem; }
.swiper-button-next { right: 0.5rem; }

/* Responsivo: seta menor no mobile */
@media (max-width: 600px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.25rem;
  }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: linear-gradient(135deg, #5278E1, #4162B2);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(82,120,225,0.2);
  transform: translateY(-50%) scale(1.1);
}

/* 4) Aumentar e centralizar o mockup */
.carousel-section .mockup {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
/* 3) Oculta o botão Ler Agora */
.ler-agora-wrapper.hidden {
  display: none !important;
}
/* 1) Preço em dourado */
.hero .highlight-price {
  color: #F4B400;
}

/* 2) Botão “Ler agora” estilo igual ao seu modelo */
.btn-primary:hover {
  background: #4162B2;               /* tom mais escuro no hover */
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(-1px);
}
/* 4) Botão “Continuar lendo” igual ao seu verde */
.reader-continue {
  background: #9DE0B3;               /* verde claro */
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}
.reader-continue:hover {
  background: #7FCF9E;               /* tom mais escuro */
  transform: translateY(-2px);
}
.reader-continue:active {
  transform: translateY(-1px);
}
.btn-primary i.fa-solid {
  font-size: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
}
/* Inside style.css, after .btn-primary */
.btn-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
}
/* ── Centralizar o ‹ e › dentro do círculo ── */
.swiper-button-prev,
.swiper-button-next {
  position: absolute; /* já existente, mas reforça que é posição referência */
}
/* Ajuste fino para a seta “voltar” */
.swiper-button-prev::after {
  position: absolute !important;
  top: 43%    !important;   /* experimente até ficar perfeito */
  left: 50%   !important;
  transform: translate(-50%, -50%) !important;
}

/* Ajuste fino para a seta “avançar” */
.swiper-button-next::after {
  position: absolute !important;
  top: 43%    !important;   /* valores diferentes para esse botão */
  left: 55%   !important;
  transform: translate(-50%, -50%) !important;
}

/* ─── Botão “Continuar lendo” retangular e verde forte ─── */
.reader-continue {
  background: #16A34A !important;    /* verde */
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin: 2rem auto 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}
.reader-continue:hover {
  background: #13823d !important;
  transform: translateY(-1px);
}
.reader-continue:active {
  transform: translateY(0);
}
.hero h1 {
  font-size: 2.75rem;      /* aumenta um pouco */
  font-weight: 800;        /* deixa bem bold */
  line-height: 1.1;        /* reduz o espaço entre as linhas */
  margin-bottom: 0;        /* remove margin extra abaixo */
}
/* ─── Headline forte ─── */
.hero h1 {
  font-size: 2.75rem;      /* mantém o tamanho que você definiu */
  font-weight: 800;        /* bem bold */
  line-height: 1.1;        /* espaçamento mais apertado */
  color: #222222;          /* cinza-escuro quase preto */
  margin-bottom: 0.5rem;   /* espaço ajustado */
}

/* ─── Subheadline visível e centralizada ─── */
.hero p.subheadline {
  font-size: 1.125rem;     /* tamanho ideal */
  font-weight: 400;
  color: #555555;          /* cinza médio, ainda legível */
  text-align: center;
  margin: 1.9rem auto 0.1rem;  /* 1rem acima, 2rem abaixo */
  max-width: 800px;        /* não fique muito esticada em telas grandes */
  line-height: 1.4;
}
/* Animação de fade para o card de informações */
.slide-info {
  opacity: 1;
  transition: opacity 0.3s ease;
}
/* ─── Seção “app-promo” ─── */
.app-promo-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222222;         /* mesmo preto forte da headline */
  text-align: center;
  margin: 7rem auto 2rem; /* mais espaço acima (6rem) e abaixo (2rem) */
  line-height: 1.2;
}
.app-promo-title .highlight-app {
  color: #16A34A; /* mesma cor do botão “Continuar lendo” */
}

/* ─── Responsividade do vídeo ─── */
wistia-player {
  max-width: 600px;         /* não passe disso */
  width: 80%;               /* 80% do container */
  margin: 0 auto 2rem;      /* centraliza e dá 2rem de bottom */
}
.btn-acquire {
  background: #16A34A;      /* mesma cor do “Continuar lendo” */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-acquire i {
  font-size: 1.1rem;
}
.btn-acquire:hover {
  background: #13823d;
  transform: translateY(-1px);
}
.book-container {
  transition: opacity 0.3s ease;
}
.book-container.is-fading {
  opacity: 0;
}
/* Seção de benefícios */
.features-section {
  background: #F9F9F9;
  padding: 4rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.feature-icon img {
  width: 32px;
  height: 32px;
}
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222222;
  margin: 0.5rem 0;
}
.feature-card p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}
/* Seção de benefícios — fundo apenas nos ícones */
#features .feature-card {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0; /* elimina o padding interno, mantendo só o margin-bottom do ícone */
}

#features .feature-card h3,
#features .feature-card p {
  margin: 0.25rem 0; /* ajusta um espacinho entre título e descrição */
}

/* Opcional: se quiser dar um pouco de espaçamento vertical entre os cards */
#features .feature-card {
  margin: 1.5rem 0;
}

/* Mantém apenas o .feature-icon com fundo branco */
#features .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;

  /* fundo degradê suave */
  background: linear-gradient(135deg, rgba(82,120,225,0.1) 0%, rgba(82,120,225,0.03) 100%);

  /* borda e cantos arredondados */
  border: 2px solid #EEF2FF;
  border-radius: 16px;

  /* sombra mais marcante com toque azul */
  box-shadow: 0 4px 12px rgba(82,120,225,0.15);

  /* transição para hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#features .feature-icon:hover {
  /* leve “flutuar” */
  transform: translateY(-4px);

  /* sombra e borda intensificadas */
  box-shadow: 0 8px 24px rgba(82,120,225,0.25);
  border-color: rgba(82,120,225,0.5);
}
#features .feature-icon img {
  width: 40px;      /* antes era 32px */
  height: 40px;     /* antes era 32px */
}
/* ─── Setas do carrossel: círculo branco com borda azul ─── */
.swiper-button-prev,
.swiper-button-next {
  background: #fff !important;
  border: 2px solid #5278E1 !important;
  color: #5278E1 !important;
  width: 3rem !important;
  height: 3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(82,120,225,0.15) !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Garantir ícones ‹ e › bem visíveis */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem !important;
  color: #5278E1 !important;
  line-height: 1 !important;
}
.swiper-button-prev::after { content: '\2039' !important; } /* ‹ */
.swiper-button-next::after { content: '\203A' !important; } /* › */

/* Hover: círculo azul + ícone branco + leve “pulso” */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #5278E1 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(82,120,225,0.3) !important;
  transform: translateY(-50%) scale(1.1) !important;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff !important;
}

/* Mobile: reduz um pouco */
@media (max-width: 600px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.25rem !important;
  }
}
/* Botão Adquirir */
.btn-offer {
  background: #16A34A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-offer:hover {
  background: #13823d;
  transform: translateY(-2px);
}
.btn-offer:active {
  transform: translateY(-1px);
}
/* ─── Badges ─── */
.offer-card {
  position: relative; /* para posicionar a badge */
}
.offer-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Badge “Mais popular” */
.badge-popular {
  background: #5278E1;
  color: #fff;
}

/* Badge “Melhor opção” */
.badge-best {
  background: #F4B400;
  color: #222;
}

/* ─── Destaque no hover geral ─── */
.offer-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ─── Semanal mantém estilo normal ─── */

/* ─── Plano Mensal: destaque médio ─── */
.offer-card.offer-monthly {
  border: 2px solid #5278E1;
}
.offer-card.offer-monthly .btn-offer {
  background: #16A34A;       /* verde semanal */
  color: #fff;
}
.offer-card.offer-monthly .btn-offer:hover {
  background: #13823d;       /* verde escuro no hover */
}

/* ─── Vitalício: destaque máximo ─── */
.offer-card.offer-lifetime {
  background: linear-gradient(135deg, #F4B400 0%, #FFC107 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
  padding: 3rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.offer-card.offer-lifetime .offer-badge.badge-best {
  position: absolute;
  top: -1.25rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(255,255,255,0.85) !important;
  color: #F4B400 !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
  z-index: 10 !important;
}
.offer-card.offer-lifetime .offer-title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0.5rem 0 1rem !important;
}
.offer-card.offer-lifetime .offer-price {
  margin-bottom: 2rem !important;
}
.offer-card.offer-lifetime .offer-title,
.offer-card.offer-lifetime .price-value {
  color: #fff;
}
.offer-card.offer-lifetime .price-period {
  display: none !important; /* sem “/semana” em vitalício */
}
.offer-card.offer-lifetime .offer-features {
  margin: 1rem auto 2.5rem !important;
  display: inline-block;
}
.offer-card.offer-lifetime .offer-features li {
  font-size: 1.1rem !important;
  color: #fff !important;
  margin-bottom: 1rem !important;
}
.offer-card.offer-lifetime .price-value {
  font-size: 3rem !important;
  font-weight: 900 !important;
  color: #fff !important;
}
.offer-card.offer-lifetime .offer-features li::before {
  background: #fff !important;
  color: #F4B400 !important;
  width: 1.5em !important;
  height: 1.5em !important;
  font-size: 1rem !important;
}
.offer-card.offer-lifetime .btn-offer {
  background: #fff !important;
  color: #F4B400 !important;
  border: 2px solid #fff !important;
  border-radius: 6px !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25) !important;
  margin-top: auto !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.offer-card.offer-lifetime .btn-offer:hover {
  background: #fefefe !important;
  transform: translateY(-2px) !important;
}
.offer-card.offer-lifetime:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4) !important;
}
/* ─── Animações suavizadas ─── */
.offer-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
/* ─── Comentários estilo Facebook ─── */

/* Fundo cinza da seção permanece */
:root {
  --testimonial-indent: calc(48px + 0.75rem);
}
.testimonials-section {
  background: #F9F9F9;
  padding: 0; /* remover padding extra, vamos controlar internamente */
  padding-bottom: 0.5rem !important;
}

/* Container branco único para todos os comentários */
.testimonials-list {
  background: #F9F9F9;
  border-radius: 0;       /* sem cantos arredondados */
  padding: 0;             /* sem padding extra */
  margin: 0 auto 2rem;
  max-width: 600px;       /* largura máxima, ajuste conforme seu layout */
}

/* Cada “card” vira apenas um item de lista */
.testimonial-card {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0.75rem 1rem !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border-bottom: 1px solid #F9F9F9 !important;
}

/* Remove border do último item */
.testimonial-card:last-child {
  border-bottom: none !important;
}

/* Cabeçalho do comentário (avatar + nome + data) */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700; 
  color: #777;
}
.testimonial-date {
  font-size: 0.85rem;
  color: #777;
}

/* Conteúdo do comentário */
.testimonial-content {
  padding-left: var(--testimonial-indent) !important;
}
.testimonial-content > .testimonial-image {
  margin-left: 0 !important;
  display: block; 
}
.testimonial-content > .testimonial-image {
  width: 120px;
  max-width: 100%;
  height: auto;
}
.testimonial-content p {
  margin: 0 0 0.5rem;
  font-size: 1rem !important;
  color: #000; 
  line-height: 1.5;
  text-align: left;
  font-weight: 400; 
}
.testimonial-image {
  width: 120px;
  max-width: 100%;
  border-radius: 8px;
  margin: 0.5rem 0;
}

/* Ações (Responder + Curtir) */
.testimonial-actions {
  display: flex;
  align-items: flex-start !important;
  justify-content: space-between;
  margin: 0 var(--testimonial-indent) 1rem;
}
.testimonial-reply {
  font-size: 0.9rem !important;   /* mesmo tamanho do nome */
  font-weight: 700 !important;    /* negrito como o nome */
  color: #777 !important;         /* mesma cor suave do nome/data */
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 0.6rem !important;
}
.testimonial-reply:hover {
  text-decoration: underline;
}
.testimonial-like {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.testimonial-like i {
  font-size: 1rem;
}
.testimonial-like span {
  line-height: 1;
}
@media (max-width: 600px) {
  :root {
    --testimonial-indent: calc(40px + 0.75rem);
  }
  .testimonial-image {
    width: 100px;
  }
}
.testimonial-content .testimonial-image {
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Mantém apenas o espaçamento vertical */
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.testimonials-separator {
  width: 120px;
  height: 6px;
  background: #777;           /* cinza escuro */
  margin: 0 auto;             /* centraliza */
  border-radius: 3px;  
}
.testimonials-title {
  margin: 0.5rem 0 1.5rem;    /* pouco espaço acima */
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}
/* botão de enviar */
.send-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; /* sem flash azul em mobile */
}
.send-btn:focus,
.send-btn:active {
  outline: none;
  background: none;
}
.send-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.send-btn[disabled] {
  opacity: 0.4;
  cursor: default;
}

/* Quando tiver texto, remove o pseudo-caret */
.testimonial-input.has-text::after {
  display: none;
}

/* ─── Espaço extra abaixo do campo ─── */
.testimonial-input {
  position: relative;
}

/* Webkit Browsers */
.testimonial-input textarea::-webkit-scrollbar {
  width: 0.3rem;             /* mais fina */
}
.testimonial-input textarea::-webkit-scrollbar-track {
  background: #EEF2FF;
  border-radius: 0.75rem;
  margin: 0.3rem 0;          /* afasta um pouco de cima/baixo */
}
.testimonial-input textarea::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 0.75rem;
}

/* Firefox */
.testimonial-input textarea {
  width: 100%;
  padding: 0.4rem 2.5rem 0.4rem 1rem; /* top/right/bottom/left */
  background: #EEF2FF;
  border: none;
  border-radius: 0.75rem;
  box-sizing: border-box;

  /* tipografia igual aos depoimentos */
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  font-family: inherit;

  /* deixa o JS controlar a altura */
  resize: none;
  height: auto;
  overflow-y: hidden;
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-input .send-btn {
  position: absolute;
  top: 50%;    
  right: 0.75rem;  
  transform: translateY(-50%);
}
.testimonial-input.expanded .send-btn {
  top: auto;
  bottom: 0.4rem;  /* mesmo valor de antes */
  transform: none;
}
.testimonial-input textarea::placeholder {
  font-size: 1rem;
  line-height: 1.5;                 /* garante cor consistente */
  font-weight: 400;
  font-family: inherit;
  color: #777;
  opacity: 1;
}
.testimonial-input:not(:focus-within):not(.has-text)::after {
  content: "|";
  position: absolute;
  left: 1rem;                 /* mesmo padding-left do textarea */
  top: 0.75rem;               /* mesmo padding-top */
  transform: none;            /* remove o translateY */
  font-size: 0.8rem;          /* mais fino */
  color: rgba(0,0,0,0.3);     /* mais suave */
  animation: blink 1s steps(2,start) infinite;
  pointer-events: none;
}
/* 2.1) Fonte do número igual à da data */
.testimonial-card .like-count {
  font-family: 'Roboto', sans-serif;   /* mesma família */
  font-size: 0.875rem;                 /* ex: 14px, igual ao .testimonial-date */
  font-weight: 400;                    /* peso igual */
  color: #666;                         /* mesma cor da data */
  vertical-align: middle;              /* alinha no meio da linha */
  margin-left: 0.25rem;                /* espaçamento entre ícone e nº */
}
.testimonial-like .like-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;               /* sem preenchimento */
  stroke: currentColor;     /* cor herdada do botão */
  color: #777;              /* mesma cor dos textos de data */
  transition: fill 0.2s, stroke 0.2s;
}
/* 2.3) Garantir que nada sobrescreva o ícone */
.like-icon {
  width: 1.5rem;     /* ~24px */
  height: 1.5rem;
  fill: none;        /* só contorno */
  stroke: currentColor;
  transition: fill 0.3s, stroke 0.3s;
}
.like-count {
  font-family: 'Roboto', sans-serif; /* igual .testimonial-date */ 
  font-size: 0.85rem;                /* ex: 14px */ 
  color: #777;                       /* mesma cor suave */ 
}
.testimonial-like.liked .like-icon {
  fill: #E1306C !important;
  stroke: #E1306C !important;
  color: #E1306C !important;
}
.testimonial-like:focus {
  outline: none;
  background: transparent;
}
/* notification box */
.notification {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(220, 20, 60, 0.9);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 999;

  /* centraliza o texto no meio da caixinha */
  display: flex;
  justify-content: center;  /* centraliza horizontalmente */
  align-items: center;      /* centraliza verticalmente */
  text-align: center;       /* caso quebre em mais linhas */
}

/* blink animation */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* quando ativa, pisca e depois fica visível */
.notification.visible {
  opacity: 1;
  animation: blink 0.15s ease-in-out 6; /* 6 piscadas rápidas */
}
/* ====================== */
/* FAQ – estilo premium  */
/* ====================== */

/* 1) Variáveis para paleta */
:root {
  --faq-bg: #ffffff;
  --faq-title-color: #333333;
  --faq-text: #555555;
  --faq-accent: #4A90E2;
  --faq-shadow: rgba(0, 0, 0, 0.08);
}

/* 2) Container geral */
.faq-section {
  background: var(--faq-bg);
  padding: 3rem 1rem 4rem;            /* mais espaçamento no topo */
  font-family: 'Roboto', sans-serif;
}

/* 3) Título com personalidade */
.faq-title {
  /* herda .section-title, mas você pode reforçar: */
  font-size: 2.5rem;        /* igual ao H2 dos depoimentos */
  font-weight: 700;
  color: #222222;           /* mesma cor escura */
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* 4) Cada cartão */
.faq-item {
  background: #ffffff;                           /* branco puro */
  border: 1px solid rgba(0, 0, 0, 0.05);         /* leve contorno */
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);     /* sombra mais forte */
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* 5) Botão da pergunta */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--faq-title-color);
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(74,144,226,0.05);
}

/* 6) Ícone + / – */
.faq-toggle-icon {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--faq-accent);
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--faq-title-color);
}

/* 7) Resposta com transição suave */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;  /* suficiente para a maior resposta */
  padding: 1rem 2rem 2rem;
}
.faq-answer p {
  text-align: left;
  margin: 0;
  color: var(--faq-text);
  line-height: 1.6;
}

/* 8) Ajuste geral de espaçamentos */
.faq-item + .faq-item {
  margin-top: 1rem;
}
:root {
  --guarantee-bg: #50C878;   /* novo verde esmeralda */
}
/* --- Ajuste do título para ficar mais para cima --- */
.guarantee-section {
  background: linear-gradient(180deg, #50C878 0%, #45B26B 100%);
  padding: 3rem 1rem 6rem;  /* título um pouco mais pra cima */
}
.guarantee-title {
  color: #fff;
  font-size: 2.0rem;
  margin: 0.5rem 0 1.5rem;
}
.guarantee-icon svg {
  display: block;                       /* centraliza se for inline */
  width: 64px;
  height: 64px;
  transform: scale(1.05);               /* leve zoom */
  transform-origin: center center;      /* escala pelo centro */
  filter: drop-shadow(0 0 12px rgba(80,200,120,0.7));  /* glow permanente */
  /* garante que nenhuma animação permaneça */
  animation: none !important;
}

/* --- Caixa branca principal --- */
.guarantee-box {
  background: #ffffff;
  border-radius: 1rem;            /* cantos bem suaves */
  padding: 4rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  position: relative;
}

/* Ícone de escudo */
.guarantee-icon {
  display: inline-block;
}
/* Texto forte (preto) */
.guarantee-strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

/* Texto fraco */
.guarantee-light {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Caixa cinza interna --- */
.guarantee-simple-box {
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.guarantee-simple-title {
  text-align: center !important;
  /* margem abaixo igual ao gap dividido por 2, para não encostar demais */
  margin-bottom: calc(var(--flow-gap, 2rem) / 2) !important;
}

/* Lista de passos */
.guarantee-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; 
  margin-bottom: 1rem;
}
.guarantee-steps-list li p,
.guarantee-steps-list li span {
  margin: 0;
}
.step-circle {
  background: #50C878;
  color: #fff;
  font-weight: 700;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0;  /* alinha o topo com texto */
  flex: 0 0 auto;
}
.guarantee-steps-list li > span:last-child {
  margin: 0;
  line-height: 1.6;
  text-align: left;
}
.guarantee-steps-list li span:last-child {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
  word-break: break-word;
}
/* Conclusão dentro da caixa branca */
.guarantee-conclusion {
  font-size: 1.125rem;    /* aumenta um pouco */
  font-weight: 600;       /* deixa “mais forte” */
  color: #222222;         /* tom escuro consistente */
  line-height: 1.6;
  margin-top: 1.5rem;     /* separação do box cinza */
  text-align: center;     /* mantém centralizado */
}
/* botão de scroll – azul personalizado e sem highlight */
.scroll-to-offers {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #4162B2;          /* novo azul */
  border: none;
  border-radius: 50%;
  display: none;                       /* exibido via .visible */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent; /* remove o flash azul no mobile */
  color: #fff;
}
.scroll-to-offers.visible {
  display: flex;
  opacity: 1;
}

/* remove outline e não altera o bg no foco */
.scroll-to-offers:focus {
  outline: none;
  background-color: #4162B2;
}

/* SVG da seta */
.scroll-to-offers svg {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}
/* ===== Remover highlight azul, sublinhado e fundo indevido ===== */
.testimonial-reply,
#btn-send,
.faq-question {
  background: none !important;            /* sem fundo ao clicar */
  outline: none !important;               /* sem outline no foco */
  -webkit-tap-highlight-color: transparent; /* sem “flash” azul mobile */
  text-decoration: none !important;      /* sem sublinhado */
}

/* garantir também para estados focus/active */
.testimonial-reply:focus,
.testimonial-reply:active,
#btn-send:focus,
#btn-send:active,
.faq-question:focus,
.faq-question:active {
  background: none !important;
  outline: none !important;
  text-decoration: none !important;
}
.reader-content p {
  margin-bottom: 1.1rem;
}
/* Footer simplificado */
.footer-section {
  background: #f9fafb;
  border-top: 1px solid #e2e2e2;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Direitos reservados – destaque maior */
.footer-text {
  flex: 1 1 100%;
  text-align: center;
  color: #333;
  font-size: 0.875rem;
  font-weight: 600;               /* mais forte */
  font-family: 'Roboto', sans-serif;
}

/* Links – menos proeminentes */
.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex: 1 1 100%;
}

.footer-link {
  color: #555;
  font-size: 0.875rem;
  font-weight: 400;               /* menos forte */
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Roboto', sans-serif;
}

.footer-link:hover {
  color: #4162B2;
}
/* =============================== */
/* Fluxograma de passos (tracejado) */
/* =============================== */

/* Container dos passos em coluna */
.guarantee-flow {
  --flow-gap: 2rem;       /* distância entre as caixas */
  --arrow-size: 0.75rem;  /* tamanho da seta */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--flow-gap);
}

/* Cada caixa tracejada */
.flow-step {
  /* mantém o tracejado na cor do verde */
  border-color: var(--guarantee-bg) !important;
  /* glow igual ao escudo */
  box-shadow: 0 0 12px rgba(80,200,120,0.7) !important;
  /* texto também brilha levemente */
  text-shadow: 0 0 6px rgba(80,200,120,0.7) !important;
}
.flow-step:not(:last-child)::after {
  /* posiciona a base da seta a meio caminho do gap */
  bottom: calc(var(--flow-gap)/2 - var(--arrow-size)) !important;
  /* glow fixo na própria seta */
  filter: drop-shadow(0 0 12px rgba(80,200,120,0.7)) !important;
}

/* Responsivo: reduz espaçamento em telas muito estreitas */
@media (max-width: 400px) {
  .guarantee-flow {
    --flow-gap: 1.5rem;
    --arrow-size: 0.6rem;
  }
}
/* 3) Textos também recebem um leve brilho */
.flow-step {
  text-shadow: 0 0 6px rgba(80, 200, 120, 0.7);
}
/* ─── Variáveis do fluxo ─── */
.guarantee-flow {
  --flow-gap: 2rem;       /* espaço entre caixas */
  --arrow-size: 0.75rem;  /* tamanho da seta */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--flow-gap);
}

/* ─── Caixas tracejadas com glow ─── */
.flow-step {
  position: relative;
  max-width: 320px;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px dashed var(--guarantee-bg);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--guarantee-bg);
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;

  /* glow igual ao escudo */
  box-shadow: 0 0 12px rgba(80,200,120,0.7);
  text-shadow: 0 0 6px rgba(80,200,120,0.7);
}

/* ─── Seta apontando para baixo, centralizada no meio do gap ─── */
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* mantém centralizada no meio do gap */
  top: calc(100% + var(--flow-gap)/2 - var(--arrow-size)/2);

  /* triângulo apontando para baixo */
  border-left: var(--arrow-size) solid transparent;
  border-right: var(--arrow-size) solid transparent;
  border-top: var(--arrow-size) solid var(--guarantee-bg);

  /* glow */
  filter: drop-shadow(0 0 12px rgba(80,200,120,0.7));
}
/* ─── Mobile: ajusta gap e seta proporcionalmente ─── */
@media (max-width: 400px) {
  .guarantee-flow {
    --flow-gap: 1.5rem;
    --arrow-size: 0.6rem;
  }
}
#offer-monthly {
  scroll-margin-top: 100px;
}
