.guild{
	width: 85%;
  margin-top: 0px;
	display: flex;
	flex-direction: row ;
	justify-content: space-evenly;
	align-items: flex-start;
}

.historia{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0;
}

.historia h2{
    font-size: 40px;
    color: white;
}

.historia p{
  text-indent: 30px;
  margin-bottom: 10px;
}

.historia-img{
	width: 300px;
	height: auto;
}

.historia-img img{
    width: 100%;
}

.historia-img-mobile img{
  display: none;
}

.historia-texto{
	width: 60%;
}

.conteiner-liderança {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.titulo-liderança{
    display: flex;
    justify-content: center;
}

.liderança {
  text-align: center;
  margin-top: 0px;
}

.titulo {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.lider, .sublider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-liderança {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 160px;
  margin: 0px;
}

.card-medal img {
  width: 45px;
  height: 45px;
}

.lider .card-medal img{
    border: solid 3px gold;
}

.sublider .card-medal img{
    border: solid 3px silver;
}

.card-nick .nick {
  font-weight: bold;
}

.card-nick .nome {
  font-style: italic;
}

@media screen and (max-width: 599px) {
  .historia-texto{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .historia-texto p{
    font-size: 12pt;
  }

  .historia .historia-img-mobile{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 0px;
  }

  .historia-img img{
      display: none;
  }

  .historia-img-mobile img{
    display: block;
    width: 50px;
    height: auto;
  }

  .conteiner-liderança{
    max-width: 599px;
  }

  .card-liderança{
    width: 100px;
  }

  .card-medal img{
    width: 30px;
    height: 30px;
  }
  .lider .card-medal img{
    border: solid 2px gold;
}

  .sublider .card-medal img{
      border: solid 2px silver;
  }

  .card-nick .nick,.nome{
    font-size: 10pt;
  }

}

@media screen and (max-width: 1199px) {
  .guild{
    width: 100%;
  }
}