/* Reset e Base */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #FFD700;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px 5px;
}

header h1 {
    font-size: 3em;
    margin: 0;
    animation: glow 2s ease-in-out infinite alternate;
}

header .sub {
    font-size: 1.4em;
    margin-top: 5px;
    margin-bottom: 0;
    min-height: 40px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 2px 20px;
}

.hero img {
    display: block;
    margin: 20px auto;
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
}

/* Botões */
.btn, .btn-oferta {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    padding: 15px 10px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover, .btn-oferta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffd700;
}

/* Seções */
section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Divider */
.divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 40px auto;
    border-radius: 50px;
}



/* Lista de Benefícios */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 15px;
}

/* FAQ */
.faq-question {
    width: 100%;
    background-color: #111;
    color: #FFD700;
    cursor: pointer;
    padding: 15px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    transition: background-color 0.3s;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #222;
}

.faq-question .seta {
    font-size: 1em;
    color: #FFD700;
    transition: transform 0.3s;
}

/* Gira a seta quando abre */
.faq-item.active .seta {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #000;
    padding: 0 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px;
}

/* Oferta */
.oferta {
    text-align: center;
    padding: 60px 20px;
}

.oferta h2 {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 10px;
}

.sub-oferta {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.oferta-card {
    background-color: #111;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.preco-anterior {
    color: #ccc;
    text-decoration: line-through;
    font-size: 1em;
}

.preco-anterior span {
    color: #999;
}

.preco {
    font-size: 2em;
    color: #FFD700;
    margin: 10px 0;
}

.info-preco {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.beneficios-oferta {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.beneficios-oferta li {
    margin-bottom: 10px;
    color: #FFD700;
}

.urgencia {
    color: #ff4d4d;
    margin-top: 20px;
    font-weight: bold;
}

/* Depoimentos */
.depoimentos {
    text-align: center;
    padding: 60px 20px;
}

.depoimentos h2 {
    color: #fff;
    margin-bottom: 40px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.depoimento {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.depoimento:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.depoimento p {
    color: #FFD700;
    font-style: italic;
    margin-bottom: 10px;
}

.depoimento span {
    color: #888;
    font-size: 0.9em;
}

/* Amostra do Livro */
.amostra-livro {
    text-align: center;
    padding: 10px 20px;
}

.amostra-livro h2 {
    color: #fff;
    margin-bottom: 10px;
}

.amostra-livro p {
    color: #ccc;
    margin-bottom: 30px;
}

/* CONTAINER GERAL */
.carousel-wrapper {
  max-width: 1100px;
  margin: 80px auto;
  position: relative;
  padding: 0 40px;
}

/* SWIPER COM IMAGENS */
.carrossel-netflix {
  overflow: visible;
}

.carrossel-netflix .swiper-slide {
  width: 280px !important;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.carrossel-netflix .swiper-slide img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carrossel-netflix .swiper-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}



.carousel-dots {
  margin-top: 40px;
  text-align: center;
}

.swiper-pagination {
  display: inline-block;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(218, 165, 32, 1) !important;
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #FFD700;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.destaques {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destaques li {
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  color: #f5f5f5;
  font-size: 1.15em;
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(0,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaques li:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0,255,255,0.25);
}

.destaques .titulo {
  color: #FFD700;
  font-size: 1.2em;
}

.destaques .sub {
  display: block;
  margin-top: 5px;
}

.destaques .destaque {
  color: #00ffff;
  font-weight: bold;
  text-shadow: 0 0 5px #00ffff88;
}


/* Transformações Geradas */
.transformacoes {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.transformacoes h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}

.lista-transformacoes {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
    line-height: 1.8;
    color: #FFD700;
    max-width: 700px;
    margin: auto;
}

.lista-transformacoes li {
    margin-bottom: 15px;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #666;
}

/* Animação do Título */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
    }
    to {
        text-shadow: 0 0 20px #ffcc00, 0 0 40px #ffcc00;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header .sub {
        font-size: 1.2em;
    }
    .hero img {
        max-width: 90%;
    }
    .btn {
        padding: 12px 24px;
        font-size: 1em;
    }
}

.headline-transformadora {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 40px 0;
  color: #ffffff;
  text-shadow: 0 0 10px #000;
}

.bg-transforme {
  background: linear-gradient(90deg, #00ffff33, #00ffff11);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  animation: pulse-bg 2.5s infinite ease-in-out;
}

.dourado {
  color: #FFD700;
  font-weight: bold;
  text-shadow: 0 0 6px #FFD70088;
}

.neon {
  color: #00ffff;
  font-weight: bold;
  text-shadow: 0 0 8px #00ffff, 0 0 12px #00ffffaa;
}

@keyframes pulse-bg {
  0% { box-shadow: 0 0 10px #00ffff33; }
  50% { box-shadow: 0 0 20px #00ffffaa; }
  100% { box-shadow: 0 0 10px #00ffff33; }
}

.cta {
  background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.003), transparent),
              linear-gradient(to bottom, #0a0a0a, #000);
  padding: 80px 30px;
  text-align: center;
  position: relative;
  z-index: 1;

  /* EFEITO NEON AZUL */
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow:
    0 0 12px rgba(0, 255, 255, 0.2),
    0 0 25px rgba(0, 255, 255, 0.15),
    inset 0 0 10px rgba(0, 255, 255, 0.08);
  border-radius: 16px;

  /* CENTRALIZAÇÃO E LIMITE */
  max-width: 80%;
  margin: auto;
  box-sizing: border-box;
}



.cta h2 {
  font-size: 2.8em;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  margin-bottom: 10px; /* Reduzido */
}

.cta .preco {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 15px; /* Reduzido */
}

.cta .valor {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.6em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.btn {
  background: #FFD700;
  color: #000;
  font-size: 1.2em;
  font-weight: bold;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  margin-bottom: 10px; /* Controla o espaço com a observação */
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.segredo {
  background: radial-gradient(circle at 50% 20%, rgba(0, 10, 40, 0.5), rgba(0, 0, 0, 0.9));
  padding: 20px 30px;
  color: #f0f0f0;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 0, 80, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 170, 255, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.emoji-cadeado {
  font-size: 3.5em; /* Aumenta o tamanho do emoji */
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: flutuarCadeado 4s ease-in-out infinite;
}

.headline-transformadora2 {
  font-size: 2.6em;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  margin-bottom: 30px;
  font-weight: 700;
}

.intro-segredo {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.pilares {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: left;
}

.pilares li {
  font-size: 1.1em;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 15px 20px;
  border-left: 4px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
  transition: background 0.3s;
}

.pilares li:hover {
  background: rgba(255, 215, 0, 0.05);
}

.chamada-final {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.chamada-final .destaque {
  color: #FFD700;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ✅ RESPONSIVO PARA TELAS MENORES */
@media (max-width: 600px) {
  .cta {
    padding: 60px 20px;
  }

  .cta h2 {
    font-size: 2em;
  }

  .cta .preco {
    font-size: 1.2em;
  }

  .cta .valor {
    font-size: 1.4em;
  }

  .btn {
    font-size: 1em;
    padding: 14px 28px;
  }

  .observacao {
    font-size: 0.9em;
  }
}

/* Remove o ícone padrão do Swiper para não duplicar */
.swiper-button-prev::after,
.swiper-button-next::after { content: none !important; }

/* Botões das setas */
.nav-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);   /* centraliza verticalmente */
  width:56px; height:56px;
  border-radius:50%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,215,0,0.25);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 10;
}

/* Lado esquerdo/direito */
.nav-arrow.prev{ left: 12px; }
.nav-arrow.next{ right: 12px; }

/* Ícone (SVG) dourado */
.nav-arrow svg{
  width:26px; height:26px;
  fill:none; stroke:#FFD700; stroke-width:3;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.nav-arrow:hover svg{
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255,215,0,.65));
}

/* Ajuste em telas menores */
@media (max-width: 768px){
  .nav-arrow{ width:48px; height:48px; }
  .nav-arrow svg{ width:22px; height:22px; }
  .nav-arrow.prev{ left: 6px; }
  .nav-arrow.next{ right: 6px; }
}

/* ====== FIX DEFINITIVO: esconder o ícone azul nativo do Swiper ====== */
.carrossel-netflix{
  /* deixa o ícone nativo invisível mesmo se aparecer */
  --swiper-navigation-color: transparent !important;
}

/* desliga qualquer conteúdo/ícone padrão do Swiper */
.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-button-lock.swiper-button-prev::after,
.swiper-button-lock.swiper-button-next::after{
  content: none !important;
  display: none !important;
}

/* evita qualquer background-image herdado */
.swiper-button-prev,
.swiper-button-next{
  background-image: none !important;
  color: transparent !important;   /* não afeta seu SVG (usa stroke próprio) */
}

/* ====== Sua seta dourada (SVG) ====== */
.nav-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:56px; height:56px;
  border:0;
  border-radius:50%;
  /* escolha 1: só a seta (sem círculo de fundo) */
  background: none;

  /* escolha 2 (se quiser o círculo escuro, troque a linha acima por esta):
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,215,0,.25);
  */

  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:10;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;  /* remove highlight azul em toque */
}

.nav-arrow:focus{ outline:none; box-shadow:none; }

.nav-arrow.prev{ left:12px; }
.nav-arrow.next{ right:12px; }

.nav-arrow svg{
  width:26px; height:26px;
  fill:none; stroke:#FFD700; stroke-width:3;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.nav-arrow:hover svg{
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255,215,0,.65));
}

@media (max-width: 768px){
  .nav-arrow{ width:48px; height:48px; }
  .nav-arrow svg{ width:22px; height:22px; }
  .nav-arrow.prev{ left:6px; }
  .nav-arrow.next{ right:6px; }
}




