.banner-tr {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.banner-tr-section {
    background: url('../images/fondo-banner-test.svg') no-repeat center center;
    background-size: cover;
    width: 1128px;
    height: 504px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-tr-text {
    max-width: 1020px;
    height: 64px;
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    margin-top: 75px;
    display: flex;
    align-items: flex-end;
}

.banner-tr-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 1020px;
    height: 56px;
}

.btn-tr {
    width: 270px;
    height: 56px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary.btn-test {
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 4px
}

.btn-primary.btn-test:hover {
    color: rgba(255, 255, 255, 1);
    background:
        linear-gradient(to right, rgba(75, 196, 240, 1), rgba(120, 139, 214, 1)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    background-blend-mode: lighten;
}

.btn-register {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: rgba(5, 158, 219, 0.4);
    border: 1px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1439px) and (min-width: 1240px) {
    .banner-tr-section {
        width: 840px;
        height: 504px;
    }

    .banner-tr-text {
        max-width: 732px;
        height: 96px;
    }
}

@media (max-width: 1239px) and (min-width: 905px) {
    .banner-tr-section {
        width: 711px;
        height: 508px;
    }

    .banner-tr-text {
        max-width: 603px;
        height: 84px;
        font-size: 20px;
    }

    .banner-tr-buttons {
        width: 603px;
        height: 56px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .banner-tr-section {
        width: auto;
        height: 500px;
        border-radius: 0px;
        padding: 0px 16px;
    }

    .banner-tr-text {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 83px;
    }

    .banner-tr-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 270px;
        height: 56px;
    }

    .btn-register {
        padding: 17px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .banner-tr-section {
        width: auto;
        height: 612px;
        border-radius: 0px;
        padding: 0px 15px;
    }

    .banner-tr-text {
        font-size: 16px;
        margin-bottom: 55px;
        margin-top: 115px;
    }

    .banner-tr-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 312px;
        height: 128px;
    }

    .btn-register {
        padding: 17px;
    }
}


.desde-recurso .btn-register {
    margin-top: 0px;
}

@media (max-width: 904px) and (min-width: 600px) {
    .desde-recurso .btn-register {
        padding: 17px;
        margin-top: 7px;
    }

    .desde-recurso .btn-primary.btn-test {
        padding: 17px;
    }

}

@media (max-width: 599px) and (min-width: 0px) {
    .desde-recurso .btn-register {
        padding: 17px;
        margin-top: 7px;
    }

    .desde-recurso .banner-tr-section {
        gap: 40px;
    }
}