:root {
  --color-orange: orange;
  --color-white: white;
  --color-black: black;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: black;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
.titulo{
  font-size: 1rem;
}
.botao {
  color: var(--color-white);
  font-weight: bold;
  background-color: var(--color-orange);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
}

.botao_treinar{
  color: var(--color-white);
  font-weight: bold;
  background-color: var(--color-orange);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
  margin-top: 20px;

}

.botao:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}

header {
  width: 100vw;
  padding: 10px;

  text-align: center;

  background-color: var(--color-orange);
}

#chamada_header {
  font-size: 0.8rem;
  color: var(--color-white);
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;

  color: var(--color-white);
}

#banner_texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  text-align: center;
  width: 400px;
}

#banner_texto h1 {
  font-size: 1.3rem;
  color: var(--color-orange);
}

#banner_img {
  width: 270px;
}

#banner_img img {
  max-width: 100%;
}
.evolucao{
  color: var(--color-orange);
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
}
#casos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;

  color: var(--color-white);
  background-color: var(--color-orange);
  height: 600px;
}

#casos_texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  text-align: center;
  width: 300px;
}

#casos_texto h1 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-black);
}

#container {
  margin-top: 20px;
  max-width: 90%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;

  border-radius: 10px;
}

#container img {
  width: 150px;
  height: 150px;
  object-fit: fill;
  border-radius: 8px;
}

#container img:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}

#metodoGn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;

  color: var(--color-white);
}

#metodoGn_texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

  text-align: center;
  width: 400px;
}

#metodoGn_texto h1 {
  font-size: 1.4rem;
  color: var(--color-orange);
}

.text_text{
  display: flex;
  align-items: center;
}

.text_text p{
  margin-top: 20px;
}

.logo{
  height: 100px;
}
.check{
  height: 35px;
}



#bonus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;

  color: var(--color-white);
}

#bonus_texto {
  width: 270px;
  text-align: center;
}

#bonus_texto h1 {
  font-size: 3rem;
  color: var(--color-orange);
}

#bonus_texto img {
  max-width: 100%;
}

#bonus_img {
  width: 270px;
}

#bonus_img img {
  max-width: 100%;
}

#investimento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;

  color: var(--color-white);
}

#investimento_img_desktop {
  display: none;
}

#investimento_img_mobile {
  width: 270px;
}

#investimento_img_mobile img {
  max-width: 100%;
}

#investimento_texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

  text-align: center;
}

#botao_investimento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#preco h1 {
  font-size: 2.5rem;
  color: var(--color-orange);
}

#sub_texto {
  font-size: 1.3rem;
}

#preco_antigo {
  font-weight: bold;
  font-size: 1.5rem;
}

#preco_novo {
  font-weight: bold;
  font-size: 3rem;
  color: var(--color-orange);

  margin-top: 10px;
}
#preco_avista{
  margin-top: 10px;
  font-size: 20px;
}

span{
  font-size: 15px;
  font-weight: bold;
  color: var(--color-orange);
}

#icons_bank {
  display: flex;
  gap: 8px;
}

#icons_bank img {
  width: 30px;
  height: 30px;
}

#questoes {
  width: 100vw;
  margin-top: 20px;
  padding: 20px;

  text-align: center;
  font-weight: bold;

  background-color: var(--color-orange);
}

#questoes_btn {
  margin-top: 20px;
}

#questoes_btn .botao {
  background-color: var(--color-black);
}

#questoes_btn .botao:hover {
  background-color: var(--color-black);
}
.evolucao p{
  font-size: 10px;
}
footer {
  padding: 10px;
  background-color: var(--color-white);
  text-align: center;
}

@media (min-width: 700px) {
  #banner {
    flex-direction: row;
    gap: 20px;
  }

  #banner_texto {
    width: 450px;
  }

  #banner h1 {
    font-size: 1.5rem;
  }

  #banner p {
    font-size: 1.2rem;
  }

  #casos {
    max-width: 100vw;
    height: 600px;
  }

  #casos_texto {
    width: 90%;
  }

  #casos_texto h1 {
    font-size: 2.5rem;
  }

  #container img {
    width: 200px;
    height: 200px;
  }

  #container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  #metodoGn {
    max-width: 100vw;
  }

  #metodoGn_texto {
    width: 50%;
  }

  #metodoGn_texto h1 {
    font-size: 1.5rem;
  }

  #metodoGn_texto p {
    font-size: 1.2rem;
  }

  #metodoGn_texto a {
    margin-top: 30px;
  }

  #bonus {
    flex-direction: row;
  }

  #investimento {
    flex-direction: row;
  }

  #investimento_img_desktop {
    display: contents;
  }

  #investimento_img_desktop img {
    width: 500px;
  }

  #investimento_img_mobile {
    display: none;
  }
}

@media (min-width: 1020px) {
  #banner {
    flex-direction: row;
    gap: 80px;
  }

  #banner_texto {
    width: 500px;
  }

  #banner_img {
    width: 450px;
  }

  #banner h1 {
    font-size: 2rem;
  }

  #banner p {
    font-size: 1.6rem;
  }

  #casos {
    max-width: 100vw;
    height: 400px;
  }

  #casos_texto {
    width: 90%;
  }

  #casos_texto h1 {
    font-size: 2.5rem;
  }

  #container img {
    width: 225px;
    height: 225px;
  }

  #container {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;

    padding-bottom: 50px;
  }

  #metodoGn {
    max-width: 100vw;
    
  }

  #metodoGn_texto {
  }
  .metodo_title h1{
    font-size: 20px;
  }


  #metodoGn_texto h1 {
    font-size: 1.5rem;
  }

  #metodoGn_texto p {
    font-size: 1.4rem;
  }

  #metodoGn_texto a {
    margin-top: 30px;
  }

  #bonus {
    flex-direction: row;
    gap: 150px;
  }

  #maisDicas {
    width: 500px;
  }

  #bonus_img {
    width: 350px;
  }

  #investimento {
    flex-direction: row;
  }

  #investimento_img_desktop {
    display: contents;
  }

  #investimento_img_desktop img {
    width: 500px;
  }

  #investimento_img_mobile {
    display: none;
  }

  .evolucao p{
    font-size: 2rem;
  }
}
