.premiacoes{
    padding: 2.26rem 0 3.2rem;
}

.premiacoes .row{
	grid-gap: 2rem 0;
}

.premiacoes .row.r1{
    margin-bottom: 3.26rem;
}

.premiacoes .row.r1>*{
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.premiacoes .sectitle{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 25px;
    width: 100%;
    font-family: var(--dark);
    font-size: 90px;
    font-weight: 400;
    line-height: 80px;
    /* line-height: 100px; */
    background: var(--title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premiacoes .sectitle::after{
    content: '';
    display: block;
    display: -webkit-block;
    width: 100%;
    height: 1px;
    background-color: var(--line);
}

.premiacoes .text{
    width: clamp(10px,100%,560px);
}

.premiacoes .prems{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    grid-gap: 24px;
    width: 100%;
}

.premiacoes .container .row:not(.r1):not(:last-child){
	margin-bottom: 2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
}

.premiacoes .container .row:not(.r1)>*{
	display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
	justify-content: center;
    -webkit-justify-content: center;
}

.premiacoes .row:not(.r1) .img{
    position: relative;
    width: clamp(10px,100%,680px);
    aspect-ratio: 1/.56073;
	max-height: 453px;
    margin-bottom: 2.8rem;
}

.premiacoes .row:not(.r1) .img::before,
.premiacoes .row:not(.r1) .img::after{
	content: '';
    position: absolute;
    z-index: -1;
    width: 50.56497%;
    aspect-ratio: 1/.55307;
    background-color: var(--main);
    border-radius: 0 16px;
}

.premiacoes .row:not(.r1) .img::before{
	inset: auto auto -2.51% -1.41%;
}

.premiacoes .row:not(.r1) .img::after{
	inset: -2.51% -1.41% auto auto;
}

.premiacoes .row:not(.r1) .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 16px;
}

.premiacoes .row:not(.r1) .year{
    color: var(--black);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 8px;
}

.premiacoes .row:not(.r1) .title{
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 8px;
}

.premiacoes .row:not(.r1) .sm{
    display: flex;
    -webkit-display: flex;
    align-items: center;
    grid-gap: 8px;
    width: fit-content;
    color: var(--main);
    font-size: 14px;
    line-height: 17px;
}

.premiacoes .row:not(.r1) .sm::after{
    content: url(../../assets/img/smarrow.svg);
}

@media(max-width:992px){
    .premiacoes{
        padding: 2rem 0;
    }
    .premiacoes .row{
        grid-gap: 2rem 0;
    }
    .premiacoes .sectitle{
        width: fit-content;
    }
    .premiacoes .sectitle::after{
        display: none;
        -webkit-display: none;
    }
    .premiacoes .text{
        width: 100%;
    }
}

@media(max-width:768px){
    .premiacoes .prems>*{
        flex-direction: column;
        -ms-flex-direction: column;
        align-items: flex-start;
    }
    .premiacoes .prems>* .img{
        min-width: unset;
        width: clamp(10px,100%,334px);
        max-width: unset;
    }
}

@media(max-width:475px){
    .premiacoes .prems>*{
        align-items: center;
    }
    .premiacoes .prems>* .year,
    .premiacoes .prems>* .title{
        text-align: center;
    }
    .premiacoes .prems>* .sm{
        margin: 0 auto;
    }
}