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

:root {
  --bg:       #0a080f;
  --bg2:      #100d18;
  --bg3:      #16112299;
  --purple:   #7c3aed;
  --purple-l: #9d5ff5;
  --purple-d: #4c1d95;
  --accent:   #c084fc;
  --white:    #f4f0ff;
  --muted:    #9585b0;
  --border:   rgba(124,58,237,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content:'';
  position:fixed; inset:0; pointer-events:none; z-index:999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── GLOW BLOBS ── */
.blob {
  position:absolute; border-radius:50%; filter:blur(120px); pointer-events:none;
}
.blob-1 { width:600px; height:600px; background:rgba(124,58,237,0.18); top:-200px; left:-200px; }
.blob-2 { width:400px; height:400px; background:rgba(192,132,252,0.1); top:300px; right:-100px; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:20px 5vw;
  display:flex; align-items:center; justify-content:space-between;
  background: rgba(10,8,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo span { color: var(--accent); }
.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--purple-l); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position:relative; overflow:hidden;
  min-height: 100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 120px 5vw 80px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px; color: var(--accent);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--accent); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style:normal;
  background: linear-gradient(135deg, var(--accent), var(--purple-l));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-sub {
  max-width: 580px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-sub strong { color: var(--white); }

.btn-primary {
  display:inline-block;
  background: var(--purple);
  color: #fff;
  padding: 18px 48px;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 17px;
  text-decoration:none;
  transition: all 0.2s;
  box-shadow: 0 0 40px rgba(124,58,237,0.4);
  animation: fadeUp 0.7s 0.3s ease both;
  position:relative; overflow:hidden;
}
.btn-primary::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  pointer-events:none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(124,58,237,0.6);
  background: var(--purple-l);
}
.btn-note { font-size:13px; color:var(--muted); margin-top:14px; animation: fadeUp 0.7s 0.4s ease both; }

/* ── VSL ── */
.vsl-section {
  padding: 60px 5vw 80px;
  display:flex; flex-direction:column; align-items:center;
}
.vsl-label {
  font-size:12px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--accent); margin-bottom:16px;
}

.vsl-loader{
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 15, 0.8); /* Fundo escuro semi-transparente */
  backdrop-filter: blur(10px);      /* Efeito de desfoque */
  -webkit-backdrop-filter: blur(10px);
  display: flex;                   /* Centraliza o conteúdo */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 20;                     /* Garante que fique acima de tudo no wrapper */
  opacity: 0;                      /* Começa invisível */
  pointer-events: none;            /* Não bloqueia cliques quando invisível */
  transition: opacity 0.3s ease;    /* Transição suave ao aparecer/sumir */
}

/* Classe que o JavaScript vai adicionar para mostrar o loader */
.vsl-loader.is-loading {
  opacity: 1;
  pointer-events: auto;
}

/* Estilo do SVG de Carregamento */
.vsl-spinner {
  width: 50px;
  height: 50px;
  /* Cor roxa baseada na sua variável --purple */
  color: #7c3aed;
}

/* Animação de rotação do SVG */
.vsl-spinner-inner {
  animation: vsl-rotate 2s linear infinite;
  transform-origin: center center;
}

.vsl-spinner-circle {
  stroke: currentColor; /* Usa a cor definida no .vsl-spinner */
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: vsl-dash 1.5s ease-in-out infinite;
}

/* Texto de aviso */
.vsl-loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #f4f0ff; /* --white */
  margin: 0;
  text-align: center;
}

/* Definição das Animações CSS */
@keyframes vsl-rotate {
  100% { transform: rotate(360deg); }
}

@keyframes vsl-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.vsl-wrapper {
  width:100%; max-width:860px;
  border-radius:25px; overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(124,58,237, 0.5);
  background-color:#000;
  aspect-ratio: 16/9;
  position:relative;  
}
.vsl-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("./Images/Thumb 16x9.jpg"); /* Caminho da sua imagem */
  background-size: cover;
  background-position: center;
  z-index: 5; /* Acima do vídeo (que não tem z-index ou é menor) */
  transition: opacity 0.5s ease;
  pointer-events: none; /* Deixa os cliques passarem para o vídeo/botão */
}


.vsl-wrapper iframe {
  position:absolute; inset:0; width:100%; height:100%; border:none;
}
.vsl-placeholder {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:16px;
  background: linear-gradient(135deg, #0d0a17, #1a1030);
}
.vsl-play {
  width:72px; height:72px; border-radius:50%;
  background: var(--purple);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 40px rgba(124,58,237,0.5);
}
.vsl-play svg { margin-left:4px; }
.vsl-caption { font-size:14px; color:var(--muted); }

/* ── DIVIDER ── */
.divider {
  width:100%; max-width:900px; margin:0 auto;
  height:1px; background:var(--border);
}

/* ── STATS ── */
.stats {
  display:flex; justify-content:center; gap:0;
  padding:60px 5vw;
  flex-wrap:wrap;
}
.stat {
  flex:1; min-width:160px;
  text-align:center;
  padding:32px 24px;
  border-right:1px solid var(--border);
}
.stat:last-child { border-right:none; }
.stat-num {
  font-family:'Syne',sans-serif;
  font-size:42px; font-weight:800;
  color:var(--white); line-height:1;
  margin-bottom:8px;
}
.stat-num span { color:var(--accent); }
.stat-label { font-size:14px; color:var(--muted); }

/* ── FOR WHO ── */
.section { padding:80px 5vw; max-width:1100px; margin:0 auto; }
.section-tag {
  font-size:12px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--accent); margin-bottom:16px; display:block;
}
.section-title {
  font-family:'Syne',sans-serif;
  font-size:clamp(28px,4vw,48px);
  font-weight:800; line-height:1.1;
  letter-spacing:-0.02em;
  margin-bottom:48px;
}
.section-title em { font-style:normal; color:var(--accent); }

.forwho-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px;
}
.forwho-card {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
  transition:border-color 0.2s, transform 0.2s;
}
.forwho-card:hover { border-color:rgba(124,58,237,0.5); transform:translateY(-4px); }
.forwho-icon { font-size:28px; margin-bottom:16px; }
.forwho-title { font-family:'Syne',sans-serif; font-weight:700; font-size:16px; margin-bottom:8px; }
.forwho-desc { font-size:15px; color:var(--muted); line-height:1.6; }

/* ── THUMB SECTION ── */
.thumb-section {
  padding:0 5vw 80px;
  display:flex; justify-content:center;
}
.thumb-wrapper {
  width:100%; max-width:900px;
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 0 100px rgba(124,58,237,0.15);
  position:relative;
}
.thumb-wrapper img { width:100%; display:block; }
.thumb-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,8,15,0.7) 0%, transparent 50%);
  display:flex; align-items:flex-end;
  padding:32px;
}
.thumb-text {
  font-family:'Syne',sans-serif;
  font-size:22px; font-weight:700;
  color:#fff; line-height:1.3;
}
.thumb-text span { color:var(--accent); display:block; font-size:14px; font-weight:400; margin-bottom:6px; letter-spacing:0.08em; text-transform:uppercase; }

/* ── MODULES ── */
.modules-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:16px;
}
.module-card {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
  display:flex; gap:20px;
  transition:border-color 0.2s;
}
.module-card:hover { border-color:rgba(124,58,237,0.4); }
.module-num {
  width:40px; height:40px; border-radius:10px; flex-shrink:0;
  background:rgba(124,58,237,0.15);
  border:1px solid rgba(124,58,237,0.3);
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-weight:800; font-size:14px; color:var(--accent);
}
.module-info {}
.module-title { font-family:'Syne',sans-serif; font-weight:700; font-size:16px; margin-bottom:6px; }
.module-meta { font-size:14px; color:var(--muted); }

/* ── WHAT YOU LEARN ── */
.learn-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:12px;
}
.learn-item {
  display:flex; align-items:flex-start; gap:12px;
  padding:16px 20px;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:10px;
  font-size:15px; color:var(--white);
}
.learn-check {
  width:20px; height:20px; flex-shrink:0;
  background:rgba(124,58,237,0.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.learn-check::after { content:'✓'; font-size:11px; color:var(--accent); font-weight:700; }

/* ── INSTRUCTOR ── */
.instructor {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:20px;
  padding:48px;
  display:flex; gap:48px; align-items:center;
  flex-wrap:wrap;
}
.instructor-avatar img{
  width:120px; height:120px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--purple-d),var(--purple));
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:42px; font-weight:800;
}
.instructor-name {
  font-family:'Syne',sans-serif; font-size:24px; font-weight:800;
  margin-bottom:6px;
}
.instructor-role { color:var(--accent); font-size:14px; margin-bottom:16px; }
.instructor-bio { text-align: justify; color:var(--muted); font-size:16px; line-height:1.7; max-width:520px; }

/* ── GUARANTEE ── */
.guarantee {
  text-align:center;
  padding:80px 5vw;
  max-width:700px; margin:0 auto;
}
.guarantee-badge {
  width:80px; height:80px; border-radius:50%;
  background:rgba(124,58,237,0.15);
  border:2px solid rgba(124,58,237,0.4);
  display:flex; align-items:center; justify-content:center;
  font-size:32px; margin:0 auto 24px;
}
.guarantee h3 { font-family:'Syne',sans-serif; font-size:28px; font-weight:800; margin-bottom:16px; }
.guarantee p { color:var(--muted); font-size:16px; }

/* ── PRICING ── */
.pricing {
  display:flex; justify-content:center;
  padding:0 5vw 80px;
}
.pricing-card {
  background:var(--bg2);
  border:1px solid rgba(124,58,237,0.4);
  border-radius:24px;
  padding:56px 48px;
  text-align:center;
  max-width:480px; width:100%;
  position:relative; overflow:hidden;
  box-shadow:0 0 80px rgba(124,58,237,0.15);
}
.pricing-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--purple),transparent);
}
.pricing-tag {
  display:inline-block;
  background:rgba(124,58,237,0.2);
  border:1px solid rgba(124,58,237,0.4);
  border-radius:100px;
  padding:4px 16px;
  font-size:12px; color:var(--accent); font-weight:500; letter-spacing:0.08em;
  text-transform:uppercase; margin-bottom:32px;
}
.price-from { font-size:15px; color:var(--muted); text-decoration:line-through; margin-bottom:6px; }
.price-main {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:62px; line-height:1; margin-bottom:8px;
}
.price-main sup { font-size:28px; vertical-align:top; margin-top:12px; }
.price-main .cents { font-size:28px; }
.price-note { font-size:14px; color:var(--muted); margin-bottom:40px; }

.pricing-features { text-align:left; margin-bottom:40px; }
.pricing-feat {
  display:flex; align-items:center; gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:15px;
}
.pricing-feat:last-child { border-bottom:none; }
.feat-icon { color:var(--accent); font-size:16px; flex-shrink:0; }

.btn-checkout {
  display:block;
  background:var(--purple);
  color:#fff;
  padding:20px 40px;
  border-radius:12px;
  font-family:'Syne',sans-serif;
  font-weight:700; font-size:18px;
  text-decoration:none;
  transition:all 0.2s;
  box-shadow:0 0 40px rgba(124,58,237,0.4);
  position:relative; overflow:hidden;
}
.btn-checkout::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.12),transparent);
}
.btn-checkout:hover {
  transform:translateY(-3px);
  box-shadow:0 0 70px rgba(124,58,237,0.65);
  background:var(--purple-l);
}
.btn-checkout-note { font-size:13px; color:var(--muted); margin-top:16px; }

/* ── FAQ ── */
.faq-list { max-width:720px; margin:0 auto; }
.faq-item {
  border-bottom:1px solid var(--border);
  padding:24px 0;
}
.faq-q {
  font-family:'Syne',sans-serif; font-weight:700; font-size:17px;
  margin-bottom:12px; color:var(--white);
}
.faq-a { font-size:15px; color:var(--muted); line-height:1.7; }

/* ── FOOTER ── */
footer {
  text-align:center;
  padding:48px 5vw;
  border-top:1px solid var(--border);
  font-size:14px; color:var(--muted);
}
footer strong { color:var(--accent); }

/* ── FINAL CTA ── */
.final-cta {
  text-align:center;
  padding:100px 5vw;
  position:relative; overflow:hidden;
}
.final-cta .blob-f {
  position:absolute; width:600px; height:600px;
  background:rgba(124,58,237,0.12); border-radius:50%;
  filter:blur(120px); top:50%; left:50%;
  transform:translate(-50%,-50%); pointer-events:none;
}
.final-cta h2 {
  font-family:'Syne',sans-serif;
  font-size:clamp(28px,5vw,56px);
  font-weight:800; line-height:1.1;
  letter-spacing:-0.02em; margin-bottom:16px;
  position:relative;
}
.final-cta h2 em { font-style:normal; color:var(--accent); }
.final-cta p { color:var(--muted); margin-bottom:40px; font-size:18px; position:relative; }

@media(max-width:700px){
  .stat { border-right:none; border-bottom:1px solid var(--border); }
  .stat:last-child { border-bottom:none; }
  .instructor { flex-direction:column; padding:32px; }
  .pricing-card { padding:40px 28px; }
}

#vsl-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    z-index: 1;  
}

#vsl-loader{
  z-index: 20;;
}
#play-button{
  z-index: 25;
}
/* barra de progresso */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--purple), var(--accent));
    transition: width 0.3s linear;
    border-radius: 0 2px 2px 0;
}

/* overlay final */
.video-overlay{
    position: absolute;
    inset: 0;
    background: rgba(10,8,15,0.85);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.video-overlay button{
    background: #7c3aed;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}