/* --- ESTILOS GENERALES (PC / Desktop) --- */
#mundoon-promo-bar {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 80px;
    background-color: #0F172A;
    color: #FFFFFF;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-out;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: system-ui, -apple-system, sans-serif;
    padding: 10px 0;
}

#mundoon-promo-bar.mundoon-visible {
    bottom: 0;
}

.mundoon-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* GRUPO HORIZONTAL (Imagen + Texto) */
.mundoon-info-group {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 15px;
}

.mundoon-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
    margin-right: 12px;
    display: block;
    object-fit: contain;
}

.mundoon-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mundoon-btn {
    background-color: #16A34A;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.mundoon-btn:hover {
    background-color: #15803d;
}

.mundoon-close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #9CA3AF;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    z-index: 10;
}

.mundoon-close:hover {
    color: #FFF;
}


/* --- VERSIÓN MÓVIL "SLIM" (Neuroventas) --- */
@media (max-width: 768px) {
    #mundoon-promo-bar {
        padding: 8px 10px;
        /* Menos relleno = Más delgado */
        bottom: -200px;
        height: auto;
        min-height: 60px;
        /* Altura mínima elegante */
    }

    #mundoon-promo-bar.mundoon-visible {
        bottom: 0 !important;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .mundoon-container {
        /* TRUCO: Volvemos a poner todo horizontal */
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 5px;
        gap: 10px;
        /* Espacio entre elementos */
    }

    .mundoon-info-group {
        /* El texto y la imagen ocupan el espacio sobrante */
        flex: 1;
        display: flex;
        align-items: center;
        margin-right: 5px;
        margin-bottom: 0;
        /* Quitamos margen abajo */
        padding-right: 0;
        min-width: 0;
        /* Para que el texto no rompa el diseño */
    }

    .mundoon-img {
        height: 35px;
        /* Imagen más pequeña (icono) */
        width: 35px;
        margin-right: 8px;
        flex-shrink: 0;
        object-fit: contain;
    }

    .mundoon-text {
        font-size: 13px;
        /* Texto un poco más pequeño */
        line-height: 1.2;
        white-space: normal;
        /* Permitir 2 líneas */
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Máximo 2 líneas */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mundoon-btn {
        /* Botón COMPACTO a la derecha */
        width: auto;
        /* Ancho automático, no 100% */
        padding: 6px 12px;
        font-size: 13px;
        height: auto;
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .mundoon-close {
        /* La X se mueve un poco para no estorbar */
        position: absolute;
        top: -10px;
        /* Flotando un poco afuera arriba */
        right: 0;
        background: #334155;
        width: 20px;
        height: 20px;
        font-size: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #475569;
    }
}

/* <--- ESTA LLAVE FINAL ES VITAL */