/* Mobile */
body {
  font-family: "Sora", sans-serif;
  color: black;
  /* overflow: scroll; */
  -webkit-overflow-scrolling: touch;
  height: 100%;
  width: 100%;
  background: #FBFBFB;
}
  
.desafios{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.header{
  margin-top: 50px;
  background-color: white;
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.titulo{
  font-size: 20px;
  color: black;
}

.subtitle{
  font-size: 16px;
  color: black;
}

.subtitle p{
  margin-top: 0;
}

.content{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  
}

.warning{
  margin-top: 40px;
  margin-left: 5%;
  margin-right: 5%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #f3f3f3;
  padding: 100px 0;

}

.aviso{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.portaldedesafios {
  width: 90%;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 50px;
  flex-wrap: nowrap;
  text-align: center;
}

.portaldedesafios h3{
  margin-bottom: 40px;
}

.portaldedesafios .conheca {
  cursor: pointer;
  background: #ffffff;
  border: 1px transparent;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 10px 40px;
}
.conheca :hover {
  background: #38ce84;
  border-radius: 15px;
}
.portaldedesafios .conheca a {
  text-decoration: none;
  color: #000000;
  padding: 10px;
  border: 1px solid #38ce84;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 10px 40px;
}

.sobredesafio{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  margin: 0 20px;
  padding-bottom: 90px;
}

.form{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

iframe{
  width: 380px;
  height: 1064px;
}

  /* Desktop */
  
  @media screen and (min-width: 768px) {

  iframe{
    width:700px;
    height:1064px;
  }


  }