.bm-banner-container {
    position: fixed;
    bottom: -100%; /* Inicia fora da tela */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999999;
    transition: bottom 0.5s ease-in-out;
    padding: 10px;
    box-sizing: border-box;
}

.bm-banner-container.active {
    bottom: 0;
}

.bm-close-btn {
    position: absolute;
    top: -15px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.bm-link-wrapper {
    text-decoration: none;
    display: block;
}

.bm-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bm-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.bm-text {
    flex: 1;
}

.bm-label {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding: 4px 12px;
    border-radius: 20px; /* Estilo pílula conforme imagem */
}

.bm-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsividade para Desktop/Tablet */
@media (min-width: 769px) {
    .bm-banner-container {
        width: 400px;
        left: auto;
        right: 20px;
        bottom: -100%;
        border-radius: 8px 8px 0 0;
    }
    .bm-banner-container.active {
        bottom: 0;
    }
}
