
    /* Efecto inicial: invisible y un poco abajo */
    .scroll-effect {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    /* Clase que se activa cuando el elemento está visible */
    .scroll-active {
        opacity: 1;
        transform: translateY(0);
    }

    .vandal-main-container, .vandal-main-container * { box-sizing: border-box; }

    /* Contenedor principal */
    .vandal-main-container {
        width: 100%;
        min-height: 500px;
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2606/01/photo/fondo-f416.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center; 
        justify-content: center; 
        gap: 20px; 
        padding: 0 20px; /* Sin padding arriba y abajo para permitir que toque el borde */
        overflow: hidden;
        position: relative;
    }

    /* Capa oscura translúcida */
    .vandal-main-container::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.4);
        pointer-events: none;
    }

    .vandal-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0; 
        z-index: 1;
    }

    /* Columna izquierda posicionada con alineación absoluta abajo */
    .vandal-col-left {
        justify-content: flex-end !important;
        align-self: stretch;
    }

    /* Imagen tocando exactamente el margen inferior */
    .vandal-col-left img { 
        width: 100%; 
        max-width: 320px; 
        height: auto; 
        object-fit: contain; 
        display: block; 
        margin-bottom: 0 !important; /* Fuerza a tocar el borde de abajo */
    }

    .vandal-logo { width: 100%; max-width: 380px; height: auto; margin-bottom: 15px; object-fit: contain; display: block; } 
    .vandal-box { width: 100%; max-width: 280px; height: auto; transition: transform 0.3s ease; object-fit: contain; display: block; }
    .vandal-box:hover { transform: scale(1.05); }

    .vandal-btn {
        background-color: #d4ff00; 
        color: #000000; 
        padding: 10px 30px;
        font-size: 0.95rem;
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        white-space: nowrap; 
    }
    .vandal-btn:hover { 
        background-color: #ffffff; 
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(212,255,0,0.4);
    }

    /* Adaptación a celular */
    @media (max-width: 768px) {
        .vandal-main-container { min-height: auto; height: auto; flex-direction: column; padding: 20px 10px; gap: 15px; }
        .vandal-col-left { display: none !important; }
        
        .vandal-logo { max-width: 240px !important; margin-bottom: 10px; } 
        .vandal-box { max-width: 350px !important; }
        .vandal-btn { padding: 8px 25px; font-size: 0.9rem; }
    }
