/* 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;
}

.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;
  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%);
  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{
  --swiper-navigation-color: transparent !important;
}

.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;
}

.swiper-button-prev,
.swiper-button-next{
  background-image: none !important;
  color: transparent !important;
}

.nav-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:56px; height:56px;
  border:0;
  border-radius:50%;
  background: none;
  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;
}
.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; }
}

/* ================== NOVOS BLOCOS (a partir do SOBRE) ================== */

/* SOBRE (autor) */
.sobre-wrap{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:28px;
  align-items:center;
  max-width: 980px;
  margin: 0 auto;
}
.sobre-foto img{
  width:100%;
  max-width:320px;
  border-radius:16px;
  box-shadow:0 0 24px rgba(255,215,0,0.25);
  border:1px solid rgba(255,215,0,0.2);
}
.sobre-texto p{ color:#f1f1f1; line-height:1.7; margin:0 0 14px; }
.sobre-timeline{ list-style:none; padding:0; margin:14px 0 0; text-align:left; }
.sobre-timeline li{
  padding:10px 14px; background:#0b0b0b; border:1px solid rgba(255,255,255,0.08);
  border-radius:10px; margin-bottom:10px; color:#ddd;
}
.sobre-timeline li span{ color:#00ffff; font-weight:700; margin-right:8px; }
@media (max-width: 820px){
  .sobre-wrap{ grid-template-columns:1fr; }
  .sobre-foto{ text-align:center; }
  .sobre-foto img{ max-width:260px; }
}

/* PROVA SOCIAL */
.social-proof h2{ color:#fff; }
.social-proof .subtle{ color:#bbb; margin-top:-6px; }
.proof-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap:16px;
}
.proof-card{
  display:flex; gap:14px; align-items:flex-start;
  background:#111; border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:14px 16px;
  box-shadow:0 0 16px rgba(255,215,0,.12);
  transition:transform .2s, box-shadow .2s;
}
.proof-card:hover{ transform: translateY(-2px); box-shadow:0 0 22px rgba(255,215,0,.25); }
.avatar{
  width:54px; height:54px; border-radius:50%; object-fit:cover;
  border:1px solid rgba(255,215,0,.3); box-shadow:0 0 10px rgba(255,215,0,.25);
}
.proof-body h3{
  margin:0 0 4px; color:#fff; font-size:1.05em; font-weight:700;
}
.proof-body h3 span{ color:#888; font-weight:500; margin-left:6px; }
.proof-body p{ margin:0; color:#FFD700; line-height:1.5; }
.impacto{ margin-top:22px; display:flex; flex-direction:column; align-items:center; }
.impacto-num{
  font-size:2.2em; font-weight:800; color:#FFD700;
  text-shadow:0 0 18px rgba(255,215,0,.45);
}
.impacto-label{ color:#bbb; }

/* CHECKLIST */
.checklist h2{ color:#fff; margin-bottom:8px; }
.checklist-lista{ list-style:none; padding:0; max-width:780px; margin:14px auto 0; color:#FFD700; }
.checklist-lista li{
  background:linear-gradient(90deg, #0f0f0f, #1a1a1a);
  border:1px solid #2a2a2a; border-radius:12px; padding:14px 16px; margin-bottom:12px;
  position:relative;
}
.checklist-lista li::before{
  content:"✦"; position:absolute; left:12px; top:50%; transform:translateY(-50%);
  color:#00ffff; text-shadow:0 0 6px #00ffffaa;
}
.checklist-lista li{ padding-left:40px; }

/* MECANISMO (3 pilares) */
.mecanismo h2{ color:#fff; }
.pilares3{
  margin-top:18px;
  display:grid; gap:16px;
  grid-template-columns: repeat(3, 1fr);
}
.pilar{
  background:#111; border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:18px; text-align:left;
  box-shadow:0 0 18px rgba(0,255,255,.08);
  transition:transform .2s, box-shadow .2s;
}
.pilar:hover{ transform: translateY(-2px); box-shadow:0 0 24px rgba(0,255,255,.18); }
.pilar-icone{ font-size:1.6em; margin-bottom:6px; }
.pilar h3{ margin:0 0 6px; color:#FFD700; }
.pilar p{ margin:0; color:#ddd; line-height:1.6; }
@media (max-width: 920px){ .pilares3{ grid-template-columns:1fr; } }

/* RESULTADOS 7/14/30 */
.resultados h2{ color:#fff; }
.timeline{
  display:grid; gap:16px; max-width:900px; margin:18px auto 0;
  grid-template-columns: repeat(3, 1fr);
}
.tl-item{
  background:#0e0e0e; border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:18px; text-align:left;
}
.tl-dia{
  display:inline-block; font-weight:800; color:#00ffff; margin-bottom:6px;
  text-shadow:0 0 8px #00ffffaa;
}
.resultados-nota{ color:#888; margin-top:10px; }
@media (max-width: 920px){ .timeline{ grid-template-columns:1fr; } }

/* BÔNUS / VALUE STACK */
.bonus h2{ color:#fff; }
.bonus-grid{
  display:grid; gap:16px; margin-top:18px;
  grid-template-columns: repeat(3, 1fr);
}
.bonus-card{
  background:#101010; border:1px solid rgba(255,255,255,.08);
  border-radius:14px; padding:18px; text-align:left;
  box-shadow:0 0 18px rgba(255,215,0,.12);
}
.bonus-card h3{ margin:0 0 6px; color:#FFD700; }
.bonus-card p{ margin:0 0 10px; color:#ddd; }
.bonus-card .valor{
  display:inline-block; padding:6px 10px; border-radius:8px;
  border:1px solid rgba(255,215,0,.35);
  color:#FFD700; font-weight:700; background:rgba(255,215,0,.06);
}
.stack{ margin-top:18px; }
.stack .stack-linha{ color:#f1f1f1; font-size:1.05em; }
.stack .stack-linha .dourado{ font-size:1.15em; }
@media (max-width: 920px){ .bonus-grid{ grid-template-columns:1fr; } }

/* OFERTA v2 (mantém id/oferta) */
.oferta-v2 h2{ color:#fff; }
.oferta-v2-card{
  border:1px solid rgba(0,255,255,.22);
  box-shadow:0 0 18px rgba(0,255,255,.12), inset 0 0 10px rgba(0,255,255,.08);
}
.preco-ancora{
  display:flex; gap:14px; align-items:baseline; justify-content:center; margin-bottom:10px;
}
.preco-ancora .risco{
  color:#aaa; text-decoration:line-through;
}
.preco-ancora .agora{
  color:#FFD700; font-size:1.6em; text-shadow:0 0 12px rgba(255,215,0,.4);
}
.preco-ancora .parcela{ color:#bbb; }
.nota-parcela{ color:#888; font-size:.9em; margin-top:6px; }

/* GARANTIA v2 */
.garantia-v2 h2{ color:#fff; }
.garantia-v2{
  background: radial-gradient(80% 80% at 50% 20%, rgba(0, 255, 255, 0.06), rgba(0,0,0,.9));
  border:1px solid rgba(0,255,255,.12);
  border-radius:14px;
  box-shadow:0 0 22px rgba(0,255,255,.12);
}
.garantia-v2 p{ color:#eaeaea; }

/* Acessibilidade */
.proof-card:focus-within, .bonus-card:focus-within, .pilar:focus-within{
  outline:2px solid #00ffff; outline-offset:3px;
}
