.chamadaHorizontal {
    grid-column: 1/-1;
    grid-row: span 3;
    width: 100%;
}
.chamadaHorizontal > header {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chamadaHorizontal > header:after {
    background-color: #e5e5e5;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -9px;
    position: absolute;
    content: '';
    z-index: -1;
}
.chamadaHorizontal > header:before {
    background-color: #E61F22;
    width: 45px;
    height: 4px;
    left: 0;
    bottom: -10px;
    border-radius: 3px;
    position: absolute;
    content: '';
}
.chamadaHorizontal > header > h2 {
    font-family: 'Outfit-SemiBold', sans-serif;
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: -0.56px;
    color: #111;
}
.chamadaHorizontal > header > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background: transparent linear-gradient(180deg, #2FB140 0%, #23A634 100%) 0% 0% no-repeat padding-box;
    border-radius: 21px;
    font-family: 'Outfit-Bold', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: unset;
}
.chamadaHorizontal > header > a > img {
    width: 14px;
    height: 14px;
}
.chamadaHorizontal > a {
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: unset;
}
.chamadaHorizontal > a > figure {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 395px;
    min-width: 395px;
    height: 224px;
}
.chamadaHorizontal > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chamadaHorizontal > a > figure > .iconPlay {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 16px;
    height: 18px;
}
.chamadaHorizontal > a > figure > .iconPlay > img {
    width: 100%;
    height: 100%;
}
.chamadaHorizontal > a > div {
    width: 100%;
    display: block;
}
.chamadaHorizontal > a > div > span {
    font-family: 'Outfit-Regular', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 6px;
    display: block;
}
.chamadaHorizontal > a > div > h3 {
    font-family: 'Outfit-Medium', sans-serif;
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -0.76px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}
.chamadaHorizontal > a > div > p {
    font-family: 'Outfit-Light', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #111;
}
@media screen and (max-width: 768px) {
    .chamadaHorizontal {
        grid-row: auto;
    }
    .chamadaHorizontal > header {
        margin-bottom: 22px;
    }
    .chamadaHorizontal > header::after {
        display: none;
    }
    .chamadaHorizontal > header::before {
        width: 4px;
        height: 30px;
        top: -1px;
    }
    .chamadaHorizontal > header > h2 {
        margin-left: 13px;
    }
    .chamadaHorizontal > a {
        flex-direction: column;
        gap: 20px;
    }
    .chamadaHorizontal > a > figure {
        width: 100%;
        height: auto;
        aspect-ratio: 320 / 180;
    }
    .chamadaHorizontal > a > div > h3 {
        font-family: 'Outfit-Regular', sans-serif;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.18px;
        margin-bottom: unset;
    }
    .chamadaHorizontal > a > div > p {
        display: none;
    }
}