 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background: linear-gradient(90deg, rgb(48, 1, 46) 50%, rgb(0, 30, 40) 100%);
  color: #ffffff;
  overflow-x: hidden;
}

 .nav-bar {
  background-color: #ffffff2a;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  
}
.logo {
  width: 80px;
  margin: 30px 0;
  margin-left: 2%;
}
nav {
  width: 100%;
  text-align: right;
}
li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
.nav-link {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
}
.nav-link:hover {
  color: #ff1ca6;
  transition: 0.3s;
}
.nav-link:active {
  color: #ffd339;
  transition: 0.3s;
} 

 .container-segundario {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(90deg, rgb(48, 1, 46) 50%, rgb(0, 30, 40) 100%);
}

.container-segundario a {
  text-decoration: none;
}

.column-1,
.column-2 {
  flex: 1;
  margin: 5% 5%;
}
.column-1 {
  padding: 20px;
  font-size: 150%;
}
.column-2 {
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
}

.column-2 img {
  animation: moveController 2s infinite alternate ease-in-out;
}

.Buy-now {
  background-color: rgba(2, 104, 138, 0.74);
  color: #fff;
  margin-top: 5%;
  padding: 10px 30px;
  border-radius: 15px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.9s 0.2s ease-in-out;
}

.Buy-now img {
  width: 30px;
  margin-left: 10px;
  display: none;
}

.Buy-now:hover {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.Buy-now:hover img {
  display: block;
}

.video-container {
  max-width: 100%;
  height: auto;
  margin-top: 5%;
}

.video-container h1 {
  background-color: #1c3c473b;
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.video-container h3 {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 100;
  color: #ffffff;
  text-align: center;
  padding: 20px 20px;
  margin-bottom: 5%;
}

.video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 10%;
}

.item-pra-quem-é {
  margin: 20px;
  text-align: center;
  margin-bottom: 10%;
}

 

.item-pra-quem-é h1 {
  font-size: 2rem;
}

.item-conteudo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item-primario,
.item-segundario,
.item-terciario {
  flex: 1 1 30%;
  margin: 10px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #ff1ca433;
}

.item-primario h3,
.item-segundario h3,
.item-terciario h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.item-primario p,
.item-segundario p,
.item-terciario p {
  font-size: 1rem;
}

.item-conteudo ul {
  margin-top: 10px;
  padding-left: 20px;
}

.item-conteudo ul li {
  margin-bottom: 5px;
}

.item-preço {
  display: flex;
  justify-content: center; /*ou space-between, space-around etc. */
  margin-top: 5%;
  flex-wrap: wrap; /* opcional, para quebrar linha em telas pequenas */
  padding: 5% 5%;
  gap: 5%; /* espaçamento entre as imagens */
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;  
  animation: glow 1.5s infinite alternate;
  cursor: pointer;
}
@keyframes glow {
  from {
    box-shadow: 0 0 5px #f0f;
  }
  to {
    box-shadow: 0 0 20px #f0f, 0 0 30px #f0f;
  }
}

 .img-iniciante:hover, .img-intermediario:hover, .img-avancado:hover {
    transform: scale(1.20);
    filter: brightness(1.5);
     border: 3px solid #ffd700; /* Ciano neon */
     box-shadow:
    0 0 5px #ffd700,
    0 0 10px#ffd700,
    0 0 20px#ffd700,
    0 0 40px #ffd700;
    animation: shake 0.5s;
  }
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translatex(-9px); }
  50% { transform: translateX(10px); }
  75% { transform: translatex(-9px); }
  100% { transform: translateX(0); }
}


.item-preço img {
  width: 30%;
  max-width: 350px; /* Limita a largura máxima da imagem */
  min-width: 250px; /* Limita a largura mínima da imagem */
  
}

.item-preço a {
  text-decoration: none;
}

.item-professor {
  display: flex;
  justify-content: center; /* ou space-between, space-around etc. */
  margin-top: 9%;
  flex-wrap: wrap; /* opcional, para quebrar linha em telas pequenas */
  padding: 5%;
  gap: 1px; /* espaçamento entre as imagens */
  background-color: #48002b39;
}

.item-professor h1 {
  display: none;
}

.item-professor img {
  width: 18%;
  height: auto;
  border-radius: 3%;
}

.item-professor-texto {
  background-color: #ff1ca432;
  width: 50%;
  height: auto;
  padding: 5%;
  border-radius: 20px;
  margin-left: 5%;
  font-size: 20px;
}
.item-professor-texto h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-top: -10%;
  margin-bottom: 10%;
}

h2 {
  color: #ff0099;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.item-testimonials {
  display: flex;
  margin: 20px;
  text-align: center;
}

.slider-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.slide-card {
  flex: 1 30px;
  margin: 10px;
  font-size: 15px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  letter-spacing: 2px;
  background-color: #ff1ca433;
}

.item-author {
  margin-top: 20px;
  color: #ff0099;
  font-size: 20px;
  font-weight: bold;
}

.item-pergunta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 0;
  margin-top: 10%;
  padding: 1%;
}
.perguntas-frequentes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20rem;
  margin-top: 1%;
}

.perguntas-frequentes details {
  margin-bottom: 10px;
}

.perguntas-frequentes summary {
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

.perguntas-frequentes p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
}
.pergunta-1 {
  margin-left: 20px;
  font-size: 30px;
}

.pergunta-2 {
  margin-left: 25px;
  font-size: 30px;
}

.pergunta-3 {
  margin-left: 20px;
  font-size: 30px;
}

.pergunta-4 {
  margin-left: 25px;
  font-size: 30px;
}

.pergunta-5 {
  margin-left: 20px;
  font-size: 30px;
}

.pergunta-6 {
  margin-left: 25px;
  font-size: 30px;
}

.pergunta-7 {
  margin-left: 20px;
  font-size: 30px;
}

.pergunta-8 {
  margin-left: 25px;
  font-size: 30px;
}

.pergunta-9 {
  margin-left: 20px;
  font-size: 30px;
}

.pergunta-10 {
  margin-left: 25px;
  font-size: 30px;
}
.resposta-1 {
  font-size: 19px;
  background-color: #ffffff10;
}

.resposta-2 {
  font-size: 20px;
  background-color: #ffffff10;
}

.resposta-3 {
  font-size: 20px;
  background-color: #ffffff10;
}

.resposta-4 {
  font-size: 20px;
  background-color: #ffffff10;
}

.resposta-5 {
  font-size: 20px;
  background-color: #ffffff10;
}

.resposta-6 {
  font-size: 20px;
  background-color: #ffffff10;
}

.resposta-7 {
  font-size: 19px;
  background-color: #ffffff10;
}

.resposta-8 {
  font-size: 20px;
  background-color: #ffffff10;
}

.resposta-9 {
  font-size: 19px;
  padding: 30px;
  background-color: #ffffff10;
}

.resposta-10 {
  font-size: 19px;
  padding: 30px;
  background-color: #ffffff10;
}

.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.redes-sociais img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s;
  cursor: pointer;
}

.redes-sociais img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer {
  background: linear-gradient(90deg, #4b2c4a, #1c3c47);
  color: white;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
  margin-top: 10%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0 0;
  margin-top: 20px;
  border-top: 1px solid #ffffff33;
  font-size: 14px;
}

.loggo-lenon {
  width: 20%;
  margin-top: -30%;
  margin-left: 80%; 
  opacity: 0.6;
}

.link-whatsapp img {
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  transition: height 0.3s ease-in-out;
  opacity: 0.8;
}

.link-whatsapp img:hover {
  height: 70px;
}

@keyframes moveController {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translatex(20%);
  }
}

@media (max-width: 760px) {
  /* Ajuste a navegação */
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  nav {
    text-align: left;
    width: 100%;
  }

  .logo {
    display: none;
  }

  li {
    display: block;
    margin: 10px 0;
  }

  /* Ajuste o layout principal */
  .container-segundario {
    flex-direction: column;
    padding: 10px;
  }

  .column-1,
  .column-2 {
    margin: 5% 0;
    width: 100%;
  }

  .column-1 {
    padding: 20px;
    font-size: 100%;
  }

  .column-2 img {
    width: 80%;
    height: auto;
    display: block;
  }

  /* Ajuste botões e textos */
  .Buy-now {
    width: 100%;
    font-size: 18px;
    padding: 10px;
    margin-top: 10px;
  }

  .botao {
    width: 80%;
    margin: 20px 40px;
    font-size: 16px;
  }

  /* Ajuste seções de conteúdo */
  .item-conteudo {
    flex-direction: column;
    align-items: center;
  }

  .item-preço {
    flex-direction: column;
    align-items: center;
    padding: 5%;
    gap: 10px; /* espaçamento entre as imagens */   
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: glow 1.5s infinite alternate;
  }

@keyframes glow {
  from {
    box-shadow: 0 0 5px #f0f;
  }
  to {
    box-shadow: 0 0 20px #f0f, 0 0 30px #f0f;
  }
}

 .img-iniciante:hover, .img-intermediario:hover, .img-avancado:hover {
    transform: scale(1.20);
    filter: brightness(1.5);
     border: 3px solid #ffd700; /* Ciano neon */
     box-shadow:
    0 0 5px #ffd700,
    0 0 10px#ffd700,
    0 0 20px#ffd700,
    0 0 40px #ffd700;
    animation: shake 0.5s;
  }
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translatex(-9px); }
  50% { transform: translateX(10px); }
  75% { transform: translatex(-9px); }
  100% { transform: translateX(0); }
}

  .item-preço img {
   
    width: 80%;
    margin: 0 auto 20px;
  }

  .slider-container {
    flex-direction: column;
    align-items: center;
  }

  .item-primario,
  .item-segundario,
  .item-terciario {
    width: 100%;
    margin: 10px 0;
  }

  /* Ajuste seção do professor */
  .item-professor {
    display: flex;
    flex-direction: column;
    padding: 5%;
  }
  .item-professor h1 {
    display: block;
    margin-left: 50px;
  }

  .item-professor img {
    width: 80%;
    margin-bottom: 20px;
    margin-left: 30px;
  }

  .item-professor-texto {
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
  }

  .item-professor-texto h3 {

    display: none;
  }

  /* Ajuste perguntas frequentes */
  .item-pergunta {
    padding: 10px;
    margin: 15%;
    font-size: 40px;
  }
  .perguntas-frequentes {
    margin-left: 0;
    padding: 0 10px;
  }

  .pergunta-1,
  .pergunta-2,
  .pergunta-3,
  .pergunta-4,
  .pergunta-5,
  .pergunta-6,
  .pergunta-7,
  .pergunta-8,
  .pergunta-9,
  .pergunta-10 {
    font-size: 24px;
    margin-left: 0;
  }

  .resposta-1,
  .resposta-2,
  .resposta-3,
  .resposta-4,
  .resposta-5,
  .resposta-6,
  .resposta-7,
  .resposta-8,
  .resposta-9,
  .resposta-10 {
    font-size: 18px;
    padding: 10px;
  }

  /* Ajuste rodapé */
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .loggo-lenon {
    width: 50%;
    margin-bottom: -45px;
    margin-left: 60%;
    opacity: 1.9;
  }

  .price-card-item {
    flex: 0 0 80%; /* Cada item ocupa 80% da largura do contêiner */
    /* Isso faz com que apenas um item grande e uma parte do próximo apareçam */
    min-width: 280px; /* Garante uma largura mínima para o cartão */
    scroll-snap-align: center; /* Centraliza o item ao parar de rolar */
    box-sizing: border-box; /* Inclui padding e border na largura */
    padding: 15px; /* Padding interno para o cartão */
    background-color: #ff1ca433; /* Fundo do cartão, ajuste se necessário */
    border-radius: 10px; /* Bordas arredondadas */
    display: flex; /* Torna o item um flex container para a imagem e o botão */
    flex-direction: column; /* Organiza a imagem e o botão em coluna */
    align-items: center; /* Centraliza a imagem e o botão horizontalmente */
  }

  .price-card-item img {
    width: 100%; /* Imagem preenche a largura do cartão */
    height: auto;
    margin-bottom: 15px; /* Espaçamento entre a imagem e o botão */
    padding: 0; /* Remove padding original da imagem */
  }

  .price-card-item .botao {
    width: 90%; /* Botão preenche a largura do cartão */
    margin: 0; /* Remove margens que podem estar conflitando */
    position: static; /* Remove o posicionamento absoluto se houver */
    transform: none; /* Remove transformações que podem estar conflitando */
    font-size: 16px; /* Ajusta o tamanho da fonte do botão para mobile */
  }



  body {
    overflow-x: hidden;
  }
} 
