.recompensas {
    padding: 0px 5%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
}

.title > h1 {
    font-size: 23px;
    font-weight: bold;
    line-height: 23px;
}

.title > svg {
    width: 30px;
    fill: var(--main-color)
}


.rewards {
    
    border-radius: 20px;
    background-color: rgba(218,209,177,.05);
    display: flex;
    width: 100%;
    overflow: hidden;
   
    position: relative;
    box-shadow: 0 5px 20px 0 rgb(6 10 14 / 25%);
    padding: 30px 30px;

    border-radius:20px;
}
.rewards .rewards-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    justify-content: space-between;
    width: 100%;
}

.rewards-top > figure{
    text-align: center;
}

.rewards-top > figure > img {
    width: 80%;
}

.rewards-informations {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.rewards-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 19px;
    line-height: 40px;
    width: 75%;
}

.rewards .rewards-top button {
    padding: 25px 40px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 35px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    font: optional;
    transition: 200ms;
}

.rewards .rewards-top button:hover {
    transform: scale(1.03);
}

@media screen and (min-width:320px) and (max-width:480px) {
    .rewards .rewards-top {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    
        justify-content: space-between;
        width: 100%;
    }
    .rewards-text {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 15px;
        text-align: center;
        line-height: 40px;
        width: 100%;
    }
}