    .banner-section-wrapper {
        position: relative;
        width: 100%;
        overflow-x: hidden; /* Evitar scroll horizontal */
    }

    .seo-drawer-container {
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 100;
        display: flex;
        align-items: flex-start;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        /* Por defecto oculto a la izquierda, desplazado el ancho del contenido (-100% no funciona bien con flex containers variables, mejor usar fixed width o JS calculation. Usaremos max-width para simplificar) */
        transform: translateX(-400px); /* Ancho del contenido */
    }

    .seo-drawer-container.expanded {
        transform: translateX(0);
    }

    .seo-drawer-content {
        width: 400px;
        background: rgba(255, 255, 255, 0.98);
        padding: 25px 30px;
        border-right: 1px solid #e0e0e0;
        box-shadow: 5px 0 15px rgba(0,0,0,0.05);
        border-radius: 0 0 20px 0;
        backdrop-filter: blur(5px);
    }

    .seo-drawer-toggle {
        width: 40px;
        height: auto;
        min-height: 100px;
        background: #002147; /* Azul Rebagliati */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 0 10px 10px 0;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        transition: background 0.3s;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 15px 0;
        text-transform: uppercase;
    }

    .seo-drawer-toggle:hover {
        background: #003366;
    }

    .seo-drawer-content .title {
        color: #002147;
        font-weight: 800;
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .seo-drawer-content .description {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Ajustes Mobile */
    @media (max-width: 576px) {
        .seo-drawer-container {
            transform: translateX(-280px); /* Ancho menor en móvil */
        }
        .seo-drawer-content {
            width: 280px;
            padding: 20px;
        }
    }
