*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #26163b;
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h1{
    text-align: center;
    margin-top: 30px;
    font-size: 40px;
}
.itens{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .item{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #370a72;
    border: #ffffff solid 1px;
    padding: 40px;
  }
  .item a{
    color: white;
    margin-top: 20px;
    background-color: #955fdb;
    border: solid white 1px;
    border-radius: 3px;
    text-decoration: none;
    padding-left: 33%;
    padding-right: 33%;
  
  }
  .item a:hover{
    background-color: #9116b6;
  }
  .item img{
    width: 500px;
    max-width: 100%;
    height: auto;
  }
  .sla2{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .destaques{
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
  }
  .botao{
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #9116b6;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .botao:hover{
    background-color: #955fdb;
    transition: 0.5s;
  }
  .botao a{
    color: white;
    text-decoration: none;
  }