/* Hero component */
.hero-wrapper {
    width: 100%;
}

.hero-container.hero {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.hero-container .hero-bg-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    z-index: 0;
}

.hero-container .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 0;
    line-height: normal;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero-cta-wrap {
    margin-top: 1rem;
}

.hero-cta {
    margin-right: 8px;
}

/* Hero CTA styles (defaults and variants) */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.625rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.025em;
}

.hero-cta:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
}

.hero-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-cta svg.icon {
    width: 20px;
    height: 20px;
    transition: transform .25s ease;
}

.hero-cta:hover svg.icon {
    transform: translateX(3px);
}

.hero-cta.btn_ofertas {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c3a 50%, #ff2d94 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 3px 2px rgba(255, 106, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta.btn_ofertas:hover {
    box-shadow: 0 3px 10px rgba(255, 106, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-cta.btn_ofertas .fold {
    display: none;
}

.hero-cta.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-cta.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@media (max-width: 767.98px) {
    .hero-content {
        position: relative;
        padding: 15px;
        line-height: normal;
    }
    
    .hero-cta-wrap {
        margin-top: 0;
        padding: 0 1rem;
    }
    
    .hero-cta {
        width: 100%;
        display: flex;
        padding: 0.75rem 2rem;
        font-size: 1.125rem;
        font-weight: 700;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }

    .hero-cta.btn_ofertas {
        width: 100%;
        box-shadow: 0 3px 2px rgba(255, 106, 0, 0.45), 0 3px 3px rgba(0, 0, 0, 0.3);
    }
    .hero-cta.btn_ofertas:hover {
        box-shadow: 0 3px 2px rgba(255, 106, 0, 0.55), 0 4px 3px rgba(0, 0, 0, 0.35);
    }

    .hero-cta.btn-outline-light {
        width: 100%;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .hero-cta:active {
        transform: scale(0.97);
    }
    
    .hero-cta + .hero-cta {
        margin-top: 0.75rem;
    }
}

.hero .hero-inner {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.0rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@keyframes heroPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 98, 0, 0.06);
    }

    50% {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22), 0 0 0 10px rgba(255, 98, 0, 0.04);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 98, 0, 0.06);
    }
}

.hero-cta.pulse {
    animation: heroPulse 2.6s cubic-bezier(.25, .46, .45, .94) infinite;
}

.hero-cta {
    z-index: 2;
}

.hero-cta .inner {
    z-index: 2;
    display: inline-block;
}

.hero-cta .points_wrapper {
    display: none;
}

.hero-cta .fold {
    display: none;
}

.hero-cta.hero-custom-btn[style*="background"] {
    background-image: none !important;
}

.hero-cta.hero-custom-btn::after {
    display: none !important;
}