/* ===================================================
   HERO SLIDER — Etiqueta "Oferta Descuento"
   Sello tipo sticker (borde ondulado) sobre cada slide
   =================================================== */

.home4-slide-image {
    position: relative;
}

.home4-slide-image picture,
.home4-slide-image img {
    position: relative;
    z-index: 1;
}

.hs-offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 35% 30%, #ff5252 0%, #e0263c 55%, #c4102a 100%);
    clip-path: polygon(50.00% 0.00%, 58.58% 6.85%, 69.13% 3.81%, 74.45% 13.42%, 85.36% 14.64%, 86.58% 25.55%, 96.19% 30.87%, 93.15% 41.42%, 100.00% 50.00%, 93.15% 58.58%, 96.19% 69.13%, 86.58% 74.45%, 85.36% 85.36%, 74.45% 86.58%, 69.13% 96.19%, 58.58% 93.15%, 50.00% 100.00%, 41.42% 93.15%, 30.87% 96.19%, 25.55% 86.58%, 14.64% 85.36%, 13.42% 74.45%, 3.81% 69.13%, 6.85% 58.58%, 0.00% 50.00%, 6.85% 41.42%, 3.81% 30.87%, 13.42% 25.55%, 14.64% 14.64%, 25.55% 13.42%, 30.87% 3.81%, 41.42% 6.85%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
    pointer-events: none;
    transform-origin: center;
    animation: hs-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes hs-badge-pulse {
    0%, 100% {
        transform: rotate(15deg) scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, .35), 0 0 0 0 rgba(224, 38, 60, .5);
    }
    50% {
        transform: rotate(15deg) scale(1.08);
        box-shadow: 0 6px 18px rgba(0, 0, 0, .4), 0 0 0 9px rgba(224, 38, 60, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hs-offer-badge {
        animation: none;
        transform: rotate(15deg);
    }
}

.hs-offer-badge .hs-offer-inner {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hs-offer-badge span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.15;
}

.hs-offer-line1 {
    font-size: 11px;
    letter-spacing: .02em;
}

.hs-offer-line2 {
    font-size: 9.5px;
    letter-spacing: .01em;
}

@media (max-width: 767px) {
    .hs-offer-badge {
        width: 68px;
        height: 68px;
        top: 6px;
        right: 6px;
    }

    .hs-offer-line1 {
        font-size: 8.5px;
    }

    .hs-offer-line2 {
        font-size: 7.2px;
    }
}
