.highlight-empreedimentos {
  .filter-button-group{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    p{
      color: #282828;
      font-size: 15px;
      font-weight: 400;
      line-height: 24px;
      display: block;
      text-align: center;
      margin-bottom:20px;
      width: 100%;
    }
    .button{
      background: #b9b9b9;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      transition: .3s;
      margin-right: 1px;
      border: 0;
      padding: 15px 20px;
      width: 100%;
      max-width: 287px;
      &:last-child{
        margin-right: 0;
      }
      &:hover{
        background: $color-main;
        outline: none;
      }
      &:focus{
        background: $color-main;
        outline: none;
      }
      &.active{
        background: $color-main;
      }
    }
  }
  .he-list {
    margin-left: -1px;
    margin-right: -1px;
    .he-col{
      margin:1px;
      flex-basis: calc(33.333% - 2px);
    }
  }
  .he-item {
    position: relative;
    overflow: hidden;
    &.mcmv{
      margin:0;
      min-height: auto!important;
    }
    .he-img {
      display: block;
      min-height: 21.2vw;
      img {
        display: block;
        width: 100%;
        transition: all ease .3s;
      }
    }
    .he-info {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 40px 15px 20px;
      background: #f0efef;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      .he-status {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);
        padding: 10px 15px;
        color: #ffffff;
        font-size: 18px;
        /* Aproximação devido à substituição de fonte */
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        background: $color-sec;
      }
      .he-title {
        margin-bottom: 40px;
        color: $color-main;;
        font-size: 25px;
        text-align: center;
        text-transform: uppercase;
      }
      .he-cidade {
        margin-bottom: 20px;
        color: #020304;
        font-size: 18px;
        /* Aproximação devido à substituição de fonte */
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
      }
      .he-itens {
        display: flex;
        justify-content: center;
        li {
          display: flex;
          align-items: center;
          margin: 0 20px;
          i {
            margin-right: 10px;
          }
          p {
            color: #020304;
            font-size: 15px;
          }
        }
      }
      .emp-valor{
        color: #020304;
        margin: 30px 0 10px;
      }
    }
    &.mcmv{
      background: none;
      .he-img{
        position: relative;
        &:before{
          position: absolute;
          top: 20px;
          left: 20px;
          content: '';
          display: block;
          width: 100px;
          height: 100px;
          background: url(../img/selo-mcmv.png) no-repeat;
          z-index: 999;
          background-size: 100%;
        }
      }
    }
    &:hover {
      .he-img {
        img {
          transform: scale(1.2);
        }
      }
    }
  }
  @media (max-width:1024px){
    .filter-button-group{
      .button{
        max-width: 200px;
      }
    }
  }
  @media(max-width: $width-mobile) {
    .filter-button-group{
      max-width:320px;
      margin:0 auto 40px;
      .button{
        max-width: 100%;
        margin-right: 0;
        margin-bottom:1px;
      }
    }
    .title-large {
      padding: 0 15px;
      font-size: 28px;
      line-height: .8;
      margin-bottom: 20px;
    }
    .he-list {
      .col-4 {
        max-width: 100%;
        flex-basis: 100%;
      }
    }
    .he-item {
      .he-info {
        .he-title {
          font-size: 28px;
        }
      }
    }
  }
}
