@font-face {
  font-family: texto;
  src: url(Gotham-Book.otf);
}

@font-face {
  font-family: titulo;
  src: url(GOTHAM-BLACK.TTF);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'texto', sans-serif;
}

body {
  background-image: url(1\ -\ Fundo.png);
  color: #fff;
  line-height: 1.6;
  background-size: cover;
  /* A imagem de fundo irá cobrir toda a tela */
  background-repeat: no-repeat;
  /* Impede a repetição da imagem */
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* cabecalho */
header {
  text-align: center;
  padding: 10vh 5vw;
}


header h1 {
  font-family: 'titulo';
  text-transform: uppercase;
  color: #fff;
  padding-top: 4rem;
}

/* hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  /* remove padding */
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  max-width: none;
  opacity: 0;
  animation: fadeInLeft 1s ease-out forwards;
}

.hero-text {
  flex: 1;
  padding-left: 5vw;
  padding-right: -5vw; /* caso fique desalinhado na tela a foto do vini diminua este valor*/
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInLeft 1s ease-out forwards;
}

.hero-text h1 {
  font-size: 3.2vw;
  text-wrap: nowrap;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2vw;
}

.hero-text p {
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5vw;
}

.highlight {
  font-family: 'titulo';
  background: linear-gradient(to right, #00e6e6, #ffe600, #ff6666);
  -webkit-background-clip: text;
  background-clip: text;  -webkit-text-fill-color: transparent;

}

.btn {
  display: inline-block;
  background: linear-gradient(to right, rgb(250, 233, 1), rgb(255, 115, 0));
  color: #fff;
  padding: 10px;
  width: 500px;
  text-align: center;
  font-size: xx-large;
  font-family: 'titulo';
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: .5s ease;
  cursor: pointer;
  border-radius: 50px;
}

.btn:hover {
  scale: 1.1;
  background: transparent;
  border: solid 1px rgb(250, 233, 1);
}

.subtitle {
  display: block;
  text-align: center;
  font-size: 1vw;
  margin-top: 0.5vw;
}

/* Tablets (entre 768px e 1024px) */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    padding: 40px 5%;
    text-align: center;
  }

  .highlight {
    font-size: clamp(20px, 8vw, 28px);
    /* ajusta tamanho entre 20px e 28px */
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }

  .hero-text,
  .hero-image {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 6vw;
  }

  .hero-text p {
    font-size: 2.5vw;
  }

  .access-info {
    font-size: 2vw;
  }

  .hero-image {
    margin-top: 40px;
  }

  .subtitle {
    font-size: 3vw;
  }
}

/* MOBILE (até 767px) */
@media (max-width: 767px) {
  header {
    padding: 30px 5%;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text .cinema {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }

  .access-info {
    font-size: 3vw;
  }

  .btn {
    font-size: 1.3rem;
    width: 100%;
    max-width: 500px;
    min-width: max-content;
  }


}

/* Cards */
h2 {
  font-size: 3.5vw;
  margin-bottom: 4rem;
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 5%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.cards {
  justify-content: center;
  /* Alinha os cards ao centro */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}

.card {
  background: rgba(0, 0, 0, 0.4);
  /* fundo escuro com transparência */
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  color: white;
  font-family: 'Poppins', sans-serif;
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  animation: direita 1ms ease-in-out;
  animation-timeline: view();
  animation-range: cover 0 cover 50%;
  position: relative;
  /* Importante para posicionar o número */
  width: 700px;
}

.card:hover {
  transform: scale(1.03);
}

.text-card {
  font-family: 'texto';
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  margin-left: 34px;
}

.card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
  font-family: 'titulo';
  font-weight: 700;
}

.card-img {
  position: absolute;
  bottom: -50px;
  /* para sair um pouco do card */
  right: -30px;
  /* metade fora na direita */
  width: 60px;
  height: 60px;
}

.card-img img {
  width: 30%;
  height: 30%;
  object-fit: contain;
}

.card-number {
  position: absolute;
  top: -16px;
  /* Metade fora */
  left: -16px;
  /* Metade fora */
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.historico {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 3rem;
  flex-direction: row;
}

.historico .img2 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
}

.historico .textos {
  max-width: 600px;
  text-align: left;
}

.img2 {
  flex: 1;
}

.textos {
  flex: 1;
  max-width: 550px;
  margin-right: 500px;
  font-size: 25px;
  line-height: 1.2;
}

.mentor {
  font-weight: 800;
  font-size: 45px;
}

/* MOBILE (até 768px) */
@media (max-width: 768px) {
  .historico {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    align-items: center;

  }

  .textos {
    width: 100%;
    padding: 0 10px;
    max-width: 100%;
    font-size: 18px;
    text-align: center;
    margin-right: 0;

  }

  .historico .img2 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .historico .img2 img {
    width: 90%;
    height: auto;
    object-fit: contain;
    max-width: 400px;
  }

  .mentor {
    font-size: 26px;
  }
}

/* MOBILE (até 768px) */
@media (max-width: 768px) {
  .card {
    padding: 25px 20px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .card span {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

  .curso {
    font-size: 1.5rem !important;
  

  }
}

.price {
  font-size: 6rem;
  color: #00ff84;
}


.strikethrough {
    display: block;
    text-align: center;
    text-decoration: line-through;
    color: #e52541; /* Mantém a cor original */
    font-weight: 900;
    font-size: 3rem;
}

.fim {
  font-size: 4rem;
  font-weight: 900;
}

.bonus {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.bonus ul {
  list-style: none;
  padding: 0;
}

.bonus li {
  display: flex;
  align-items: center;
  margin-left: 38%;
  margin-bottom: 12px;
  gap: 10px;
}

.bonus .icon img {
  width: 24px;
  /* ajuste conforme necessário */
  height: 24px;
}

.limited-offer {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

.sozinho {
  margin-top: 70px;
  margin-bottom: 70px;
  font-size: 2rem;
}

ul {
  list-style: none;
  padding-left: 1rem;
}

ul li {
  margin-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.full-centered-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  /* <-- padding lateral */
  box-sizing: border-box;
  max-width: 100%;
}

.full-centered-section p,

.full-centered-section h1,

.full-centered-section h2 {
  max-width: 700px;
  /* <-- limita largura do texto */
  width: 100%;
  margin: 0 auto;
}

.full-centered-section .content-wrapper {
  max-width: 700px;
  width: 100%;
}

.content-section {
  padding: 0px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

}

.content-section div {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.content-section div p {
  position: relative;
  margin: 0;
 
  font-family: 'texto', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: white;
}

 
/* MOBILE(até 768px) */
@media (max-width: 768px) {
  .content-section>div {
    flex-direction: row;
    align-items: flex-start;
    align-self: center !important;
    text-align: left;
  }

  .sozinho {
    font-size: 1rem;
  }

  .ofertatl {
    font-size: 2rem;
  }

  .h2card {
    font-size: 2rem;
  }

  span {
    font-size: 3rem;
  }

  .check-icon {
    width: 15px;
    height: 20px;
  }

  .content-section>div p {
    padding-left: 16px;
    padding-right: 0;
    font-size: 0.8rem;
  }

  .content-section>div p::before {
    left: 0;
    right: auto;
  }

  .bonus li {
    margin-left: 0%;
  }
}

.curso {
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center;
  margin: 60px;
  background: linear-gradient(90deg, #00e6e6, #ffe600, #ff6666, #ff0000);
  -webkit-background-clip: text;
  background-clip: text;  -webkit-text-fill-color: transparent;
}

.check-icon {
  width: 50px;
  height: 50px;
  margin-top: 4px;
  flex-shrink: 0;
}

.titulo-bonus {
  font-weight: bold;
  font-size: 3.5rem;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700;
  text-align: center;
  margin-bottom: 60px;
}

.oferta {
  font-size: 15px;
}

.nav li {
  white-space: nowrap;

}

.nav li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.5s;
}

.um:hover {
  color: #f39c12;
}

.whats1:hover {
  color: #00ff84;
  transition: 0.5s;
}

.bonus ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus .presente {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.bonus .icon img {
  width: 40px;
  height: auto;
}


@media (max-width: 600px) {
  .bonus .presente {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timer {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .bonus .icon {
    margin-top: 1rem;
    margin-bottom: -2rem;
  }

  .fim {
    font-size: 2rem;
  }

  .price {
    font-size: 3rem;
  }

  .acessocompleto {
    font-size: 2rem;
  }

  .strikethrough{
    font-size: 1.2rem;
  }
}

.faq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.faq-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.faq-item input {
  display: none;
}

.faq-label {
  display: block;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s;
  text-align: center;
}

.faq-label:hover {
  background: rgba(0, 0, 0, 0.463);
  transform: scale(1.03);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 1.5rem;
  color: #fff;
}

.faq-item input:checked~.faq-content {
  max-height: 200px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  color: rgb(255, 255, 255);
}

.tcard {
  text-align: center;
}


.container {
  margin: auto;
  width: 45%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.vini {
  text-decoration: none;
  color: #ffffff;
}

.vini:hover {
  color: rgb(0, 170, 255);
  transition: 0.5s;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav li {
  margin: 10px 20px;
}

/* Botão de menu (hambúrguer) */
.menuSuspenso {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  right: 20px;
  top: 15px;
}

.menuSuspenso .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: 0.4s;
}

/* Responsivo hamburguer*/
@media (max-width: 768px) {
  .menuSuspenso {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    background-color: #00000047;
    width: 100%;
    display: none;
    position: relative;
  }

  .nav ul.active {
    display: flex;
  }

  .nav li {
    margin: 0px 0;
  }

  .perguntaf {
    width: 350px;
  }
}



.faq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.faq-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.faq-item input {
  display: none;
}

.faq-label {
  display: block;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s;
  text-align: center;
}

.faq-label:hover {
  background: rgba(0, 0, 0, 0.463);
  transform: scale(1.03);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 1.5rem;
  color: #fff;
}

.faq-item input:checked~.faq-content {
  max-height: 200px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  color: rgb(255, 255, 255);
}

.tcard {
  text-align: center;
}

.perguntaf {
  text-align: center;
  margin: 30px 0px;
}

.container {
  margin: auto;
  width: 45%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.vini {
  text-decoration: none;
  color: #ffffff;
}

.vini:hover {
  color: rgb(0, 170, 255);
  transition: 0.5s;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Quando o checkbox está marcado, expande o conteúdo */
.faq-item input:checked~.faq-content {
  max-height: 1000px;
  /* valor grande o suficiente para caber o texto */
}

/* Ajustes para o texto no mobile */
.tcard {
  font-size: 16px;
  padding: 10px 15px;
  text-align: left;
  word-break: break-word;
  /* quebra a palavra se for preciso */
}

/* No mobile (opcional para melhorar ainda mais) */
@media (max-width: 767px) {
  .tcard {
    font-size: 14px;
    padding: 8px 10px;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Aplica a animação de entrada uma vez */
#countdown span {
  display: inline-block;
  animation:
    slideFadeIn 0.8s ease-out forwards,
    pulse 1.5s ease-in-out infinite;
  opacity: 0;
  /* inicia invisível para o fade funcionar */
}

  footer {
  background-color: #000000c7;
  color: #fff;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-ds {
  max-width: 70%;
}

.footer-ds h3 {
  font-size: 20px;
  margin-bottom: 10px;
   color: #fffefd;
}

.footer-ds p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-social {
  margin: 10px 0;
}

.footer-social a {
  margin-right: 10px;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.social-icon1 {
  width: 30px;
  height: 30px;
  transform: translateY(12%);
}

.footer-copy {
  font-size: 12px;
  color: #ccc;
}

.footer-credits {
  font-size: 13px;
  color: #ffffff;
  max-width: 30%;
}
  .eliterodape{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
  }

  .eliterodape:hover{
    color: #006eff;
  }
.instamentor{
  text-decoration: none; 
  color: rgb(255, 255, 255);

}
.instamentor:hover{
  color: rgb(0, 170, 255);
  transition: 0.5s;
}
/* .esquerda {
  animation: esquerda 1ms ease-in-out;
  animation-timeline: view();
  animation-range: cover 0 cover 50%;
}

.direita {
  animation: direita 1ms ease-in-out;
  animation-timeline: view();
  animation-range: cover 0 cover 50%;
} */



.h2card {
  animation: esquerda 1ms ease-in-out;
  animation-timeline: view();
  animation-range: cover 0 cover 50%;
  font-size: 3rem;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  animation: pulse;
}

#countdown div {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  min-width: 80px;
}

#countdown span {
  font-size: 2rem;
  display: block;
  color: #000;
  text-align: center;
  font-weight: 900;
}

#countdown small {
  font-size: 0.9rem;
  color: #000000;
}

@media (max-width: 600px) {
  body {
    padding: 0 20px;
  }

  #countdown {
    gap: 5px;
  }

  #countdown div {
    padding: 15px;
    min-width: 70px;
  }

  #countdown span {
    font-size: 1.5rem;
  }

  #countdown small {
    font-size: 0.75rem;
  }

 html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  footer {
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

:root {
    --primaria: rgb(250, 233, 1);
    --secundaria: rgb(255, 115, 0);
    --escuro: #2a270f;
    --maisescuro: #0a0f1c;
    --claro: #e2e8f0;
    --vidro: rgba(255, 255, 255, 0.1);
}

.contato {
    padding: 6rem 2rem;
}

.contato-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.formulario-contato {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--vidro);
    border-radius: 16px;
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.campo-form {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--claro);
    border: 1px solid var(--vidro);
    outline: none;
    forced-color-adjust: -webkit-text;
}

.campo-form:focus {
    border-color: var(--secundaria);
    box-shadow: 0 0 10px var(79, 70, 229, 0.3);
}

.botao-form {
    color: var(--claro);
    background: linear-gradient(45deg, var(--primaria), var(--secundaria));
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.5s ease;
}

.botao-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(213, 229, 70, 0.4);
}