*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header{
  font-family: "Open Sans", sans-serif;
  width: 100%;
  height: auto;
  padding: 3% 0;
  background-color: #33c4b6;
  color: #e8e8e8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box-wrapper{
  width: 100%;
  max-width: 80%;
  margin:  0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.box-wrapper img{
  width: 200px;
  height: auto;
  margin-bottom: 5px;
}
.box-wrapper h1{
  font-size: 40px;
  text-align: center;
}

.box-btn{
  width: 100%;
  max-width: 80%;
  margin: 5px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center ;
}

.box-btn button{
  height: auto;
  padding: 10px;
  border: none;
  margin-right: 10px;
  border-radius: 5px;
  background-color: #b4e2de;
  margin-top: 10px;
  margin-bottom: 10px;
}

.box-btn button:hover{
  background-color: #f9ffff;
}

.box-btn button:nth-last-child(1){
  margin-right: 0;
}

a{
  text-decoration: none;
  color: #1d7e74;
  font-weight: 500;
  font-size: 15px;
}

.wrapper {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #9f9f9f;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5% 1%;
    justify-content: center;
    align-items: center;
    width: 100%;
    
    margin: 0 auto;
  }
  
  .package {
    box-sizing: border-box;
    width: 301px;
    height: 900px;
    border: 3px solid #e8e8e8;
    border-radius: 7px;
    display: inline-block;
    padding: 24px;
    text-align: center;
    margin-bottom: 5%;
    transition: margin-top 0.5s linear;
    position: relative;
    margin-right: 11px;
  }
  .package:hover {
    margin-top: -30px;
    transition: margin-top 0.3s linear;
  }
  
  .name {
    color: #565656;
    font-weight: 300;
    font-size: 3rem;
    margin-top: -5px;
  }
  
  .price {
    margin-top: 7px;
    font-weight: bold;
  }
  .price::after {
    content: " / Mês";
    font-weight: normal;
  }
  
  hr {
    background-color: #dedede;
    border: none;
    height: 1px;
  }
  
  .trial {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 2px 21px 2px 21px;
    color: #33c4b6;
    border: 1px solid #e4e4e4;
    display: inline-block;
    border-radius: 15px;
    background-color: white;
    position: relative;
    bottom: -20px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 29px;
  }
  
  li {
    margin-bottom: 15px;
  }
  li:before {
    font-size: 1.3rem;
    color: #33c4b6;
    margin-right: 3px;
  }
  
  .checkIcon, .brilliant::after, li:before {
    font-family: "FontAwesome";
    content: "";
  }
  
  .brilliant {
    border-color: #33c4b6;
  }
  .brilliant::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 64px 64px 0 0;
    border-color: #3bc6b8 transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
  }
  .brilliant::after {
    color: white;
    position: absolute;
    left: 9px;
    top: 6px;
    text-shadow: 0 0 2px #37c5b6;
    font-size: 1.4rem;
  }

  @media screen and (max-width: 580px){
    .package{
      margin-bottom: 13%;
    }
    .box-wrapper h1{
      font-size: 30px;
    }
    header{
      margin-bottom: 5%;
    }
  }
