.objetives {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.objetives .buttons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 137px;
}

.objetives .button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;

    width: 303px;
    height: 154px;
    margin-bottom: 32px;

    background: #F6FAFB;
    border: none;
    border-radius: 6px;
    transition: .2s;
}

.objetives .button span {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    text-align: left;
    background: linear-gradient(270deg, #570DDD -24.6%, #4968ED 38.4%, #4199F5 100.14%, #37D6FF 160.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: .2s;
}


.objetives .button:hover {
    background: linear-gradient(270deg, #37D6FF -43.23%, #4199F5 13.11%, #4968ED 90.64%, #570DDD 163.49%);
    transition: .2s;
}

.objetives .button:hover span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    transition: .2s;
}



@media screen and (max-width: 640px) {
    .objetives .buttons-container {
        padding: 0;
    }

    .objetives .button {
        width: 100%;
        height: 112px !important;
        margin-bottom: 16px;

        font-size: 12px;
    }

    .objetives .button span {
        width: 100%;
    }

    .objetives br {
        display: none;
    }

    .objetives .button:hover {
        background: #F6FAFB;
    }

    .objetives .button:hover span {
        background: linear-gradient(270deg, #570DDD -24.6%, #4968ED 38.4%, #4199F5 100.14%, #37D6FF 160.88%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}


@media screen and (prefers-color-scheme: dark) {
    .objetives .button span {
        background: linear-gradient(270deg, #4199F5 100.14%, #37D6FF 160.88%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: .2s;
    }

    .objetives .button:hover {
        background: #F6FAFB;
    }

    .objetives .button:hover span {
        background: linear-gradient(270deg, #4199F5 100.14%, #37D6FF 160.88%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}