.chamadaDestaqueEspecial {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end;
    height: 588px;
    z-index: 1;
    margin-bottom: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}
.chamadaDestaqueEspecial::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent linear-gradient(180deg,#16161600 0%,#161616a3 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    z-index: 1;
}

.chamadaDestaqueEspecial>figure {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.chamadaDestaqueEspecial>figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.chamadaDestaqueEspecial>div {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
    padding: 40px;
}

.chamadaDestaqueEspecial>div>h3 {
    font-family: "NunitoSans-ExtraBold";
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.chamadaDestaqueEspecial>div>h2 {
    font-family: "NunitoSans-ExtraBold";
    font-size: 50px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.chamadaDestaqueEspecial>div>p {
    font-family: "NunitoSans-SemiBold";
    font-size: 18px;
    line-height: 22px;
    color: #E5E5E5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width:992px) {
    .chamadaDestaqueEspecial {
        height: 423px;
        width: calc(100% - 40px);
    }
    .chamadaDestaqueEspecial>div>h3 {
        text-align: center;
    }
    .chamadaDestaqueEspecial>div>h2 {
        text-align: center;
        font-size: 28px;
        line-height: 30px;
    }
    .chamadaDestaqueEspecial>div>p {
        font-size: 14px;
        line-height: 18px;
    }
    .chamadaDestaqueEspecial>div {
        padding: 24px 20px;
    }
}