.wolf-promo-banner {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 30px;
}

.wolf-promo-banner,
.wolf-promo-banner * {
    box-sizing: border-box;
}

.wolf-promo-banner__link {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    min-height: 205px;
    color: #fff;
    text-decoration: none !important;
    border-radius: 18px;
    transform: translateY(0);
    isolation: isolate;
    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.wolf-promo-banner__picture {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.wolf-promo-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    transition:
        transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.wolf-promo-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 205px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 28px 25%;
    text-align: center;
    pointer-events: none;
}

.wolf-promo-banner__title {
    margin: 0 0 8px;
    color: #fff !important;
    font-family: inherit;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
}

.wolf-promo-banner__description {
    margin: 0;
    color: #f6ce20;
    font-size: clamp(15px, 1.7vw, 20px);
    font-weight: 500;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.wolf-promo-banner__button {
    display: inline-flex;
    min-width: 145px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 8px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    background: rgba(0, 0, 0, .62);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 999px;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

/*
|--------------------------------------------------------------------------
| Hover
|--------------------------------------------------------------------------
*/

.wolf-promo-banner__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.wolf-promo-banner__link:hover .wolf-promo-banner__image {
    transform: scale(1.045);
}

.wolf-promo-banner__link:hover .wolf-promo-banner__button {
    color: #fff;
    background: #e93b45;
    border-color: #e93b45;
    transform: translateY(-1px);
}

.wolf-promo-banner__link:focus-visible {
    outline: 3px solid #e93b45;
    outline-offset: 4px;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {
    .wolf-promo-banner__link,
    .wolf-promo-banner__content {
        min-height: 190px;
    }

    .wolf-promo-banner__content {
        padding-right: 20%;
        padding-left: 20%;
    }
}

/*
|--------------------------------------------------------------------------
| Celular
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .wolf-promo-banner__link,
    .wolf-promo-banner__content {
        min-height: 310px;
    }

    .wolf-promo-banner__link {
        border-radius: 15px;
    }

    .wolf-promo-banner__image {
        object-position: center;
    }

    .wolf-promo-banner__content {
        justify-content: flex-start;
        padding: 28px 20px 22px;
    }

    .wolf-promo-banner__title {
        margin-bottom: 6px;
        font-size: 19px;
    }

    .wolf-promo-banner__description {
        max-width: 310px;
        font-size: 15px;
    }

    .wolf-promo-banner__button {
        min-width: 135px;
        min-height: 35px;
        margin-top: 15px;
        font-size: 11px;
    }
}

/*
|--------------------------------------------------------------------------
| Redução de movimento
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {
    .wolf-promo-banner__link,
    .wolf-promo-banner__image,
    .wolf-promo-banner__button {
        transition: none;
    }

    .wolf-promo-banner__link:hover,
    .wolf-promo-banner__link:hover .wolf-promo-banner__image,
    .wolf-promo-banner__link:hover .wolf-promo-banner__button {
        transform: none;
    }
}