/* ======================================================= */
/* 1. SISTEMA DE DESIGN (VARIÁVEIS)                        */
/* ======================================================= */
:root {
  --cor-laranja: #FF6A00;
  --cor-preto-fundo: #0b1120;
  --cor-cinza-card: #1a2133;
  --cor-texto-principal: #f3f3ff;
  --cor-texto-secundario: #a3b3d9;
  --cor-linha-divisao: rgba(163, 179, 217, .15);
  --cor-verde-economia: #1f6d3a;
  --cor-estrelas: #ffc14d;
}

/* ======================================================= */
/* 2. RESET E ESTILOS GERAIS                               */
/* ======================================================= */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cor-preto-fundo);
  color: var(--cor-texto-principal);
  font-family: 'Inter', system-ui, sans-serif;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body::before{
  content:'';
  position:fixed; top:0; right:0;
  width:50vw; height:50vh;
  background:radial-gradient(circle at top right, rgba(29,78,216,.25), transparent 60%);
  z-index:-1; pointer-events:none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px; padding:14px 22px; font-weight:800; transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform, background-color, box-shadow;
}
.btn--primary{
  background:var(--cor-laranja);
  color:#fff;
  box-shadow:0 10px 24px rgba(255,106,26,.25);
  position: relative;
  overflow: visible;
}
.btn--primary:hover{ background:#e4570f; transform:translateY(-2px); }

.btn--inverse{
  background:#fff; color:var(--cor-laranja);
  padding:18px 28px; font-size:1.05rem; font-weight:900; border-radius:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
  position: relative;
  overflow: visible;
}
.btn--inverse:hover{ transform:translateY(-2px); }

.section{ padding:clamp(48px,7vw,96px) 0; border-top:1px solid var(--cor-linha-divisao); }
.title{
  font-weight:900; line-height:1.05;
  font-size:clamp(1.8rem,3.6vw,2.8rem); text-align:center; margin:0 0 16px;
}
.lead{ color:var(--cor-texto-secundario); text-align:center; max-width:700px; margin:0 auto; line-height:1.6; }

/* ======================================================= */
/* 3. TOPO + HERO                                          */
/* ======================================================= */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(11,17,32,.8); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--cor-linha-divisao);
  will-change: transform;
}
.topbar__row{ display:flex; gap:16px; align-items:center; justify-content:space-between; padding:12px 24px; }
.topbar__left{ font-weight:800; white-space:nowrap; }
.topbar__right{ display:flex; align-items:center; gap:16px; }
.topbar__pricing{ display:flex; flex-direction:column; line-height:1; text-align:right; }
.topbar__old{ opacity:.65; text-decoration:line-through; font-weight:800; font-size:14px; }
.topbar__now{ font-weight:900; font-size:22px; }


 .hero{
  position:relative; overflow:hidden; padding:clamp(60px,9vw,120px) 0; text-align:center; border-top:none;
  will-change: background-position;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover; 
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.55); 
  z-index: 1;
}

.hero .container {
  position: relative; 
  z-index: 2;
}
.hero__tag{ 
  display:inline-block; 
  font-weight:800; 
  letter-spacing:.02em; 
  color: var(--cor-laranja); 
  margin:0 auto 12px; 
}

.hero__title{ font-size:clamp(2.2rem,5.6vw,4rem); font-weight:900; line-height:1.02; margin:6px auto 10px; max-width:800px; }
.hero__sub{ color:#e8e8e8; margin:0 auto 22px; max-width:760px; font-size:clamp(1rem,2.2vw,1.125rem); }
.hero__note{ opacity:.9; margin-top:10px; }

/* ======================================================= */
/* 3.1. SEÇÃO "SUA LOJA ESTÁ PARADA?" COM IMAGEM (CORRIGIDO) */
/* ======================================================= */
.store-problem-section {
  display: flex;
  flex-direction: column; /* <<< MUDANÇA: Empilhado por padrão */
  align-items: center; 
  justify-content: center; 
  gap: 30px; /* Espaço entre imagem e texto */
}

.store-problem-content {
  /* flex: 1 1 500px;  <-- Removido */
  max-width: 600px; 
  text-align: center; /* <<< MUDANÇA: Centralizado por padrão */
}

.store-problem-content .title,
.store-problem-content .lead {
  text-align: center; /* <<< MUDANÇA: Centralizado por padrão */
  margin-left: auto;
  margin-right: auto;
}

.store-problem-content .title {
  margin-bottom: 16px;
  font-size:clamp(1.8rem, 3.6vw, 2.8rem); 
}

.store-problem-content .lead {
  font-size:clamp(1rem, 1.8vw, 1.125rem); 
  max-width: 700px; /* <-- Ajustado para o padrão do .lead */
}

.store-problem-image {
  /* flex: 1 1 350px; <-- Removido */
  max-width: 450px; 
  display: flex; 
  justify-content: center;
  align-items: center;
  order: -1; /* <<< ADICIONADO: Imagem vem primeiro */
}

.store-problem-image img {
  border-radius: 12px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.25); 
}

/* ======================================================= */
/* 4. BENEFÍCIOS (NOVO ESTILO)                             */
/* ======================================================= */
.benefits-section { background: var(--cor-cinza-card); } 
.benefits__grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:24px; margin-top:48px; }
.benefit{ 
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px; 
  background: var(--cor-preto-fundo);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--cor-linha-divisao);
}
.benefit__icon{ width:48px; height:48px; color:var(--cor-laranja); }
.benefit__title{ font-weight:800; font-size:1.1rem; }
.benefit__text{ font-weight:400; font-size:0.95rem; color: var(--cor-texto-secundario); line-height: 1.5; }


/* ======================================================= */
/* 5. CHECKLIST                                            */
/* ======================================================= */
.checklist__grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:16px 40px; max-width:1100px; margin:48px auto 0; }
.check-item{ display:flex; align-items:flex-start; gap:12px; border-bottom:1px solid var(--cor-linha-divisao); padding-bottom:16px; color: var(--cor-texto-secundario); }
.check-item b { color: var(--cor-texto-principal); }
.check-item__icon{ color:var(--cor-laranja); font-weight:900; margin-top:2px; flex-shrink: 0; }

.learn-images-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 24px); 
  margin: 32px auto 40px; 
}

.learn-image {
  width: clamp(100px, 15vw, 130px); 
  height: clamp(100px, 15vw, 130px); 
  object-fit: cover;
  border-radius: 16px; 
  border: 1px solid var(--cor-linha-divisao);
  background-color: var(--cor-cinza-card); 
}

/* ======================================================= */
/* 5.1. SEÇÃO DE PREVIEW DO VÍDEO (NOVO BLOCO)             */
/* ======================================================= */
.video-preview-section {
  background-color: var(--cor-cinza-card); /* Fundo de destaque, como pedido */
}

.video-preview-section .lead {
  margin-bottom: 32px; /* Espaço entre o subtítulo e o vídeo */
}

.video-wrapper {
  max-width: 900px; /* Limita o tamanho do player de vídeo */
  margin: 0 auto; /* Centraliza o player */
  border-radius: 16px; /* Borda arredondada */
  overflow: hidden; /* Garante que o vídeo fique dentro das bordas */
  border: 1px solid var(--cor-linha-divisao);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  background-color: var(--cor-preto-fundo); /* Fundo escuro para o player */
}

.course-video {
  width: 100%;
  height: auto;
  display: block; /* Remove espaço extra abaixo do vídeo */
}

/* ======================================================= */
/* 6. PREÇO                                                */
/* ======================================================= */
.pricing-card{
  max-width:520px; margin:0 auto; background:var(--cor-cinza-card);
  border:2px solid var(--cor-linha-divisao); border-radius:16px; padding:clamp(24px,5vw,40px);
  text-align:center; box-shadow:0 20px 60px rgba(0,0,0,.2);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: transform, box-shadow, border-color;
}
.pricing-card:hover{ transform:translateY(-8px); box-shadow:0 25px 50px rgba(255,106,26,.15); border-color:var(--cor-laranja); }
.pricing-card .badge{ background:var(--cor-laranja); color:#fff; margin:0 auto 16px; display: inline-block; padding: 6px 12px; border-radius: 999px; font-weight: 800; font-size: 0.9em;}
.pricing-card__title{ font-size:clamp(1.4rem,3.2vw,2rem); margin:10px 0; }
.pricing-card__striked{ opacity:.7; text-decoration:line-through; }
.pricing-card__price{ font-size:clamp(2.5rem,9vw,5rem); font-weight:900; margin:10px 0; line-height:1; color:var(--cor-texto-principal); }
.savings-box{ background:var(--cor-verde-economia); color:#fff; padding:12px 16px; border-radius:10px; margin:16px auto; font-weight:bold; display: inline-block; }
.pricing-card__note{ opacity:.9; margin-top:20px; display:flex; align-items:center; justify-content:center; gap:8px; }
.countdown-label{ font-size:.9em; color:var(--cor-texto-secundario); margin-bottom:10px; }
.countdown-timer{ display:flex; justify-content:center; gap:10px; margin-bottom:20px; }
.countdown-timer span{ background-color:var(--cor-preto-fundo); color:var(--cor-texto-principal); font-size:1.8em; font-weight:bold; padding:10px; border-radius:6px; min-width:60px; text-align:center; line-height: 1; }

.pricing-card__bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  display: inline-block; 
}
.pricing-card__bullets li {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--cor-texto-secundario);
}
.pricing-card__bullets li::before {
  content: '✔';
  color: var(--cor-verde-economia);
  margin-right: 10px;
  font-weight: 900;
}

/* ======================================================= */
/* 7. DEPOIMENTOS                                          */
/* ======================================================= */
.testimonials__grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:24px; max-width:1200px; margin:48px auto 0; }
.testimonial-card{ background:var(--cor-cinza-card); border:1px solid var(--cor-linha-divisao); border-radius:12px; padding:24px; display:flex; flex-direction:column; }
.testimonial-card__header{ display:flex; gap:12px; align-items:center; margin-bottom:16px; }

.testimonial-card__avatar{ 
  width:44px; 
  height:44px; 
  border-radius:50%; 
  background:var(--cor-cinza-card); 
  flex-shrink:0; 
  overflow: hidden; 
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.testimonial-card__author{ line-height:1.3; }
.testimonial-card__author strong{ color:var(--cor-texto-principal); display: block; }
.testimonial-card__author span{ color:var(--cor-estrelas); }
.testimonial-card__quote{ color:var(--cor-texto-secundario); margin:0; font-style:italic; line-height: 1.6; }

/* ======================================================= */
/* 8. GARANTIA                                             */
/* ======================================================= */
.guarantee-card{
  max-width:980px; margin:0 auto; background:var(--cor-cinza-card);
  border:1px solid var(--cor-linha-divisao); border-radius:14px; padding:clamp(24px, 5vw, 32px); display:flex; gap: clamp(20px, 4vw, 32px); align-items:center;
}
.guarantee-card__icon{ flex-shrink:0; width:clamp(60px, 10vw, 80px); height:clamp(60px, 10vw, 80px); border:4px solid var(--cor-laranja); border-radius:16px; display:grid; place-items:center; }
.guarantee-card__icon svg{ width:50%; height:50%; color:var(--cor-laranja); }
.guarantee-card__title{ text-align:left; font-size:clamp(1.5rem, 3vw, 1.8rem); margin-bottom:8px; }
.guarantee-card__text{ text-align:left; margin:0; max-width:none; line-height: 1.6; }

/* ======================================================= */
/* 9. INSTRUTOR                                            */
/* ======================================================= */
.instructor-content{ display:flex; flex-direction:column; align-items:center; }
.instructor-content .title{ margin-bottom:40px; }
.instructor-photo{ width: clamp(150px, 25vw, 200px); height: clamp(150px, 25vw, 200px); border-radius:50%; border:3px solid var(--cor-linha-divisao); overflow:hidden; margin-bottom:24px; }
.instructor-photo img{ width:100%; height:100%; object-fit:cover; }
.instructor-name{ font-size:clamp(1.3rem, 2.5vw, 1.5rem); margin-bottom:12px; font-weight:700; color:var(--cor-texto-principal); }

/* ======================================================= */
/* 10. FAQ                                                 */
/* ======================================================= */
.faq .faq-item{ border-bottom:1px solid var(--cor-linha-divisao); margin-bottom:10px; }
.faq-question{
  width:100%; background:none; border:none; text-align:left; font-size:clamp(1rem, 2vw, 1.1rem); font-weight:600; padding:16px; cursor:pointer;
  color:var(--cor-texto-principal); display:flex; justify-content:space-between; align-items:center; gap: 10px;
}
.faq-question::after{ content:'▾'; font-size:1rem; line-height:1; opacity:.9; transition:transform .2s ease; flex-shrink: 0; }
.faq-item.active .faq-question::after{ transform:rotate(180deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease; padding:0 16px; color:var(--cor-texto-secundario); line-height: 1.6; }
.faq-answer p { margin-top: 0; } 
.faq-item.active .faq-answer{ max-height:300px; padding: 0 16px 16px 16px; }


/* ======================================================= */
/* 11. CTA FINAL (BANNER LARANJA)                          */
/* ======================================================= */
.cta-banner{
  background:var(--cor-laranja); color:#fff; text-align:center;
  padding:clamp(72px,10vw,140px) 0;
}
.cta-banner__wrap{ max-width:980px; }
.cta-title{
  font-weight:900; line-height:1.05;
  font-size:clamp(2rem,4.8vw,3rem);
  margin:0 0 12px;
}
.cta-sub{
  max-width:760px; margin:0 auto 28px;
  line-height:1.6; color:#fff;
}
.cta-old{ font-weight:800; opacity:.95; margin:10px 0 4px; }
.cta-old .risco{ text-decoration:line-through; }
.cta-price{
  font-weight:900; font-size:clamp(3rem,10vw,5.5rem);
  line-height:1; margin:6px 0 12px; 
}
.cta-note{ margin-top:16px; opacity:.9; }

.cta-banner__bullets {
  list-style: none;
  padding: 0;
  margin: 20px auto 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
}
.cta-banner__bullets li::before {
  content: '✔';
  margin-right: 10px;
  font-weight: 900;
}


/* ======================================================= */
/* 12. RODAPÉ                                              */
/* ======================================================= */
.site-footer{
  background:var(--cor-preto-fundo);
  padding:22px 0 28px;
  border-top:1px solid rgba(255,255,255,.06);
}
.site-footer .container{ text-align:center; }
.site-footer p{ color:var(--cor-texto-secundario); margin:6px 0; font-size:.95rem; }

/* ======================================================= */
/* RESPONSIVO                                              */
/* ======================================================= */

@media (max-width: 900px){
  .testimonials__grid{ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  
  /* REGRA REMOVIDA DAQUI: A regra para .store-problem-section não é mais necessária */
}

@media (max-width: 768px){
  .guarantee-card{ flex-direction:column; text-align:center; }
  .guarantee-card__title, .guarantee-card__text{ text-align:center; }
  .countdown-timer span { font-size: 1.5em; padding: 8px; min-width: 50px;}
  .pricing-card__price { font-size: clamp(2rem, 8vw, 4rem); }
  .benefits__grid{ grid-template-columns: 1fr; } 
}

@media (max-width: 700px){
  .topbar__left, .topbar__pricing{ display:none; }
  .topbar__row{ justify-content:center; padding: 12px 16px;}
  .checklist__grid{ grid-template-columns:1fr; }
  .hero__title { font-size:clamp(2rem, 8vw, 3rem); }
  .hero__sub { font-size: clamp(0.9rem, 4vw, 1rem); }
  .title { font-size:clamp(1.6rem, 6vw, 2.2rem); }

  /* Reduz o padding vertical das seções no mobile */
  .section {
    padding-top: clamp(32px, 5vw, 60px);
    padding-bottom: clamp(32px, 5vw, 60px);
  }

  /* Puxa a seção de benefícios um pouco mais para cima no mobile */
  .benefits-section {
    margin-top: -24px; /* Ajuste este valor (ex: -30px, -40px) se precisar de mais ou menos */
  }
}

@media (max-width: 480px) {
  .btn { padding: 12px 18px; font-size: 0.9rem; }
  .btn--inverse { padding: 14px 22px; font-size: 1rem;}
  .pricing-card .btn--primary { padding: 16px 25px !important; font-size: 1.1rem !important;}
  
  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .benefit { padding: 16px; gap: 8px; }
  .benefit__icon { width: 40px; height: 40px; }
  .benefit__title { font-size: 1rem; }
  .benefit__text { font-size: 0.9rem; }
  
  .guarantee-card { padding: 24px; }
  .guarantee-card__icon { width: 60px; height: 60px;}
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .cta-price { font-size: clamp(2.5rem, 9vw, 4rem); }
  .countdown-timer span { font-size: 1.3em; padding: 6px; min-width: 40px;}
  .cta-banner__bullets { font-size: 0.95rem; }
}

/* ======================================================= */
/* EFEITO PULSANTE PARA BOTÕES (ALTA CONVERSÃO)            */
/* ======================================================= */

.btn--primary,
.btn--inverse {
    animation: pulseOrange 1.8s infinite;
}

@keyframes pulseOrange {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
    }
    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

.btn--primary:hover {
    background:#e4570f;
    transform:translateY(-3px) scale(1.03);
}

.btn--inverse:hover {
    transform:translateY(-3px) scale(1.03);
}

.pricing-card .btn--primary {
  padding: 18px 30px !important;
  font-size: 1.2rem !important;
}