/* Seção 1 */

.section1 {
  margin-top: 174px;
  padding: 100px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-one);
  width: 100%;
  text-align: center;
}

.s1-conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40%;
}

.s1-conteudo h1 {
  color: var(--color-two);
  font-family: "TonCondensed-Black", Sans-serif;
  font-size: 118px;
  font-weight: 1000;
  position: relative;
  top: -10px;
}

.s1-conteudo h2 {
  font-family: "TonCondensed-Black", Sans-serif;
  font-size: 48px;
  font-weight: 800;
  padding: 25px 0px;
  letter-spacing: 0.2px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);

  span {
    color: #000
  }
}

.s1-conteudo img {
  width: 500px;
}

.s1-conteudo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.s1-conteudo button {
  margin-top: 30px;
  background: none;
  border: 0.5px solid rgba(0, 0, 0, 0.412);
  width: 530px;
  border-radius: 25px;
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.379);
  text-decoration: none;
  font-family: "TonCondensed-Bold", Sans-serif;
  font-size: 21px;
  font-weight: 700;
  padding: 12px 24px;
  color: #068e22;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.s1-conteudo button:hover {
  width: 480px;
  font-size: 20px;
}

.logo-maquininha {
  width: 600px;
  overflow: hidden;
  margin-left: 5px;
}

.logo-maquininha img {
  width: 600px;
  max-height: 600px;
}


/* Media Queries */

/* Tablets */
@media (max-width: 1123px) {
  .section1 {
    margin-top: 120px;
  }

  .s1-conteudo img {
    width: 250px;
  }

  .s1-conteudo h1 {
    font-size: 88px;
  }

  .s1-conteudo h2 {
    font-size: 28px;
  }

  .s1-conteudo button {
    width: 350px;
  }

  .s1-conteudo button:hover {
    width: 320px;
    height: 34px;
  }


  .logo-maquininha {
    width: 400px;

  }

  .logo-maquininha img {
    width: 400px;
  }

}

/* Celulares */
@media (max-width: 777px) {
  .section1 {
    flex-direction: column;
    margin-top: 140px;
    padding-bottom: 0px;
  }

  .s1-conteudo {
    width: 90%;
  }

  .s1-conteudo img {
    width: 100%;
  }

  .s1-conteudo h1 {
    font-size: 88px;
  }

  .s1-conteudo h2 {
    font-size: 39px;
    line-height: 43px;
  }

  .s1-conteudo button {
    width: 100%;
    height: auto;
    white-space: nowrap;
  }

  .s1-conteudo button:hover {
    width: 95%;
    height: auto;
    white-space: nowrap;
  }


  .logo-maquininha {
    width: 100%;

  }

  .logo-maquininha img {
    width: 100%;
  }
}