* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #000 !important;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.hero {
  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('capa.webp');

  background-size: cover;
  background-position: center 30%;

  color: white;
  min-height: 90vh;

  display: flex;
  align-items: center;

  padding: 40px 20px;

  box-shadow: inset 0 -80px 80px -40px rgba(0,0,0,0.8);
}

.hero strong {
  color: #00ff88;
}

.hero-content {
  max-width: 520px;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.sub {
  color: rgba(255,255,255,0.9);
}

.hero p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sub {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.checks {
  margin: 25px 0;
  line-height: 1.9;
  font-size: 17px;
  opacity: 0.95;
}

/* BOTÕES */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #8B5CF6, #C8A2FF);
  color: white;
  padding: 16px 34px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(139,92,246,0.35);
  letter-spacing: 0.5px;
}

/* HOVER */
.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(139,92,246,0.55);
}

/* CLICK (efeito físico) */
.btn:active {
  transform: scale(0.97);
}

.btn.grande {
  font-size: 18px;
  padding: 20px 40px;
}

/* SEÇÕES */
section {
  padding: 80px 20px;
}

.video, .testimonials, .cta {
  text-align: center;
}

.video {
  background-image:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.75)
    ),
    url('fundo.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;

  padding: 20px 20px;
}

.video .descricao-curso {
  max-width: 750px;
  margin: 0 auto 45px auto;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;

  color: #FFFFFF;

  text-shadow: 0 2px 8px rgba(0,0,0,0.30);
}

.video h2 {
  color: #FFFFFF;
}

.benefits {
  background: #f7f7f7;
  text-align: center;
}

/* ===== BENEFITS COM IMAGEM ===== */
.benefits-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.benefits-img {
  flex: 1;
}

.benefits-img img {
  width: 100%;
  max-width: 650px;
  display: block;
}

.benefits h2 {
  color: #222;
  margin-bottom: 25px;
}

.benefits-text {
  flex: 1;
  max-width: 520px;
}

/* TITULOS */
h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* LISTA */
.lista {
  text-align: left;
  max-width: 600px;
  margin: auto;
  line-height: 1.9;
  font-size: 16px;
}

/* GRID */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* CARDS */
.card {
  background: white;
  padding: 30px;
  width: 280px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.card h3 {
  margin-bottom: 15px;
  color: #6D5A86;
}

.card p {
  color: #555;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* OFERTA */
.offer {
  background-image:
    linear-gradient(
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.85)
    ),
    url('fundo.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  text-align: center;
  padding: 20px 20px;
}

.preco-antigo {
  font-size: 22px;
  text-decoration: line-through;
  opacity: 0.6;
}

.preco {
  font-size: 56px;
  font-weight: 700;
  color: #FFD700;
  margin: 15px 0;

  text-shadow:
    0 0 15px rgba(255,215,0,.20);
}

/* GARANTIA */
.garantia {
  margin: 30px 0;
  padding: 25px;
  background: #111;
  border-radius: 12px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #111, #000);
  color: white;
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {

  .hero {
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .sub {
    font-size: 16px;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .btn.grande {
    width: 100%;
    text-align: center;
  }

  /* PARA QUEM É */

  .benefits-flex {
    flex-direction: column;
    text-align: center;
  }

  .para-quem {
  position: relative;
  overflow: hidden;
}

.para-quem .benefits-img {
  position: absolute;
  left: -40px;
  top: 40px;
  z-index: 1;
  opacity: 0.40;
  filter: brightness(0.35);
}

.para-quem .benefits-img img {
  width: 260px;
  max-width: none;
  margin: 0;
  transform: none;
}

.para-quem .benefits-text {
  position: relative;
  z-index: 2;
}

  .lista {
    text-align: left;
  }

  /* PROFESSORA */

  .professora-flex {
    flex-direction: column;
    text-align: center;
  }

  .professora-text {
    text-align: center;
  }

  .professora-img img {
    max-width: 280px;
  }

.preco {
  font-size: 42px;
}

}

/* ===== EFEITO SHINE ===== */

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.btn:hover::after {
  animation: shine 0.8s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* ===== EFEITO PULSE ===== */

.btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139,92,246,0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(139,92,246,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(139,92,246,0);
  }
}

/* =====================================
   SEÇÃO PARA QUEM É
===================================== */

.para-quem {
  background-image:
    linear-gradient(
      rgba(0,0,0,0.60),
      rgba(0,0,0,0.60)
    ),
    url('fundo.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 0px 20px;
   box-shadow:
    inset 0 80px 80px -40px rgba(0,0,0,0.7),
    inset 0 -80px 80px -40px rgba(0,0,0,0.7);

}

.para-quem .benefits-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.para-quem .benefits-img {
  flex: 1;
}

.para-quem .benefits-img img {
  width: 100%;
  max-width: 440px;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,.25));
  transform: translateX(50px);
  
}

.para-quem .benefits-text {
  flex: 1;
  max-width: 520px;
}

.para-quem h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 15px;
}

.para-quem .lista {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.para-quem .lista p {
  background: rgba(255,255,255,0.12);
  padding: 8px 12px;
  border-radius: 10px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.para-quem .lista p:hover {
  background: rgba(255,255,255,0.20);
}

.para-quem .container {
  padding: 10px 0;
}

.check {
  color: #C8A2FF;
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
}

/* =====================================
   RESULTADOS DO CURSO
===================================== */

.resultados {
  background-image:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.75)
    ),
    url('fundo.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  text-align: center;

  padding: 40px 20px;
}

.resultados h2 {
  color: white;
  margin-bottom: 30px;
}

.resultados .lista {
  max-width: 800px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.resultados .lista p {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);

  padding: 14px 18px;
  border-radius: 12px;

  text-align: left;
  margin: 0;
  line-height: 1.6;
}

.resultados .lista p:hover {
  background: rgba(255,255,255,0.16);
  transition: .3s;
}

.resultados .check {
  color: #FFD700;
  font-weight: bold;
  margin-right: 8px;
}

/* =====================================
   PROFESSORA
===================================== */

.professora {
  background-image:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.75)
    ),
    url('fundo.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 20px 20px;
  
   box-shadow:
    inset 0 80px 80px -40px rgba(0,0,0,0.7),
    inset 0 -80px 80px -40px rgba(0,0,0,0.7);

}

.professora-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.professora-img {
  flex: 1;
}

.professora-img img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;

  border-radius: 20px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.35);
}

.professora-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.professora h2 {
  color: white;
  margin-bottom: 10px;
}

.professora h3 {
  color: #C8A2FF;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.professora p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

.info-compra {
  margin: 30px 0;
}

.info-compra p {
  margin: 10px 0;
  font-size: 17px;
}

.preco-box {
  background: rgba(255,255,255,0.05);

  max-width: 500px;
  margin: 25px auto;

  padding: 30px;

  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.12);

  backdrop-filter: blur(5px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
}