    .video-hero-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .video-hero-container .video-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9; /* 👈 define la proporción del video */
}

    .video-hero-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-overlay-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        z-index: 10;
        pointer-events: none;
    }

    .video-overlay-content .badge-flash-sale {
        background-color: #ffc40d;
        color: white;
        padding: 5px 12px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 0.85em;
        margin-bottom: 10px;
        pointer-events: none;
    }

    .video-overlay-content .title-alpamayo {
        font-size: 2.5em;
        font-weight: 900;
        color: white;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.1;
        pointer-events: none;
    }

    .video-overlay-content .footer-text {
        font-size: 1.1em;
        font-weight: 500;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        pointer-events: none;
    }

    .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
        z-index: 5;
    }