
    /* Contenedor principal de ancho completo en estado inicial (oculto y desplazado hacia abajo) */
    .ez-full-banner.hidden-section { 
        position: relative; 
        width: 100vw; 
        max-width: 100%;
        min-height: 550px;
        height: auto;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2609/07/photo/PANTALLAEZYVISELECT-c10c.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        
        /* Propiedades de animación de aparición al hacer scroll */
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    }

    /* Estado cuando entra en pantalla y se activa al hacer scroll */
    .ez-full-banner.hidden-section.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Posicionamiento del botón flotante en la parte inferior central */
    .ez-button-layer {
        position: absolute;
        bottom: 35px; 
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    /* ESTILO DEL BOTÓN CON LOS COLORES DE LA MARCA */
    .btn-comprar-ez {
        background: linear-gradient(135deg, #005cbf, #d4af37, #28a745, #dc3545);
        background-size: 300% 300%;
        color: #fff;
        padding: 16px 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.2rem;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
        transition: all 0.4s ease;
        animation: gradientAnimation 6s ease infinite;
        white-space: nowrap;
    }

    @keyframes gradientAnimation {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .btn-comprar-ez:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.8);
        cursor: pointer;
    }

    /* Adaptación automática para dispositivos móviles y pantallas medianas */
    @media (max-width: 1024px) {
        .ez-full-banner.hidden-section {
            min-height: 400px;
        }
    }

    @media (max-width: 768px) {
        .ez-full-banner.hidden-section {
            min-height: 280px;
        }
        .ez-button-layer {
            bottom: 20px; 
        }
        .btn-comprar-ez { 
            padding: 10px 30px; 
            font-size: 0.95rem; 
        }
    }
