
    /* Estado inicial: invisible */
    .hidden { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
    
    /* Clases de activación */
    .logo-trigger.animate { opacity: 1; transform: translateY(0); }
    
    .product-trigger.animate { 
        opacity: 1; transform: translateY(0); 
        animation: float 3s ease-in-out infinite; 
    }
    
    .button-trigger.animate { opacity: 1; transform: translateY(0); }

    /* Animación de flotación */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* ESTILO BOTÓN CON HOVER */
    .btn-comprar {
        background-color: #a4de02; color: #000; padding: 18px 50px;
        text-decoration: none; font-weight: bold; font-size: 1.3rem;
        border-radius: 8px; text-transform: uppercase; margin-top: 20px;
        display: inline-block;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .btn-comprar:hover {
        transform: scale(1.05);
        background-color: #b8f215;
        cursor: pointer;
    }

    /* Estilos base ajustados a min-height: 500px pero conservando las medidas de tus imágenes */
    .marte-wrapper { position: relative; width: 100%; overflow: hidden; min-height: 500px; display: flex; align-items: center; justify-content: center; }
    #marte-fondo-global { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2606/06/photo/fondo-653d.webp'); background-size: cover; background-position: center; z-index: 0; }
    
    #marte-contenedor-contenido { 
        position: relative; 
        z-index: 1; 
        max-width: 1400px; 
        margin: 0 auto; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        min-height: 500px; 
        padding: 40px 20px; 
        box-sizing: border-box;
    }

    #marte-contenedor-contenido .two-column-layer { 
        display: flex; 
        justify-content: space-around; 
        align-items: center; 
        width: 100%; 
    }

    /* Medidas originales de tus imágenes */
    .logo-box img { max-width: 550px; width: 100%; height: auto; display: block; }
    .product-box img { max-width: 450px; width: 100%; height: auto; display: block; }

    /* Adaptación móvil */
    @media (max-width: 768px) {
        .marte-wrapper { min-height: auto; }
        #marte-contenedor-contenido { min-height: auto; padding: 30px 15px; }
        #marte-contenedor-contenido .two-column-layer { flex-direction: column; gap: 10px; }
        .logo-box { order: 1; margin-bottom: 20px; }
        .product-box { order: 2; margin-bottom: 40px; }
        .button-layer { order: 3; }
        .logo-box img { max-width: 280px; }
        .product-box img { max-width: 220px; }
        .product-trigger.animate { animation: none; }
        .btn-comprar { padding: 12px 35px; font-size: 1.1rem; margin-top: 10px; }
    }
