@font-face {
  font-family: 'Gilroy';
  src: url('Gilroy-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('Gilroy-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  background-color: #000;
  font-family: 'Gilroy', sans-serif;
}

h1 {
  font-size: 3em;
  font-weight: 800; /* Usando Gilroy ExtraBold */
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 2em;
  font-weight: 800; /* Usando Gilroy ExtraBold */
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.875em; /* 30px equivalente */
  }

  h2 {
    font-size: 1.27em; /* 20px equivalente */
  }

  h3 {
    font-size: 1.125em; /* 18px equivalente */
  }

  p {
    font-size: 1em; /* 16px equivalente */
    line-height: 1.5em; /* 24px equivalente */
  }
}

canvas#neuro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: black;
}

.sessao-hero {
  position: relative;
  z-index: 1;

  overflow: hidden; /* Para garantir que o canvas não ultrapasse a seção */
}

.sessao-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  display: flex;
  align-items: center;
}

.sessao-hero .slogan,
.sessao-hero .texto-preto {
  color: #fff;
}

.amarelo {
  background: linear-gradient(to right, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.botao-primaria {
  padding: 20px 40px;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  font-size: 1.5em;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  font-weight: 600;
  background-color: #068e5b;
  border: 2px solid #068e5b;
  cursor: pointer;
}

.botao-primaria:hover {
  background-color: #c7a004;
}

@media (max-width: 767px) {
  .botao-primaria {
    padding: 15px 30px;
    font-size: 1.2em;
    max-width: 100%;
  }
}

.hero {
  max-width: 140%;
  height: auto;
}

@media (max-width: 768px) {
  .sessao-hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.sessao-problema {
  position: relative;
  z-index: 1;
  color: #fff;
}

.sessao-problema .container {
  position: relative;
  z-index: 2;
}

.sessao-problema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg2-teste.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.cor-primaria {
  color: #fff;
}

.cor-secundaria {
  color: #c5f7c5;
}

.linha-separadora {
  border: 0;
  height: 2px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(197, 247, 197, 0.75),
    rgba(0, 0, 0, 0)
  );
  margin: 10px 0;
}
.metodo-eisl {
  background-image: url('bg3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.metodo-eisl-divisao .box,
.metodo-eisl-divisao .box-final {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #c5f7c5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #151515;
}

.metodo-eisl-divisao .box-final {
  background-color: #2dac6e;
}

.metodo-eisl-divisao .box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 50px;
  height: 2px;
  background-color: #c5f7c5;
}

.metodo-eisl-divisao .box-final::after,
.metodo-eisl-divisao .box-final::before {
  content: '';
  position: absolute;
  right: 100%;
  width: 25px;
  height: 2px;
  background-color: #c5f7c5;
}

.metodo-eisl-divisao .box-final::after {
  top: 45%;
}

.metodo-eisl-divisao .box-final::before {
  top: 55%;
}

.metodo-eisl-divisao .box:first-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 20px;
  height: 2px;
  background-color: #c5f7c5;
}

@media (max-width: 768px) {
  .metodo-eisl-divisao .box::after,
  .metodo-eisl-divisao .box::before,
  .metodo-eisl-divisao .box-final::after,
  .metodo-eisl-divisao .box-final::before {
    display: none;
  }
}

.beneficio-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  overflow: hidden;
}

.beneficio-img {
  max-height: 100%;
  max-width: 100%;
}

.beneficio-img-container-grande {
  height: 400px;
}

.beneficio-img-grande {
  max-height: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .beneficios .row.text-center > .col-12 {
    margin-bottom: 20px;
  }
  .beneficios .row.text-center .col-12:last-child {
    margin-bottom: 0;
  }
  .beneficios .beneficio-img-container-grande {
    height: 300px;
  }
}

.box-dark,
.box-bright {
  border: 2px solid #c5f7c5;
  color: #fff;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(21, 21, 21, 0.7);
}

.box-bright {
  background-color: rgba(45, 172, 110, 0.3);
}

.box-dark ul li,
.box-bright ul li {
  margin: 10px 0;
  font-size: 1.5em;
}
.beneficio-box {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.oferta-irresistivel {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.oferta-irresistivel h2,
.oferta-irresistivel h3 {
  margin-bottom: 20px;
}

.oferta-irresistivel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oferta-irresistivel ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.oferta-irresistivel ul li:last-child {
  border-bottom: none;
}

.oferta-irresistivel .preco-total,
.oferta-irresistivel .oferta-especial,
.oferta-irresistivel .economia {
  margin-top: 20px;
  font-weight: bold;
}

.oferta-irresistivel .btn {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 5px;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2em;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}

.modulos-curso .accordion-item {
  background-color: transparent;
  border: none;
}

.modulos-curso .accordion-header .accordion-button {
  background-color: transparent; /* Botões transparentes */
  color: #fff; /* Texto branco */
  border: none;
  padding: 1rem 0; /* Espaçamento interno */
  font-size: 2rem;
  text-align: left;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .modulos-curso .accordion-header .accordion-button {
    font-size: 1.25rem; /* Tamanho da fonte reduzido para telas menores */
  }
}

.modulos-curso .accordion-button:not(.collapsed) {
  color: #fff;
  text-shadow: 0 0 2px #fff, 0 0 100px #ac403e;
  background-color: transparent; /* Fundo mais escuro quando não colapsado */
  border: none;
  padding: 1rem 0;
}

.modulos-curso .accordion-body {
  color: #fff;
  background-color: transparent;
  padding: 1rem 0;
  border: none;
  font-size: 1.3rem;
  text-align: left;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .modulos-curso .accordion-body {
    font-size: 1rem;
  }
}
.modulos-curso .accordion-button::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%)
    contrast(103%);
}

.bg-garantia {
  background-image: url('bg4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
