* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 100vh;
  left: 0;
  width: 100%;
  background: #000;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Nova abordagem para o container */
.container {
  max-width: 1200px; /* Limite a largura do conteúdo interno */
  margin: 0 auto; /* Centraliza o conteúdo no meio da tela */
  padding: 40px 5%; /* Adicione padding lateral para simular a margem do hero (10% total) */
}

/* Remover padding original de section para não duplicar com .container */
section {
  padding: 0; /* O padding vertical já está no .container, não em section */
  color: #f0f0f0;
}

/* Exceção para o Hero que tem um layout diferente */
header.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 15%; /* Mantém o padding original do hero */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

header.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at top left, #030840 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

header.hero .content {
  max-width: 650px;
  flex: 1 1 auto;
  margin-right: 50px;
  z-index: 2;
}

header.hero .image {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
}

header.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

header.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ddd;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #32cd32 0%, #28a428 100%);
  text-decoration: none;
  overflow: hidden; /* garante que nada escape */
  transition: all 0.4s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(20deg);
  transition: all 0.5s ease;
}

.btn:hover::after {
  left: 100%; /* percorre o botão sem vazar */
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

header.hero .image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    linear-gradient(to right, #000 0%, rgba(0,0,0,0) 100%),
    linear-gradient(to left, #000 0%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, #000 0%, rgba(0,0,0,0) 100%),
    linear-gradient(to top, #000 0%, rgba(0,0,0,0) 100%);
  background-repeat: no-repeat;
  background-size:
    18% 100%, 
    18% 100%, 
    100% 22%, 
    100% 22%;
  background-position:
    left center,
    right center,
    top center,
    bottom center;
}

header.hero .image img {
  max-width: 550px;
  width: 100%;
  animation: fadeInRight 2s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInRight {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.top-nav {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav a {
  color: #f2c94c;
  font-weight: bold;
  transition: color 0.3s ease;
}

.top-nav a:hover {
  color: #fff;
}


section h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}


section p {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

section ul {
  max-width: 1000px;
  padding-left: 20px;
  font-size: 30px;
}

section ul li {
  margin-bottom: 10px;
}

footer {
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 15px;
}

#dores ul {
  list-style: none; /* remove bullets padrão */
  margin: 0 auto;
  padding: 0;
  margin: 0;
}

#dores ul li {
  background: #1a1a1a; /* fundo dos cards */
  color: #fff;
  border-radius: 8px; /* arredondado */
  padding: 12px 16px 12px 36px; /* espaço para o símbolo */
  margin-bottom: 12px;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Hover para dar efeito moderno */
#dores ul li:hover {
  background: #242424;
  transform: translateX(4px);
}

/* Símbolo ">" */
#dores ul li::before {
  content: "›"; /* símbolo tipo > */
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #00c4ff; /* azul moderno (pode trocar pra branco se quiser) */
  font-weight: bold;
  font-size: 1.2rem;
}

/* Centralizar lista da seção solução */
#solucao ul {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* centraliza */
}

/* Cada item vira card */
#solucao ul li {
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px 12px 36px;
  margin-bottom: 12px;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Hover */
#solucao ul li:hover {
  background: #242424;
  transform: translateX(4px);
}

/* Símbolo ">" */
#solucao ul li::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #00c4ff; /* azul */
  font-weight: bold;
  font-size: 1.2rem;
}

/* Público (mesmo estilo de dores e solução) */
#publico ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

#publico ul li {
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px 12px 36px;
  margin-bottom: 12px;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

#publico ul li:hover {
  background: #242424;
  transform: translateX(4px);
}

#publico ul li::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #00c4ff;
  font-weight: bold;
  font-size: 1.2rem;
}

#oferta ul {
  list-style: none; /* remove bullets padrão */
  margin: 0 auto;
  padding: 0;
  margin: 0;
}

#oferta ul li {
  background: #1a1a1a; /* fundo dos cards */
  color: #fff;
  border-radius: 8px; /* arredondado */
  padding: 12px 16px 12px 36px; /* espaço para o símbolo */
  margin-bottom: 12px;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Hover para dar efeito moderno */
#oferta ul li:hover {
  background: #242424;
  transform: translateX(4px);
}

/* Símbolo ">" */
#oferta ul li::before {
  content: "›"; /* símbolo tipo > */
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #00c4ff; /* azul moderno (pode trocar pra branco se quiser) */
  font-weight: bold;
  font-size: 1.2rem;
}

/* Seção do Professor */
/* Mantém a flex-section, mas o padding do container já controla o espaçamento */
.flex-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* Adiciona um espaço entre o texto e a imagem */
  /* Remove qualquer padding lateral extra aqui, o .container já cuidará disso */
}

.professor-text {
  flex: 1; /* Permite que o texto ocupe o espaço restante */
  text-align: left;
}
.professor-text p {
  flex: 1; /* Permite que o texto ocupe o espaço restante */
  text-align: left !important;
}

.professor-image {
  flex: 1; /* Permite que a imagem ocupe o espaço restante */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-width: 500px; /* Limita o tamanho máximo da imagem */
  aspect-ratio: 4 / 5; /* Mantém a proporção da imagem para evitar distorção */
}

.professor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem preencha o container sem distorção */
  display: block;
}

/* Adiciona o gradiente preto sobre a imagem */
.professor-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Garante que o gradiente não bloqueie cliques */
}

@media (max-width: 900px) {
  .flex-section {
    flex-direction: column;
    text-align: center;
  }
  
  .professor-image {
    order: -1; /* Coloca a imagem no topo em telas menores */
    margin-bottom: 20px;
  }
}


@media (max-width: 768px) {
  header.hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%; /* Ajusta o padding do hero em telas menores para ser consistente */
  }

  header.hero .image {
    order: -1;
    margin-bottom: 30px;
  }

  header.hero .content {
    max-width: 100%;
    margin-right: 0;
  }

  header.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

  header.hero h1 {
      line-height: 1.1; 
  }

  #dores,#solucao,#estrutura,#publico,#oferta h3 {
    line-height: 1.1; 
    padding-bottom: 15px;
}
#oferta h2{
  padding-bottom: 15px;
}

.professor-text p {
  flex: 1; /* Permite que o texto ocupe o espaço restante */
  text-align: center !important;
}

}

/* --- Carrossel de Módulos --- */

.modules-carousel {
  position: relative;
  width: min(1200px, 96vw);
  max-width: 900px;
  margin: 30px auto 0;
  overflow: hidden;
  /* Adicionando padding para dar espaço ao zoom da imagem ativa */
  padding: 30px 0; 
}

.modules-viewport {
  overflow: visible;
  position: relative;
  padding: 0;
}

.modules-track {
  display: flex;
  transition: transform 600ms cubic-bezier(.22,.9,.3,1);
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  /* Removendo align-items: center para evitar conflitos de alinhamento */
  align-items: flex-start;
}

.module-slide {
  flex-shrink: 0;
  width: 60%;
  max-width: 500px;
  opacity: 0;
  transform: scale(0.7);
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0.5s ease;
  z-index: 1;
  margin: 0 15px;
  pointer-events: none;
  border-radius: 12px;
  overflow: hidden;
  /* Adicionando alinhamento manual para centralizar a imagem */
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.module-slide.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 3;
  pointer-events: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.module-slide.prev,
.module-slide.next {
  opacity: 0.3;
  transform: scale(0.95);
  z-index: 2;
  pointer-events: auto;
}

/* --- Botões de Navegação --- */

.modules-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.modules-prev { left: 10px; }
.modules-next { right: 10px; }

.modules-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255,255,255,0.12);
}

@media (max-width: 1024px) {
  .modules-btn { width: 48px; height: 48px; font-size: 1.4rem; }
}

@media (max-width: 768px) {
  .modules-btn { width: 44px; height: 44px; font-size: 1.2rem; }
}

.bonus-grid {
  width: min(1100px, 92vw);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.bonus-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
  transition: transform .18s ease, box-shadow .18s ease;
}

.bonus-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.bonus-item figcaption {
  margin-top: 8px;
  color: #f2c94c;
  font-weight: 600;
  font-size: .95rem;
}

.bonus-item:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

@media (max-width: 900px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

@keyframes vibrar {
  0% { transform: translate(0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-2px, 2px); }
  100% { transform: translate(0); }
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.galeria img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.videos video {
  width: 300px;      /* largura fixa */
  height: auto;      /* altura ajusta proporcionalmente */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background: #000;  /* fundo preto se vídeo não carregar */
}
@media (max-width: 768px) {
  .galeria img,
  .videos iframe {
    width: 100%;
  }
}

.depoimentos {
  margin-top: 60px;
  text-align: center;
  color: #f0f0f0;
}

.depoimentos h4 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #f2c94c;
}

.depoimento {
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.depoimento .texto {
  font-size: 18px;
  margin-bottom: 10px;
}

.depoimento .nome {
  font-style: italic;
  font-size: 16px;
  color: #ccc;
}

.depoimento .estrelas {
  font-size: 20px;
  color: #f2c94c;
  margin-top: 10px;
}

#faq {
  margin-top: 60px;
  color: #f0f0f0;
}

#faq h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #f2c94c;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.faq-item summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  list-style: none;
}

.faq-item[open] summary {
  color: #f2c94c;
}

.faq-item p {
  margin-top: 10px;
  font-size: 16px;
  color: #ddd;
}


/* =================== Modal =================== */
#cursoModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  padding: 32px;
}

#cursoModal.open {
  display: flex;
}

#cursoModal .modal-box {
  background: linear-gradient(180deg, #0b0b0d, #111111);
  color: #fff;
  width: min(900px, 96%);
  max-height: 90vh;
  border-radius: 12px;
  padding: 22px 20px 28px 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  overflow-y: auto;
  position: relative;
}

#cursoModal .modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}

#cursoModal .modal-title {
  margin-bottom: 12px;
  color: #f2c94c;
  font-size: 1.25rem;
}

#cursoModal .modal-body h3 {
  margin: 10px 0 6px 0;
  color: #fff;
  font-size: 1rem;
}

#cursoModal .modal-body ul {
  margin-left: 18px;
  margin-bottom: 12px;
}

#cursoModal .modal-body li {
  margin-bottom: 6px;
  color: #dcdcdc;
  font-size: 0.95rem;
}

html.modal-open, body.modal-open {
  overflow: hidden !important;
}

.garantia-section {
  text-align: center;
  margin: 40px auto;
}

.garantia-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* mantém responsivo no celular */
}

.garantia-text {
  max-width: 600px;
  text-align: left;
}

.garantia-selo img {
  width: 180px; /* ajuste conforme preferir */
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.3)); /* destaque */
  animation: pulse 2s infinite;
}

@media (max-width: 600px) {
    .garantia-text {
        text-align: center;
        max-width: 100%;
    }
    
    .garantia-text h3, .garantia-text h2 {
        text-align: center;
    }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* --- SEÇÃO FECHAMENTO (NOVO ESTILO) --- */

.fechamento-section {
    background-color: #0d0d0d;
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fechamento-card {
    max-width: 500px;
    background: #111;
    border: 2px solid #222;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.fechamento-card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top left, rgba(50, 205, 50, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.fechamento-card h3 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.fechamento-logo {
    margin-bottom: 25px;
}

.fechamento-logo img {
    max-width: 250px;
    width: 100%;
}

.curso-detalhes {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.fechamento-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.fechamento-item p {
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
    max-width: none;
}

.checkmark {
    position: relative;
    width: 24px;
    height: 24px;
    background: #32cd32;
    border-radius: 50%;
    flex-shrink: 0;
}

.checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.valores {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.parcelado {
    font-size: 2.8rem;
    font-weight: bold;
    color: #32cd32;
    line-height: 1;
}

.avista {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1;
}

.btn-fechamento {
    width: 100%;
    font-size: 1.4rem;
    padding: 18px;
}

.small-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    text-align: center;
}

/* Estilo para o botão de WhatsApp com ícone */
.btn-whatsapp-with-icon {
    position: relative; /* Necessário para posicionar o pseudo-elemento */
    padding-left: 55px; /* Adiciona espaço para o ícone */
    display: flex; /* Para alinhar o texto e o ícone se o pseudo-elemento fosse inline */
    align-items: center; /* Centraliza verticalmente o texto */
    justify-content: center; /* Centraliza o texto */
    text-align: center; /* Garante o alinhamento do texto */
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%); /* Cores do WhatsApp */
}

.btn-whatsapp-with-icon::before {
    content: ''; /* Conteúdo vazio para o pseudo-elemento */
    position: absolute;
    left: 20px; /* Posição do ícone à esquerda do texto */
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* Largura do ícone */
    height: 24px; /* Altura do ícone */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'); /* Link para o SVG do WhatsApp */
    background-size: contain; /* Ajusta o ícone para caber no espaço */
    background-repeat: no-repeat;
    background-position: center;
}

.btn-whatsapp-with-icon:hover {
    background: linear-gradient(90deg, #128C7E 0%, #25D366 100%); /* Efeito hover */
}

/* Para garantir que todos os botões .btn-fechamento tenham o mesmo tamanho */
.btn-fechamento {
    width: 100%; /* Ocupa toda a largura do container */
    max-width: 100%; /* Garante que não ultrapasse */
    font-size: 1.4rem;
    padding: 18px;
    display: flex; /* Adicionado para centralizar texto se necessário */
    align-items: center;
    justify-content: center;
    text-align: center;
}